/* ============================================================
   Garden Brook Venue — Stylesheet
   Clean, warm, elegant wedding venue design.
   ============================================================ */

:root {
  --bg: #fbf8f4;
  --bg-alt: #f3ede4;
  --text: #2e2a26;
  --muted: #6b635c;
  --accent: #b08a5b;          /* warm gold */
  --accent-dark: #8d6b3f;
  --line: #e6dccd;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(60, 45, 30, 0.08);
  --radius: 10px;
  --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-sans: "Inter", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; display: block; }

a { color: var(--accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--text);
  margin: 0 0 .5em;
  letter-spacing: .3px;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1.2; }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 80px 0; }

.section-title {
  text-align: center;
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 48px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: .95rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  text-decoration: none;
  font-weight: 500;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  text-decoration: none;
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-outline:hover {
  background: var(--text);
  color: var(--white);
  text-decoration: none;
}
.btn-light {
  background: var(--white);
  color: var(--text);
  border-color: var(--white);
}
.btn-light:hover { background: var(--bg-alt); text-decoration: none; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 244, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.brand {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 1px;
}
.brand:hover { text-decoration: none; }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--text);
  font-size: .92rem;
  letter-spacing: .4px;
}
.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--accent-dark); text-decoration: none; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--text);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  /* REPLACE: change this background image to your best hero photo */
  background: linear-gradient(rgba(30,22,15,.45), rgba(30,22,15,.55)),
              url("../GB1.JPG") center/cover no-repeat;
}
.hero-inner {
  padding: 24px;
  max-width: 880px;
}
.hero h1 { color: var(--white); margin-bottom: 16px; }
.hero p {
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto 32px;
  opacity: .95;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero .btn-outline { color: var(--white); border-color: var(--white); }
.hero .btn-outline:hover { background: var(--white); color: var(--text); }

/* ---------- Info strip ---------- */
.info-strip {
  background: var(--bg-alt);
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.info-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .98rem;
}
.info-item strong {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text);
}
.info-item a { color: var(--text); font-weight: 500; }

/* ---------- Highlighted photos grid ---------- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.photo-grid .tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: var(--bg-alt);
}
.photo-grid .tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.photo-grid .tile:hover img { transform: scale(1.05); }
.photo-grid .tile.tall { grid-row: span 2; aspect-ratio: auto; }

/* ---------- Interactive Map ---------- */
.map-wrap {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}
.map-img { width: 100%; display: block; }
.map-dot {
  position: absolute;
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--white);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
  transition: transform .2s ease;
}
.map-dot::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: .5;
  animation: pulse 2s infinite;
}
.map-dot:hover { transform: scale(1.2); }
.map-dot .map-dot-label {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--text);
  color: var(--white);
  font-size: .8rem;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.map-dot:hover .map-dot-label { opacity: 1; }
@keyframes pulse {
  0%   { transform: scale(1);   opacity: .6; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ---------- Blog cards ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card img { aspect-ratio: 16 / 10; object-fit: cover; }
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card .date { color: var(--muted); font-size: .85rem; margin-bottom: 8px; }
.blog-card h3 { margin: 0 0 10px; }
.blog-card p { color: var(--muted); flex: 1; }
.blog-card a.read-more {
  margin-top: 12px;
  font-weight: 500;
  color: var(--accent-dark);
  text-transform: uppercase;
  font-size: .82rem;
  letter-spacing: .5px;
}

/* ---------- Reviews ---------- */
.reviews {
  background: var(--bg-alt);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.review-stars { color: #e6b341; margin-bottom: 12px; font-size: 1.1rem; }
.review-text { font-style: italic; color: var(--text); }
.review-meta { margin-top: 16px; font-size: .9rem; color: var(--muted); }
.review-meta strong { color: var(--text); }
.google-attr {
  text-align: center;
  margin-top: 32px;
  font-size: .85rem;
  color: var(--muted);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info p { color: var(--muted); }
.contact-info .info-block { margin-bottom: 24px; }
.contact-info .info-block strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 4px;
}
.contact-info a { color: var(--text); }
.contact-form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text);
  letter-spacing: .3px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg);
  color: var(--text);
  margin-bottom: 16px;
  transition: border-color .2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  background: #e8f3ea;
  border: 1px solid #b8d8be;
  color: #2d5d36;
  padding: 14px;
  border-radius: 6px;
  margin-bottom: 16px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--text);
  color: #d6cfc6;
  padding: 48px 0 28px;
  text-align: center;
  font-size: .92rem;
}
.site-footer .brand { color: var(--white); }
.site-footer a { color: var(--accent); }
.footer-info { margin: 16px 0; }
.footer-info span { display: inline-block; margin: 0 12px; }

/* ---------- Modal / Lightbox ---------- */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(20, 15, 10, 0.85);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn .2s ease;
}
.modal.open { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-content {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 960px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 36px;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: 0;
  font-size: 2rem;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
}
.modal-close:hover { color: var(--text); }
.modal h2 { margin-bottom: 8px; }
.modal-desc { color: var(--muted); margin-bottom: 24px; }
.modal-photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}
.modal-photos img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: transform .2s ease;
}
.modal-photos img:hover { transform: scale(1.03); }

/* Lightbox (single image) */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 95%; max-height: 90vh; object-fit: contain; border-radius: 4px; }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: 0;
  font-size: 2.4rem;
  color: var(--white);
  cursor: pointer;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: 0;
  color: var(--white);
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
}
.lightbox-nav:hover { background: rgba(255,255,255,.3); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ---------- Page header (for non-home pages) ---------- */
.page-header {
  background: var(--bg-alt);
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-header h1 { margin-bottom: 10px; }
.page-header p { color: var(--muted); max-width: 600px; margin: 0 auto; }

/* ---------- Gallery page ---------- */
.album-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.album {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform .2s ease;
}
.album:hover { transform: translateY(-4px); }
.album img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.album-title {
  padding: 18px 22px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  section { padding: 60px 0; }
  .photo-grid,
  .blog-grid,
  .reviews-grid,
  .album-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    gap: 0;
    padding: 12px 24px;
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 10px 0; border-bottom: 1px solid var(--line); }
  .nav-links li:last-child { border-bottom: 0; }
  .nav-toggle { display: block; }
  .photo-grid,
  .blog-grid,
  .reviews-grid,
  .album-grid { grid-template-columns: 1fr; }
  .photo-grid .tile.tall { grid-row: auto; }
  .info-strip-inner { justify-content: center; text-align: center; flex-direction: column; }
  .map-dot { width: 22px; height: 22px; margin: -11px 0 0 -11px; }
  .modal-content { padding: 24px; }
  .hero { min-height: 70vh; }
}
