

/* General body styles */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #2F2B28; /* dark brown text */
  background: #FFFFFF; /* light background for content */
}

/* Hero section */
.hero {
  background: #2F2B28; /* dark background */
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

/* Logo styling */
.logo {
  max-width: 260px;
  background: #FFFFFF; /* keeps logo readable */
  padding: 15px 20px;
  border-radius: 6px;
  margin-bottom: 25px;
}

/* Headline */
.hero h1 {
  color: #FF4136; /* matches logo red */
  margin: 10px 0 5px;
}

/* Hero paragraph */
.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* Button styling */
.hero .btn {
  display: inline-block;
  background: #C59D5F; /* gold accent */
  color: #FFFFFF;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s;
}

.hero .btn:hover {
  background: #b28a51; /* slightly darker on hover */
}

/* Sections */
section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

/* Section headings */
h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #FF4136; /* logo red */
}

/* Services grid */
.service-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 250px;
  background: #F9F9F9;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Why choose us section */
.why-us ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: auto;
}

.why-us li {
  padding: 10px 0;
  font-size: 18px;
}

/* Gallery section */
.gallery {
  text-align: center;
  background: #FFFFFF;
}

/* Contact section */
.contact {
  text-align: center;
  background: #F9F9F9;
  padding: 60px 20px;
}

/* Footer */
footer {
  background: #2F2B28;
  color: #FFFFFF;
  text-align: center;
  padding: 20px;
}
/* NAVBAR */
.navbar {
  background: #2F2B28;
  padding: 15px 20px;
}

.nav-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  color: #FF4136;
  font-weight: bold;
  font-size: 18px;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* DROPDOWN */
.dropdown-menu {
  display: none;
  position: absolute;
  background: white;
  top: 30px;
  left: 0;
  min-width: 200px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  padding: 10px 0;
  z-index: 1000;
}

.dropdown-menu li {
  padding: 8px 15px;
}

.dropdown-menu a {
  color: #2F2B28;
  font-weight: normal;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a:hover {
  color: #FF4136;
}
/* SERVICE PAGES */
.service-page {
  max-width: 1000px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

.service-page h1 {
  color: #FF4136;
  margin-bottom: 15px;
}

.service-page p {
  font-size: 18px;
  margin-bottom: 40px;
}

.service-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.service-gallery img {
  width: 100%;
  border-radius: 6px;
}
/* HERO HEADER */
.hero {
  background-image: url("images/header-floor.jpg");
  background-size: cover;
  background-position: center;
  height: 80vh;
  position: relative;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.45);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 20px;
}

.logo {
  max-width: 220px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.call-btn {
  background: #ff4a3d;
  color: white;
  padding: 14px 26px;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.call-btn:hover {
  background: #e63e32;
}
.call-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 14px 28px;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}

.call-btn:hover {
  background: #ffffff;
  color: #2f241b;
}
.insta-emoji {
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
}
.insta-link {
  position: absolute;
  top: 20px;
  right: 25px;
}

.insta-link img {
  width: 28px;
  filter: invert(1);
}

.insta-link:hover img {
  opacity: 0.8;
}
.insta-emoji {
  position: absolute;
  top: 20px;
  right: 25px;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
}

.insta-emoji:hover {
  opacity: 0.8;
}
.contact a {
  color: #2f241b;
  font-weight: bold;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}
