:root {
  --cream: #fbf6ee;
  --cream-dark: #f4ecdf;
  --text: #3e342c;
  --accent: #c9a36b;
  --soft-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.7;
}

/* =========================
   TYPOGRAPHY
========================= */

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 0;
}

h1 {
  font-size: 3rem;
}

p {
  margin-bottom: 1.5rem;
}

/* =========================
   HEADER
========================= */

header {
  position: sticky;
  top: 0;
  background: rgba(251, 246, 238, 0.8);
  backdrop-filter: blur(6px);
  z-index: 1000;
  padding: 1.5rem 1rem;
  text-align: center;
}

.logo {
  max-width: 130px;
}

nav {
  margin-top: 1rem;
}

nav a {
  text-decoration: none;
  color: var(--text);
  margin: 0 1.2rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

nav a:hover {
  opacity: 1;
}

/* =========================
   LAYOUT
========================= */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

section {
  margin-bottom: 6rem;
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 1.5rem auto 2.5rem;
}

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

/* .hero {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(to bottom, var(--cream), var(--cream-dark));
}

.hero-inner {
  max-width: 750px;
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

.button {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  border: 1px solid var(--accent);
  text-decoration: none;
  color: var(--text);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
}

.button:hover {
  background: var(--accent);
  color: white;
} */

.hero {
  position: relative;
  height: 100vh;
  background: url("images/hero.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.button {
  display: inline-block;
  padding: 1rem 2.8rem;
  border: 1px solid white;
  text-decoration: none;
  color: white;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: all 0.3s ease;
}

.button:hover {
  background: white;
  color: black;
}

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

/* .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.gallery img {
  width: 100%;
  border-radius: 14px;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.gallery img:hover {
  transform: scale(1.03);
  box-shadow: var(--soft-shadow);
} */

/* =========================
   PREMIUM INFINITE GALLERY
========================= */

.gallery-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
}

/* Fade edges */
.gallery-wrapper::before,
.gallery-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.gallery-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--cream), transparent);
}

.gallery-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--cream), transparent);
}

.gallery {
  display: flex;
  gap: 2rem;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.gallery:active {
  cursor: grabbing;
}

.gallery img {
  border-radius: 16px;
  flex-shrink: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Masonry variation */
.gallery img:nth-child(3n) { height: 420px; }
.gallery img:nth-child(3n+1) { height: 360px; }
.gallery img:nth-child(3n+2) { height: 300px; }

.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* =========================
   ARROWS
========================= */

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  cursor: pointer;
  z-index: 10;
  font-size: 18px;
  transition: transform 0.2s ease;
}

.gallery-arrow:hover {
  transform: translateY(-50%) scale(1.05);
}

.gallery-arrow.left { left: 15px; }
.gallery-arrow.right { right: 15px; }

/* =========================
   LIGHTBOX
========================= */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.97);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.lightbox img {
  max-width: 85%;
  max-height: 85%;
  border-radius: 16px;
}

.lightbox.active {
  display: flex;
}

/* =========================
   ABOUT GRID
========================= */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-grid img {
  width: 100%;
  border-radius: 14px;
}

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

.form-wrapper {
  background: white;
  padding: 3rem;
  border-radius: 18px;
  box-shadow: var(--soft-shadow);
}

iframe {
  width: 100%;
  border: none;
  border-radius: 12px;
}

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

footer {
  text-align: center;
  padding: 3rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* =========================
   ANIMATION
========================= */

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero h1 {
    font-size: 2.4rem;
  }
}

