@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --text: #f2f2f2;
  --muted: rgba(242,242,242,0.75);
  --accent: #d6b46a;
}

/* =========================
   FULL BACKGROUND (GUARANTEED)
========================= */
html {
  height: 100%;
  background: #0f0f10;
}

body {
  font-family: Inter, sans-serif;
  color: #f2f2f2;

  background:
    radial-gradient(circle at 15% 10%, rgba(214,180,106,0.35), transparent 40%),
    radial-gradient(circle at 85% 0%, rgba(255,255,255,0.12), transparent 45%),
    radial-gradient(circle at 50% 100%, rgba(0,0,0,0.85), transparent 60%),
    linear-gradient(180deg, #1c1c20 0%, #0f0f10 55%, #0a0a0c 100%);
}

/* =========================
   HEADER LAYOUT (SIMPLE STACK)
========================= */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  padding: 30px 16px 10px;
}

/* =========================
   LOGO
========================= */
.logo {
  width: clamp(260px, 40vw, 600px);
  height: auto;

  margin-bottom: 12px;

  filter:
  drop-shadow(0 20px 40px rgba(0,0,0,1.6))
  drop-shadow(0 60px 120px rgba(0,0,0,0.4));
}

/* =========================
   NAV
========================= */
nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

nav a {
  padding: 10px 14px;
  text-decoration: none;

  color: var(--text);
  font-size: 14px;
  font-weight: 500;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

/* =========================
   HERO TEXT (STATIC, NOT LAYERED)
========================= */
.hero {
  text-align: center;
  padding: 20px 16px 10px;
}

.hero h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 4.5vw, 60px);
  font-weight: 500;
  margin: 0;
}

/* =========================
   INTRO
========================= */
.intro {
  max-width: 720px;
  margin: 20px auto 30px;
  padding: 0 16px;

  text-align: center;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

/* =========================
   GALLERY (BOTTOM FLOW)
========================= */

.gallery-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;

  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}
.gallery-preview img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;

  border-radius: 14px;

  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

/* =========================
   CONTENT
========================= */
.content {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 30px;

  color: var(--muted);
  line-height: 1.8;
}

/* =========================
   FOOTER
========================= */
footer {
  text-align: center;
  padding: 40px 20px;

  color: var(--muted);
  font-size: 13px;
  opacity: 0.8;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  .logo {
    width: clamp(220px, 65vw, 360px);
  }

  nav {
    gap: 8px;
  }

  nav a {
    font-size: 13px;
    padding: 8px 10px;
  }

  .hero h2 {
    font-size: 26px;
  }

  .intro {
    font-size: 15px;
  }

  .gallery-preview {
    grid-template-columns: repeat(2, 1fr);
    padding: 12px;
    gap: 10px;
  }

  .gallery-preview img {
    max-height: 180px;
  }
}
