/* ===================================================================
   VILA ANGY — Presentation site styles
   =================================================================== */
:root {
  --bg: #fbf9f5;
  --bg-alt: #f2ece2;
  --ink: #2b2a26;
  --muted: #6d685e;
  --gold: #b18a4f;
  --gold-dark: #98743c;
  --green: #2e3b2f;
  --green-soft: #4a5d4e;
  --white: #ffffff;
  --line: #e6ded2;
  --shadow-sm: 0 8px 24px rgba(43, 42, 38, 0.08);
  --shadow: 0 20px 55px rgba(43, 42, 38, 0.14);
  --radius: 16px;
  --radius-lg: 24px;
  --max: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.75;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { width: min(var(--max), 92%); margin-inline: auto; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.12; letter-spacing: .2px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold); color: #fff; padding: 14px 32px;
  border-radius: 50px; font-weight: 500; letter-spacing: .6px;
  font-size: .9rem; cursor: pointer; border: none; font-family: inherit;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
  box-shadow: 0 10px 24px rgba(177, 138, 79, 0.32);
}
.btn:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(177,138,79,.42); }
.btn--ghost { background: transparent; border: 1.5px solid rgba(255,255,255,.75); color: #fff; box-shadow: none; }
.btn--ghost:hover { background: rgba(255,255,255,.14); }
.btn--small { padding: 9px 20px; font-size: .8rem; box-shadow: none; }
.btn--full { width: 100%; padding: 16px; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 20px 0;
}
.nav.scrolled { background: rgba(251,249,245,.95); backdrop-filter: blur(12px); box-shadow: 0 4px 22px rgba(0,0,0,.07); padding: 11px 0; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; font-weight: 700; color: #fff; transition: color .3s; letter-spacing: .5px; }
.nav__logo span { color: var(--gold); }
.nav.scrolled .nav__logo { color: var(--ink); }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a { color: #fff; font-size: .9rem; font-weight: 400; letter-spacing: .4px; transition: color .25s; }
.nav__links a:hover { color: var(--gold); }
.nav.scrolled .nav__links a { color: var(--ink); }
.nav.scrolled .nav__links a:hover { color: var(--gold); }
.nav__links .btn { color: #fff; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 61; }
.nav__toggle span { width: 26px; height: 2px; background: #fff; transition: .3s; border-radius: 2px; }
.nav.scrolled .nav__toggle span { background: var(--ink); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; text-align: center; color: #fff; overflow: hidden; }
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.08); transition: opacity 1.6s ease, transform 7s ease;
}
.hero__slide.is-active { opacity: 1; transform: scale(1); }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(rgba(30,28,24,.32), rgba(30,28,24,.62)); z-index: 1; }
.hero__content { position: relative; z-index: 2; margin-inline: auto; max-width: 820px; padding-top: 40px; }
.hero__eyebrow { letter-spacing: 3.5px; text-transform: uppercase; font-size: .8rem; margin-bottom: 16px; opacity: .92; font-weight: 400; }
.hero__title { font-size: clamp(3.6rem, 11vw, 7.5rem); font-weight: 700; text-shadow: 0 4px 30px rgba(0,0,0,.3); }
.hero__subtitle { font-size: clamp(1.05rem, 2.4vw, 1.45rem); font-weight: 300; margin: 20px auto 38px; max-width: 600px; opacity: .96; }
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); color: #fff; font-size: 1.6rem; z-index: 2; animation: bounce 2s infinite; }
@keyframes bounce { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,10px)} }

