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

/* ================= VARIABLES ================= */
:root {
  --primary: #D9733D;
  --accent: #F27C38;
  --bg: #f8f5ef;
  --card: #ffffff;
  --text: #2a2a2a;
  --muted: #6f6f6f;
  --shadow: rgba(0,0,0,.08);
  --radius-lg: 26px;
  --radius-md: 18px;
}

/* ================= RESET ================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

/* ================= GLOBAL MEDIA CONTROL ================= */
img,
video,
iframe {
  max-width: 100%;
  display: block;
}

img {
  height: auto;
}

/* ================= NAVBAR ================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 20px var(--shadow);
}

.navbar > .brand,
.navbar > .nav-links {
  max-width: 1100px;
  margin: auto;
}

.navbar {
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: var(--primary);
}

.nav-links a {
  text-decoration: none;
  margin-left: .4rem;
  padding: .55rem 1.25rem;
  border-radius: 999px;
  font-weight: 500;
  color: var(--text);
  transition: all .25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--accent);
  color: #fff;
}

/* ================= HERO ================= */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
  background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.65)),
    url("/images/hero.jpg") center / cover no-repeat;
  color: #fff;
}

.hero-content {
  max-width: 760px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* ================= BUTTONS ================= */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: .85rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.btn-disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* ================= LAYOUT ================= */
section {
  padding: 4rem 1.5rem;
}

.wrap {
  max-width: 1100px;
  margin: auto;
}

/* ================= CARDS ================= */
.card,
.welcome-card {
  background: var(--card);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px var(--shadow);
}

.welcome-card {
  text-align: center;
}

.card h2,
.welcome-card h2 {
  font-family: "Playfair Display", serif;
  color: var(--primary);
  margin-bottom: .75rem;
}

.muted {
  color: var(--muted);
}

.center {
  text-align: center;
}

/* ================= GRID SYSTEM ================= */
.grid {
  display: grid;
  gap: 2rem;
}

.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

/* ================= CTA ================= */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 3rem auto;
}

/* ================= IMAGE GALLERY ================= */
.img-section {
  background: linear-gradient(#fdf4eb, #ffffff);
}

.img-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.img-grid img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
}

/* ================= VIDEO ================= */
.video,
.video-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.video-wrapper {
  aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ================= FOOTER ================= */
footer {
  background: #ffffff;
  padding: 3rem 1.5rem;
  text-align: center;
  color: #777;
}

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

  .navbar {
    flex-direction: column;
    gap: .75rem;
  }

  section {
    padding: 3rem 1.25rem;
  }

  .hero {
    min-height: 60vh;
  }

  .grid.two,
  .grid.three {
    grid-template-columns: 1fr;
  }
}
