/* ==========================================================================
   Luna Resort — global styles
   Palette: "lunar night" — deep petrol, antique gold, warm ivory.
   Bootstrap 5.3 is the base; this file only themes + adds decor pieces.
   Naming: .lr-* for custom components (BEM-ish), keep utilities for the rest.
   ========================================================================== */

:root {
  --lr-ink: #10222e;
  --lr-deep: #0b2b33;
  --lr-teal: #14525c;
  --lr-teal-soft: #1e6b74;
  --lr-gold: #c9a45c;
  --lr-gold-soft: #e6cf9a;
  --lr-cream: #f6f1e7;
  --lr-sand: #ece3d1;
  --lr-rose: #b4765a;
  --lr-text: #3a4a53;
  --lr-muted: #6c7d84;
  --lr-radius: 1.25rem;
  --lr-font-head: "Playfair Display", Georgia, serif;
  --lr-font-body: "Manrope", "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;overflow-x:hidden
}

body {
  font-family: var(--lr-font-body);
  color: var(--lr-text);
  background-color: var(--lr-cream);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .display-1, .display-2, .display-3, .display-4, .display-5 {
  font-family: var(--lr-font-head);
  color: var(--lr-ink);
  font-weight: 700;
}

section {
  position: relative;
}

/* ---------- typography helpers ---------- */

.lr-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--lr-teal);
}

.lr-eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 2px;
  background: var(--lr-gold);
}

.section-dark .lr-eyebrow { color: var(--lr-gold-soft); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4, .section-dark h5 { color: var(--lr-cream); }
.section-dark p { color: rgba(246, 241, 231, .78); }
.section-dark .text-muted { color: rgba(246, 241, 231, .55) !important; }

/* giant outlined word used as a background flourish */
.lr-ghost {
  position: absolute;
  font-family: var(--lr-font-head);
  font-weight: 800;
  font-size: clamp(5rem, 14vw, 13rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(20, 82, 92, .16);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.section-dark .lr-ghost { -webkit-text-stroke-color: rgba(230, 207, 154, .12); }

/* ---------- section skins ---------- */

.section-dark {
  background:
    radial-gradient(60rem 30rem at 110% -10%, rgba(201, 164, 92, .16), transparent 60%),
    radial-gradient(50rem 26rem at -10% 110%, rgba(30, 107, 116, .35), transparent 55%),
    linear-gradient(160deg, var(--lr-deep), var(--lr-ink));
  color: var(--lr-cream);
}

.section-tint { background: var(--lr-sand); }

.section-photo {
  background-size: cover;
  background-position: center;
  color: var(--lr-cream);
}
.section-photo h1, .section-photo h2, .section-photo h3 { color: #fff; }
.section-photo p { color: rgba(255, 255, 255, .82); }

/* decorative radial blob — absolutely positioned, low z */
.lr-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .5;
  pointer-events: none;
  z-index: 0;
}
.lr-blob--gold { background: var(--lr-gold); }
.lr-blob--teal { background: var(--lr-teal-soft); }
.lr-blob--rose { background: var(--lr-rose); }

/* thin gold divider with a moon dot */
.lr-divider {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin: 1.4rem 0;
}
.lr-divider::before, .lr-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--lr-gold), transparent);
}
.lr-divider i { color: var(--lr-gold); font-size: .7rem; }

/* ---------- buttons / badges ---------- */