/* ===== SECTIONS ===== */
.section { padding: 120px 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--green); color: #ece7dd; }
.eyebrow { color: var(--gold); letter-spacing: 3px; text-transform: uppercase; font-size: .78rem; font-weight: 500; margin-bottom: 12px; }
.eyebrow--light { color: var(--gold); }
.section__title { font-size: clamp(2.3rem, 5vw, 3.4rem); margin-bottom: 20px; }
.section--dark .section__title { color: #fff; }
.section__head { max-width: 680px; margin: 0 auto 64px; text-align: center; }
.lead { font-size: 1.13rem; color: var(--muted); }
.section--dark .lead { color: #c9c3b6; }
.lead.center { margin-inline: auto; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

/* ===== ABOUT ===== */
.about__media { position: relative; }
.about__img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); object-fit: cover; aspect-ratio: 4/3; }
.about__img--float {
  position: absolute; right: -28px; bottom: -38px; width: 46%; aspect-ratio: 3/4;
  border: 6px solid var(--bg); box-shadow: var(--shadow);
}
.about__badge {
  position: absolute; top: 22px; left: -18px; background: var(--gold); color: #fff;
  padding: 14px 22px; border-radius: 14px; box-shadow: var(--shadow-sm); line-height: 1.3;
  font-size: .8rem; letter-spacing: .5px;
}
.about__badge strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 700; }
.stats { display: flex; gap: 44px; margin: 36px 0 30px; }
.stat { display: flex; flex-direction: column; }
.stat__num { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat__label { font-size: .82rem; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-top: 6px; }

/* ===== HIGHLIGHTS ===== */
.highlights { background: var(--green); color: #ece7dd; }
.highlights__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.highlight { padding: 46px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,.1); }
.highlight:last-child { border-right: none; }
.highlight span { font-size: 2rem; display: block; margin-bottom: 12px; }
.highlight h4 { font-size: 1.4rem; color: #fff; margin-bottom: 4px; }
.highlight p { font-size: .9rem; color: #bfb9ac; }

/* ===== ROOMS ===== */
.rooms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.room { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .35s ease, box-shadow .35s ease; display: flex; flex-direction: column; }
.room:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.room__img { width: 100%; height: 250px; background-size: cover; background-position: center; border: none; cursor: zoom-in; position: relative; }
.room__img::after { content: "⤢"; position: absolute; right: 14px; bottom: 14px; width: 38px; height: 38px; display: grid; place-items: center; background: rgba(0,0,0,.45); color: #fff; border-radius: 50%; opacity: 0; transition: opacity .25s; font-size: 1rem; }
.room__img:hover::after { opacity: 1; }
.room__body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.room__body h3 { font-size: 1.7rem; margin-bottom: 8px; }
.room__body p { color: var(--muted); font-size: .96rem; margin-bottom: 16px; }
.room__feat { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.room__feat li { font-size: .76rem; letter-spacing: .4px; background: var(--bg-alt); color: var(--green-soft); padding: 5px 12px; border-radius: 50px; }
.room__foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.price { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 700; color: var(--gold); }
.price small { font-size: .72rem; color: var(--muted); font-weight: 400; }
.rooms__note { text-align: center; color: var(--muted); font-size: .82rem; margin-top: 28px; font-style: italic; }

/* ===== FEATURES ===== */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature { background: var(--white); padding: 34px 24px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-sm); transition: transform .3s ease; border: 1px solid var(--line); }
.feature:hover { transform: translateY(-6px); }
.feature__icon { font-size: 2.2rem; display: block; margin-bottom: 14px; }
.feature h4 { font-size: 1.3rem; margin-bottom: 6px; }
.feature p { color: var(--muted); font-size: .9rem; }

/* ===== GALLERY ===== */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.filter {
  font-family: inherit; font-size: .85rem; letter-spacing: .4px; padding: 9px 20px; border-radius: 50px;
  border: 1px solid var(--line); background: var(--white); color: var(--muted); cursor: pointer; transition: .25s;
}
.filter:hover { border-color: var(--gold); color: var(--gold); }
.filter.is-active { background: var(--gold); border-color: var(--gold); color: #fff; }

.gallery { columns: 4; column-gap: 16px; }
.g-item { break-inside: avoid; margin-bottom: 16px; position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); cursor: zoom-in; transition: transform .35s ease; }
.g-item img { width: 100%; transition: transform .6s ease; }
.g-item:hover img { transform: scale(1.06); }
.g-item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 26px 16px 14px; font-size: .82rem; color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,.72)); opacity: 0; transform: translateY(10px); transition: .3s;
}
.g-item:hover figcaption { opacity: 1; transform: none; }
.g-item.is-hidden { display: none; }

/* ===== LOCATIE ===== */
.locatie__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; }
.locatie__list { margin: 26px 0 30px; display: flex; flex-direction: column; gap: 14px; }
.locatie__list li { display: flex; gap: 14px; align-items: center; color: var(--ink); }
.locatie__list span { font-size: 1.2rem; }

