/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --charcoal:  #3e3e3e;
  --off-white: #f8f4ef;
  --cream:     #fdf9f4;
  --gold:      #c9a96e;
  --gold-dark: #a8834a;
  --rose:      #d4919a;
  --text:      #2c2c2c;
  --text-muted:#6b6b6b;
  --nav-h:     72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(62, 62, 62, 0.97);
  backdrop-filter: blur(8px);
  z-index: 1000;
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.3); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.nav-logo img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  transition: transform 0.3s;
}
.nav-logo img:hover { transform: rotate(5deg) scale(1.05); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  color: #e8e8e8;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 26px; height: 2px;
  background: #e8e8e8;
  transition: all 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,169,110,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(212,145,154,0.10) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: calc(var(--nav-h) + 2rem) 2rem 4rem;
}

.hero-logo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--gold);
  box-shadow: 0 0 40px rgba(201,169,110,0.35), 0 0 80px rgba(201,169,110,0.15);
  animation: logoFloat 4s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-content h1 {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  line-height: 1.6;
}

.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(201,169,110,0.4);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(168,131,74,0.5);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 1.6rem;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── ABOUT STRIP ── */
.about-strip {
  background: var(--charcoal);
  border-top: 1px solid rgba(201,169,110,0.3);
  padding: 1.4rem 2rem;
}
.about-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3rem;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}
.strip-icon { color: var(--gold); font-size: 0.7rem; }

/* ── GALLERY SECTION ── */
.gallery-section {
  padding: 5rem 2rem;
  background: var(--off-white);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Filter bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.4rem;
  border: 2px solid var(--charcoal);
  background: transparent;
  color: var(--charcoal);
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--charcoal);
  color: #fff;
}

/* Masonry grid */
.gallery-grid {
  column-count: 3;
  column-gap: 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(30,30,30,0.75));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 1.5rem 0.85rem 0.75rem;
  transform: translateY(100%);
  transition: transform 0.3s;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* hide filtered out items */
.gallery-item.hidden { display: none; }

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lb-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 1999;
}
.lb-backdrop.open { display: block; }

.lb-img-wrap {
  position: relative;
  z-index: 2001;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.lb-img-wrap img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  object-fit: contain;
}
#lbCaption {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

.lb-close, .lb-prev, .lb-next {
  position: fixed;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 2002;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.25); }

.lb-close {
  top: 1.2rem; right: 1.5rem;
  font-size: 2rem;
  width: 48px; height: 48px;
}
.lb-prev {
  left: 1.2rem; top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  width: 52px; height: 52px;
}
.lb-next {
  right: 1.2rem; top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  width: 52px; height: 52px;
}

/* ── CONTACT SECTION ── */
.contact-section {
  background: var(--charcoal);
  padding: 5rem 2rem;
}

.contact-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.contact-centered h2 {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: #fff;
}

.contact-quote {
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  font-size: 0.97rem;
  max-width: 560px;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: center;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.97rem;
  line-height: 1.5;
}
.contact-details a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}
.contact-details a:hover { color: #fff; text-decoration: underline; }
.c-icon { font-size: 1.2rem; flex-shrink: 0; }


/* ── FOOTER ── */
.site-footer {
  background: #2a2a2a;
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-top: 1px solid rgba(201,169,110,0.2);
}
.footer-logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  margin-bottom: 0.75rem;
}
.footer-tagline {
  font-family: 'Dancing Script', cursive;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.footer-copy {
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .gallery-grid { column-count: 2; }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(40,40,40,0.98);
    padding: 1.5rem 2rem 2rem;
    gap: 1.25rem;
    border-top: 1px solid rgba(201,169,110,0.2);
  }
  .nav-links.open { display: flex; }
  .burger { display: flex; }
  .gallery-grid { column-count: 1; }
  .hero-logo { width: 150px; height: 150px; }
  .lb-prev { left: 0.5rem; }
  .lb-next { right: 0.5rem; }
}
