/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  background: #f7f6f3;
  color: #2d2d2d;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #2d2d2d;
  color: #fff;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo {
  font-size: 1.7rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-shadow: 1px 1px 0 #bfa76f;
}
.navbar nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.navbar nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.navbar nav ul li a:hover {
  color: #bfa76f;
}
.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(120deg, #bfa76f 0%, #f7f6f3 100%);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-content {
  z-index: 2;
  text-align: center;
  color: #2d2d2d;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}
.cta-btn {
  background: #2d2d2d;
  color: #fff;
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(47, 38, 18, 0.08);
  transition: background 0.2s, color 0.2s;
}
.cta-btn:hover {
  background: #bfa76f;
  color: #2d2d2d;
}
.hero-bg-shape {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #bfa76f 60%, #f7f6f3 100%);
  border-radius: 50%;
  opacity: 0.25;
  z-index: 1;
}

/* Hero SVG Woodgrain */
.hero-woodgrain {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Intro Features */
.intro {
  padding: 3rem 1rem 2rem 1rem;
  background: #fff;
  text-align: center;
}
.intro h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #bfa76f;
}
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.feature-card {
  background: #f7f6f3;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(47, 38, 18, 0.07);
  padding: 2rem 1.5rem;
  width: 260px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 6px 24px rgba(47, 38, 18, 0.13);
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #bfa76f;
}

/* Services Page */
.services-main {
  padding: 3rem 1rem 2rem 1rem;
  background: #fff;
  min-height: 70vh;
}
.services-main h1 {
  text-align: center;
  color: #bfa76f;
  margin-bottom: 2.5rem;
}
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.service-card {
  background: #f7f6f3;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(47, 38, 18, 0.07);
  padding: 2rem 1.5rem;
  width: 260px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 6px 24px rgba(47, 38, 18, 0.13);
}

/* Gallery Page */
.gallery-main {
  padding: 3rem 1rem 2rem 1rem;
  background: #fff;
  min-height: 70vh;
}
.gallery-main h1 {
  text-align: center;
  color: #bfa76f;
  margin-bottom: 2.5rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  justify-items: center;
}
.gallery-item {
  background: #f7f6f3;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(47, 38, 18, 0.07);
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: filter 0.2s;
}
.gallery-item span {
  display: block;
  padding: 0.7rem 0.5rem;
  color: #2d2d2d;
  font-weight: 500;
  background: #fff;
}
.gallery-item:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 24px rgba(47, 38, 18, 0.13);
}
.gallery-item:hover img {
  filter: brightness(0.85) blur(1px);
}

/* Testimonials Section */
.testimonials {
  background: #f7f6f3;
  padding: 3rem 1rem 2rem 1rem;
  text-align: center;
}
.testimonials h2 {
  color: #bfa76f;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(47, 38, 18, 0.07);
  padding: 1.5rem 2rem;
  width: 260px;
  font-style: italic;
  color: #2d2d2d;
  transition: transform 0.2s, box-shadow 0.2s;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
}
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.4s; }
.testimonial-card span {
  display: block;
  margin-top: 1rem;
  color: #bfa76f;
  font-style: normal;
  font-weight: 600;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.7);
  align-items: center;
  justify-content: center;
}
.lightbox-modal.active {
  display: flex;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
}
.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10001;
}

/* Map Embed */
.map-embed {
  width: 100%;
  max-width: 400px;
  margin: 2rem auto 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(47, 38, 18, 0.07);
}

/* Contact Page */
.contact-main {
  padding: 3rem 1rem 2rem 1rem;
  background: #fff;
  min-height: 70vh;
  display: block;
}
.contact-main h1 {
  color: #bfa76f;
  margin-bottom: 2.5rem;
  text-align: center;
  width: 100%;
}
.contact-flex {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 2.5rem;
}
.contact-form {
  background: #f7f6f3;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(47, 38, 18, 0.07);
  padding: 2rem 2.5rem;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-form label {
  font-weight: 500;
  color: #2d2d2d;
}
.contact-form input,
.contact-form textarea {
  padding: 0.7rem;
  border-radius: 8px;
  border: 1px solid #bfa76f;
  font-size: 1rem;
  background: #fff;
  resize: none;
}
.contact-form button {
  background: #bfa76f;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 0.8rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.contact-form button:hover {
  background: #2d2d2d;
  color: #fff;
}
.business-info {
  background: #f7f6f3;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(47, 38, 18, 0.07);
  padding: 1.5rem 2rem;
  width: 100%;
  max-width: 400px;
  text-align: left;
  margin-bottom: 2rem;
}
.business-info h2 {
  color: #bfa76f;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background: #2d2d2d;
  color: #fff;
  text-align: center;
  padding: 1.2rem 0 1rem 0;
  margin-top: auto;
  font-size: 1rem;
  letter-spacing: 1px;
  box-shadow: 0 -2px 12px rgba(47, 38, 18, 0.07);
}

/* Fade-in Animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.feature-card, .service-card, .gallery-item {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
}
.feature-card { animation-delay: 0.1s; }
.service-card { animation-delay: 0.1s; }
.gallery-item { animation-delay: 0.1s; }

/* Responsive Styles */
@media (max-width: 900px) {
  .features, .services-list {
    flex-direction: column;
    align-items: center;
  }
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  .testimonials-list {
    flex-direction: column;
    align-items: center;
  }
  .map-embed {
    max-width: 95vw;
  }
  .contact-flex {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .contact-form, .business-info {
    max-width: 95vw;
    padding: 1rem;
    margin-bottom: 0;
  }
}
@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }
  .navbar nav ul {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    display: none;
    background: #2d2d2d;
    position: absolute;
    left: 0;
    top: 60px;
    padding: 1rem 0;
  }
  .navbar nav ul.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .feature-card, .service-card {
    width: 90vw;
    max-width: 320px;
  }
  .contact-form, .business-info {
    max-width: 95vw;
    padding: 1rem;
  }
} 