/* ===== REVIEWS ===== */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); padding: 34px; border-radius: var(--radius); }
.review__stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 16px; }
.review p { font-style: italic; color: #e4dfd4; font-size: 1rem; }
.review footer { margin-top: 18px; font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: #fff; font-style: normal; }
.reviews__note { text-align: center; color: #9c968a; font-size: .8rem; margin-top: 26px; font-style: italic; }

/* ===== CONTACT ===== */
.contact__list { margin: 30px 0; display: flex; flex-direction: column; gap: 20px; }
.contact__list li { display: flex; gap: 16px; align-items: flex-start; }
.contact__list span { font-size: 1.3rem; }
.contact__list strong { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; }
.contact__list a:hover { color: var(--gold); }
.socials { display: flex; gap: 14px; margin-top: 10px; }
.socials a { font-size: .82rem; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid transparent; padding-bottom: 2px; transition: .25s; }
.socials a:hover { color: var(--gold); border-color: var(--gold); }

.form { background: var(--white); padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { display: flex; flex-direction: column; font-size: .82rem; color: var(--muted); gap: 6px; letter-spacing: .5px; }
.form input, .form textarea {
  font-family: inherit; font-size: .95rem; padding: 12px 14px; border: 1px solid var(--line);
  border-radius: 10px; background: var(--bg); color: var(--ink); transition: border .2s, box-shadow .2s;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(177,138,79,.16); }
.form__note { color: var(--green-soft); font-weight: 500; text-align: center; }

/* ===== FOOTER ===== */
.footer { background: #1f1d19; color: #c5bfb3; padding: 50px 0 34px; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.footer__logo { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: #fff; display: block; margin-bottom: 4px; }
.footer__inner p { font-size: .88rem; }
.footer__nav { display: flex; gap: 22px; }
.footer__nav a { font-size: .88rem; transition: color .2s; }
.footer__nav a:hover { color: var(--gold); }
.footer__copy { width: 100%; text-align: center; border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; margin-top: 8px; font-size: .82rem; color: #8a847a; }

/* ===== LIGHTBOX ===== */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(18,16,13,.92); display: none; align-items: center; justify-content: center; padding: 30px; }
.lightbox.is-open { display: flex; }
.lightbox__fig { max-width: 92vw; max-height: 88vh; text-align: center; }
.lightbox__fig img { max-width: 92vw; max-height: 80vh; border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,.5); object-fit: contain; }
.lightbox__fig figcaption { color: #e6e0d4; margin-top: 16px; font-size: .95rem; letter-spacing: .4px; }
.lightbox__close { position: absolute; top: 22px; right: 28px; background: none; border: none; color: #fff; font-size: 1.8rem; cursor: pointer; line-height: 1; opacity: .8; transition: opacity .2s; }
.lightbox__close:hover { opacity: 1; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.1); border: none; color: #fff; width: 56px; height: 56px; border-radius: 50%; font-size: 2rem; cursor: pointer; transition: background .2s; display: grid; place-items: center; }
.lightbox__nav:hover { background: rgba(255,255,255,.22); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }

/* ===== FAB ===== */
.fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 55; background: var(--gold); color: #fff;
  padding: 14px 26px; border-radius: 50px; font-size: .9rem; font-weight: 500; letter-spacing: .5px;
  box-shadow: 0 12px 30px rgba(177,138,79,.45); transform: translateY(120px); transition: transform .4s ease, background .25s;
}
.fab.show { transform: none; }
.fab:hover { background: var(--gold-dark); }

/* ===== REVEAL ANIM ===== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
  .gallery { columns: 3; }
  .highlights__grid { grid-template-columns: repeat(2, 1fr); }
  .highlight:nth-child(2) { border-right: none; }
  .highlight { border-bottom: 1px solid rgba(255,255,255,.1); }
  .features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; gap: 70px; }
  .about__media { max-width: 520px; margin-inline: auto; }
  .rooms { grid-template-columns: 1fr 1fr; }
  .reviews { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: 78%; max-width: 330px;
    background: var(--bg); flex-direction: column; justify-content: center;
    gap: 28px; transform: translateX(100%); transition: transform .35s ease; box-shadow: var(--shadow);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { color: var(--ink) !important; font-size: 1.15rem; }
}
@media (max-width: 620px) {
  .section { padding: 80px 0; }
  .gallery { columns: 2; column-gap: 12px; }
  .g-item { margin-bottom: 12px; }
  .rooms, .features { grid-template-columns: 1fr; }
  .room { max-width: 420px; margin-inline: auto; width: 100%; }
  .feature { max-width: 420px; margin-inline: auto; width: 100%; }
  .stats { gap: 28px; }
  .form__row { grid-template-columns: 1fr; }
  .about__img--float { width: 44%; right: -10px; bottom: -24px; }
  .form { padding: 28px; }
  .fab { padding: 12px 20px; font-size: .82rem; }
  .lightbox__nav { width: 46px; height: 46px; font-size: 1.6rem; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
}
@media (max-width: 360px) {
  .gallery { columns: 1; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