.btn-lr {
  --bs-btn-font-weight: 700;
  --bs-btn-padding-y: .8rem;
  --bs-btn-padding-x: 1.9rem;
  --bs-btn-border-radius: 3rem;
  background: linear-gradient(135deg, var(--lr-gold), #b08a3f);
  border: none;
  color: #20180a;
  box-shadow: 0 .6rem 1.4rem rgba(176, 138, 63, .35);
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn-lr:hover, .btn-lr:focus {
  color: #20180a;
  transform: translateY(-2px);
  box-shadow: 0 .9rem 1.8rem rgba(176, 138, 63, .45);
}

.btn-lr-outline {
  --bs-btn-font-weight: 700;
  --bs-btn-padding-y: .8rem;
  --bs-btn-padding-x: 1.9rem;
  --bs-btn-border-radius: 3rem;
  border: 2px solid var(--lr-gold);
  color: var(--lr-gold);
  background: transparent;
  transition: all .25s ease;
}
.btn-lr-outline:hover { background: var(--lr-gold); color: #20180a; }

.btn-link-gold { color: var(--lr-gold); font-weight: 700; text-decoration: none; }
.btn-link-gold:hover { color: var(--lr-gold-soft); }

/* 18+ badge — plain CSS circle, no svg */
.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 2px solid var(--lr-gold);
  border-radius: 50%;
  color: var(--lr-gold);
  font-weight: 800;
  font-size: .9rem;
  flex: 0 0 auto;
}
.badge-18--sm { width: 2.2rem; height: 2.2rem; font-size: .7rem; border-width: 1.5px; }

/* ---------- cards & media ---------- */

.lr-card {
  background: #fff;
  border: 1px solid rgba(16, 34, 46, .07);
  border-radius: var(--lr-radius);
  box-shadow: 0 1.2rem 2.6rem rgba(16, 34, 46, .08);
  transition: transform .3s ease, box-shadow .3s ease;
}
/* equal heights only when the card is the column's sole child —
   a blanket height:100% stretches quotes/sidebar cards inside tall columns */
.lr-card:only-child { height: 100%; }
/* .lr-card's white bg would otherwise override the dark skin — keep both */
.lr-card.section-dark {
  background:
    radial-gradient(28rem 14rem at 110% -20%, rgba(201, 164, 92, .18), transparent 60%),
    linear-gradient(160deg, var(--lr-deep), var(--lr-ink));
  border-color: rgba(201, 164, 92, .28);
}
.lr-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1.8rem 3.2rem rgba(16, 34, 46, .14);
}

/* framed image with offset gold corner */
.lr-frame {
  position: relative;
  border-radius: var(--lr-radius);
  overflow: hidden;
}
.lr-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lr-frame::after {
  content: "";
  position: absolute;
  inset: .9rem;
  border: 1px solid rgba(230, 207, 154, .75);
  border-radius: calc(var(--lr-radius) - .55rem);
  pointer-events: none;
}

.lr-collage { position: relative; }
.lr-collage .lr-collage__small {
  position: absolute;
  width: 46%;
  right: -4%;
  bottom: -10%;
  border: .45rem solid var(--lr-cream);
  border-radius: var(--lr-radius);
  box-shadow: 0 1.4rem 3rem rgba(16, 34, 46, .25);
  overflow: hidden;
}

.lr-icon-tile {
  width: 3.4rem;
  height: 3.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  font-size: 1.25rem;
  color: var(--lr-gold);
  background: linear-gradient(145deg, rgba(201, 164, 92, .18), rgba(20, 82, 92, .12));
  border: 1px solid rgba(201, 164, 92, .35);
  flex: 0 0 auto;
}

.stat-card__num {
  font-family: var(--lr-font-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--lr-gold);
  line-height: 1;
}

/* numbered process step */
.step-item { position: relative; }
.step-item__num {
  font-family: var(--lr-font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--lr-gold);
  line-height: 1;
}

/* reviews */
.review-card .fa-star, .stars .fa-star { color: var(--lr-gold); }
.review-card__avatar {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--lr-gold);
}
.review-card{background: var(--lr-teal);}
/* partners strip */
.partner-tile {
  border-radius: var(--lr-radius);
  overflow: hidden;
  border: 1px solid rgba(16, 34, 46, .08);
  filter: grayscale(85%);
  opacity: .8;
  transition: all .3s ease;
}
.partner-tile:hover { filter: none; opacity: 1; }
.partner-tile img { width: 100%; height: 7.5rem; object-fit: cover; }

/* marquee divider strip */
.lr-marquee {
  overflow: hidden;
  background: linear-gradient(90deg, var(--lr-teal), var(--lr-deep));
  border-block: 1px solid rgba(201, 164, 92, .4);
}
.lr-marquee__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  padding: .85rem 0;
  animation: lr-scroll 28s linear infinite;
  font-family: var(--lr-font-head);
  font-size: 1.05rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--lr-gold-soft);
  white-space: nowrap;
}
.lr-marquee__track i { color: var(--lr-gold); font-size: .6rem; align-self: center; }
@keyframes lr-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- header ---------- */

.lr-topbar {
  background: var(--lr-deep);
  color: rgba(246, 241, 231, .85);
  font-size: .82rem;
}
.lr-topbar i { color: var(--lr-gold); }

