/* ================= BASE STYLING ================= */

body {
  font-family: "Inter", sans-serif;
  background: #f7f4ee; /* Warm cream */
  color: #3d3d3d;
  line-height: 1.7;
  font-size: 17px;
}

h1, h2, h3 {
  font-family: "Playfair Display", serif;
  color: #3d4a34; /* Deep evergreen */
}

p {
  color: #4a4a4a;
}

/* Optional subtle natural grain background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url('images/gallery/grain.png');
  opacity: 0.08;
  pointer-events: none;
  z-index: -1;
}


/* ================= NAVBAR ================= */

.navbar {
  background: #3d4a34; /* Deep rustic evergreen */
  color: white;
  padding: 12px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}

.nav-container {
  width: 90%;
  max-width: 1150px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Smaller, rustic logo */
.logo-img {
  height: 36px;
  width: auto;
  filter: sepia(20%) contrast(90%) brightness(1.1); /* Warm rustic tone */
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-size: 0.9rem;
  color: #f3f3f3;
  font-weight: 500;
}

.contact-btn {
  background: #6f7d5c; /* Sage */
  padding: 8px 18px;
  border-radius: 6px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.contact-btn:hover {
  background: #5d6b4d;
}


/* ================= HERO SECTION ================= */

.hero {
  padding: 150px 20px 60px;
  text-align: center;
}

/* Move intro text above the image */
.hero-intro {
  max-width: 700px;
  margin: 0 auto 25px;
  font-size: 1.15rem;
  color: #4b4b4b;
}

/* Hero image tweaks */
.hero-image {
  margin: 10px auto 30px;
  max-width: 680px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Quote smaller + lower emphasis */
.hero-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: #5c4632;
  max-width: 700px;
  margin: 20px auto 0;
  opacity: 0.85;
}

.hero-quote .quote-author {
  font-size: 1rem;
  opacity: 0.6;
  margin-top: 6px;
  display: block;
}


/* ================= SECTIONS ================= */

.content-section {
  padding: 85px 20px;
}

.alt-section {
  background: #e9e2d7; /* warm parchment tan */
}

.section-container {
  max-width: 1000px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: #3d4a34;
}

.section-text,
.section-content {
  max-width: 750px;
  margin: auto;
  margin-bottom: 30px;
  color: #4a4a4a;
  font-size: 1.08rem;
}

/* Rounded rustic images */
.section-image {
  max-width: 900px;
  margin: 35px auto 0;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.feature-list {
  padding-left: 22px;
  line-height: 1.8;
}


/* ================= GALLERY ================= */

.gallery-grid {
  margin-top: 40px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}


.gallery-grid img:hover {
  transform: scale(1.02);
  filter: sepia(0%) contrast(110%);
}


/* ================= CONTACT FORM ================= */

.contact-form {
  max-width: 520px;
  margin: auto;
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #b8b1a5;
  border-radius: 6px;
  background: #faf8f4;
  font-size: 1rem;
}

.submit-btn {
  background: #6f7d5c;
  border: none;
  padding: 13px 18px;
  border-radius: 6px;
  color: white;
  font-weight: 600;
  margin-top: 10px;
  cursor: pointer;
}

.submit-btn:hover {
  background: #5d6b4d;
}


/* ================= GOOGLE REVIEW BUTTON ================= */

.google-review-btn {
  background: #4285F4;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  display: inline-block;
}

.google-review-btn:hover {
  background: #345fcc;
}


/* ================= FOOTER ================= */

.footer {
  background: #3d4a34;
  padding: 35px 0;
  text-align: center;
  color: white;
}

.footer a {
  color: #dfe9dd;
  margin: 0 10px;
}


/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 700px) {

  /* Gallery smaller on mobile */
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
  }

  .gallery-grid img {
    height: 120px;
  }

  /* Hero image smaller on mobile */
  .hero-image {
    max-width: 90%;
    margin: 5px auto 25px;
  }

  /* Quote less prominent on mobile */
  .hero-quote {
    font-size: 1.35rem;
    margin-top: 10px;
  }
}


  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}