.lr-navbar {
  background: rgba(246, 241, 231, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(16, 34, 46, .08);
  transition: box-shadow .3s ease;
}
.lr-navbar.is-scrolled { box-shadow: 0 .6rem 1.6rem rgba(16, 34, 46, .12); }
.lr-navbar .nav-link {
  font-weight: 600;
  font-size: .95rem;
  color: var(--lr-ink);
  position: relative;
}
.lr-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: .7rem;
  right: .7rem;
  bottom: .25rem;
  height: 2px;
  background: var(--lr-gold);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.lr-navbar .nav-link:hover::after, .lr-navbar .nav-link.active::after { transform: scaleX(1); }
.lr-navbar .navbar-toggler { border-color: rgba(16, 34, 46, .2); color: var(--lr-ink); }
.lr-navbar .navbar-toggler:focus { box-shadow: 0 0 0 .2rem rgba(201, 164, 92, .35); }

/* ---------- footer ---------- */

.lr-footer {
  background:
    radial-gradient(50rem 20rem at 100% 0%, rgba(201, 164, 92, .12), transparent 55%),
    linear-gradient(170deg, var(--lr-deep), var(--lr-ink));
  color: rgba(246, 241, 231, .75);
}
.lr-footer h5, .lr-footer h6 { color: var(--lr-cream); }
.lr-footer a { color: rgba(246, 241, 231, .7); text-decoration: none; }
.lr-footer a:hover { color: var(--lr-gold-soft); }
.lr-footer .footer-link { display: block; padding: .28rem 0; font-size: .92rem; }
.lr-footer .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(230, 207, 154, .4);
  border-radius: 50%;
  color: var(--lr-gold-soft);
  transition: all .25s ease;
}
.lr-footer .social-link:hover { background: var(--lr-gold); color: #20180a; border-color: var(--lr-gold); }
.lr-footer .footer-bottom { border-top: 1px solid rgba(230, 207, 154, .18); font-size: .82rem; }

/* ---------- cookie bar / form note ---------- */

.cookie-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1080;
  max-width: 46rem;
  margin: 0 auto;
  background: rgba(16, 34, 46, .97);
  color: var(--lr-cream);
  border: 1px solid rgba(201, 164, 92, .4);
  border-radius: 1rem;
  box-shadow: 0 1.4rem 3rem rgba(0, 0, 0, .35);
  display: none;
}
.cookie-bar.is-visible { display: block; }

.form-note {
  display: none;
  border-radius: .8rem;
  padding: .9rem 1.2rem;
  font-weight: 600;
}
.form-note.is-visible { display: block; }
.form-note--ok { background: rgba(30, 107, 116, .12); color: var(--lr-teal); border: 1px solid rgba(30, 107, 116, .3); }

/* ---------- hero ---------- */

.hero-slide {
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.hero-slide .hero-kicker {
  font-size: .85rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--lr-gold-soft);
  font-weight: 700;
}
.carousel-indicators [data-bs-target] { background-color: var(--lr-gold); }
.carousel-control-prev-icon, .carousel-control-next-icon { filter: none; }

/* subtle grain-ish dot pattern for light sections (pure css, no svg) */
.section-dots {
  background-image: radial-gradient(rgba(20, 82, 92, .09) 1px, transparent 1.4px);
  background-size: 22px 22px;
}

/* blog cards */
.blog-card .blog-card__img { height: 13rem; object-fit: cover; width: 100%; }
.blog-card .blog-card__tag {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lr-teal);
  font-weight: 800;
}

/* pricing */
.price-tag {
  font-family: var(--lr-font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--lr-teal);
}
.price-tag small { font-family: var(--lr-font-body); font-size: .85rem; color: var(--lr-muted); font-weight: 600; }
.price-featured {
  border: 2px solid var(--lr-gold) !important;
  position: relative;
}
.price-featured::before {
  content: "Most popular";
  position: absolute;
  top: -.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lr-gold);
  color: #20180a;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 2rem;
}

/* tables */
.lr-table { --bs-table-bg: transparent; }
.lr-table thead th {
  background: var(--lr-deep);
  color: var(--lr-cream);
  font-family: var(--lr-font-head);
  border: none;
}
.lr-table tbody td { vertical-align: middle; }

/* accordion tune */
.accordion-button { font-weight: 700; color: var(--lr-ink); }
.accordion-button:not(.collapsed) { background: rgba(201, 164, 92, .14); color: var(--lr-ink); box-shadow: none; }
.accordion-button:focus { box-shadow: 0 0 0 .2rem rgba(201, 164, 92, .3); }

/* generic page hero (inner pages) */
.page-hero {
  padding: 7rem 0 4.5rem;
  background:
    radial-gradient(40rem 18rem at 90% -20%, rgba(201, 164, 92, .18), transparent 60%),
    linear-gradient(150deg, var(--lr-deep), var(--lr-teal));
  color: var(--lr-cream);
}
.page-hero h1 { color: var(--lr-cream); }
.page-hero .lead { color: rgba(246, 241, 231, .8); }

/* small helper: rotated sticker label */
.lr-sticker {
  display: inline-block;
  background: var(--lr-gold);
  color: #20180a;
  font-weight: 800;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .45rem 1rem;
  border-radius: 2rem;
  transform: rotate(-3deg);
  box-shadow: 0 .5rem 1rem rgba(176, 138, 63, .4);
}

@media (max-width: 991.98px) {
  .hero-slide { min-height: 72vh; }
  .lr-collage .lr-collage__small { position: relative; width: 60%; right: auto; bottom: auto; margin: -18% 0 0 auto; }
  .lr-ghost { display: none; }
}
