:root {
  --ach-navy: #071526;
  --ach-navy-2: #0d1f36;
  --ach-midnight: #05070d;
  --ach-gold: #d4af37;
  --ach-gold-soft: #f2d98f;
  --ach-white: #ffffff;
  --ach-cream: #f7f1e8;
  --ach-neutral: #d9c9ae;
  --ach-muted: #758095;
  --ach-card: #ffffff;
  --ach-ink: #172033;
  --ach-danger: #b8892f;
  --ach-border: rgba(212, 175, 55, 0.28);
  --ach-shadow: 0 22px 55px rgba(7, 21, 38, 0.16);
  --ach-radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ach-ink);
  background: var(--ach-cream);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--ach-gold);
}

p {
  color: #4b5568;
}

.text-gold {
  color: var(--ach-gold) !important;
}

.bg-navy {
  background: var(--ach-navy);
}

.bg-cream {
  background: var(--ach-cream);
}

.section-padding {
  padding: 96px 0;
}

.section-padding-sm {
  padding: 72px 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ach-gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.78rem;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  color: var(--ach-navy);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-title.light,
.text-light-title {
  color: var(--ach-white);
}

.lead {
  color: #5b6578;
}

.container-narrow {
  max-width: 920px;
}

.navbar {
  background: rgba(5, 7, 13, 0.89);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  padding: 0.82rem 0;
}

.navbar-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--ach-white) !important;
  letter-spacing: 0.02em;
}

.navbar-brand .brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-right: 0.5rem;
  border: 2px solid var(--ach-gold);
  border-radius: 50%;
  color: var(--ach-gold);
  font-size: 1.05rem;
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.82) !important;
  font-weight: 700;
  padding: 0.6rem 0.78rem !important;
  border-radius: 999px;
  transition: all 0.22s ease;
  font-size: 0.94rem;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--ach-midnight) !important;
  background: linear-gradient(135deg, var(--ach-gold-soft), var(--ach-gold));
  box-shadow: 0 12px 26px rgba(212, 175, 55, 0.24);
}

.navbar-toggler {
  border-color: rgba(212, 175, 55, 0.45);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.hero,
.page-hero,
.hotel-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding-top: clamp(7.5rem, 14vh, 10.5rem);
  padding-bottom: clamp(5.5rem, 10vh, 8rem);
  background-size: cover;
  background-position: center;
  color: var(--ach-white);
  overflow: hidden;
}

.hero {
  min-height: 100svh;
}

.page-hero {
  min-height: 70svh;
}

.hotel-hero {
  min-height: 92svh;
}

.hero::before,
.page-hero::before,
.hotel-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 7, 13, 0.88), rgba(7, 21, 38, 0.68), rgba(5, 7, 13, 0.38));
  z-index: 1;
}

.hero::after,
.hotel-hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 160px;
  background: linear-gradient(0deg, var(--ach-cream), rgba(247, 241, 232, 0));
  z-index: 1;
}

.hero .container,
.page-hero .container,
.hotel-hero .container {
  position: relative;
  z-index: 2;
}

.hero-title,
.page-hero-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.7rem);
  font-weight: 900;
  line-height: 0.98;
  margin-bottom: 1.35rem;
  letter-spacing: -0.045em;
}

.page-hero-title {
  font-size: clamp(2.6rem, 6vw, 5.1rem);
}

.hero-subtitle {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  margin-bottom: 2rem;
}

.hero-note,
.badge-18,
.responsible-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(212, 175, 55, 0.5);
  background: rgba(5, 7, 13, 0.55);
  color: #fff8e7;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.badge-18 {
  font-size: 1rem;
}

.btn {
  font-weight: 800;
  border-radius: 999px;
  padding: 0.82rem 1.35rem;
  transition: all 0.22s ease;
}

.btn-gold {
  color: var(--ach-midnight);
  background: linear-gradient(135deg, var(--ach-gold-soft), var(--ach-gold));
  border: 1px solid var(--ach-gold);
  box-shadow: 0 18px 36px rgba(212, 175, 55, 0.22);
}

.btn-gold:hover,
.btn-gold:focus {
  transform: translateY(-2px);
  color: var(--ach-midnight);
  box-shadow: 0 22px 44px rgba(212, 175, 55, 0.3);
}

.btn-outline-light,
.btn-outline-gold {
  border-color: rgba(212, 175, 55, 0.65);
  color: var(--ach-white);
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline-gold {
  color: var(--ach-navy);
  background: transparent;
}

.btn-outline-light:hover,
.btn-outline-gold:hover {
  background: var(--ach-gold);
  color: var(--ach-midnight) !important;
  border-color: var(--ach-gold);
  transform: translateY(-2px);
}

.image-card {
  position: relative;
  border-radius: var(--ach-radius);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--ach-shadow);
  border: 1px solid rgba(212, 175, 55, 0.18);
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 21, 38, 0.02), rgba(7, 21, 38, 0.24));
}

.lux-card,
.hotel-card,
.package-card,
.feature-card,
.testimonial-card,
.info-card {
  background: var(--ach-card);
  border-radius: var(--ach-radius);
  border: 1px solid rgba(7, 21, 38, 0.08);
  box-shadow: 0 18px 48px rgba(7, 21, 38, 0.09);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  height: 100%;
  overflow: hidden;
}

.lux-card:hover,
.hotel-card:hover,
.package-card:hover,
.feature-card:hover,
.testimonial-card:hover,
.info-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 70px rgba(7, 21, 38, 0.16);
  border-color: rgba(212, 175, 55, 0.45);
}

.hotel-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.hotel-card .card-body,
.package-card,
.feature-card,
.testimonial-card,
.info-card {
  padding: 1.55rem;
}

.hotel-card h3,
.package-card h3,
.feature-card h3,
.testimonial-card h3,
.info-card h3 {
  color: var(--ach-navy);
  font-weight: 850;
  font-size: 1.24rem;
}

.icon-circle {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.06));
  color: var(--ach-gold);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.package-card {
  position: relative;
  background: linear-gradient(180deg, #fff, #fbf7ef);
}

.package-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--ach-gold), var(--ach-gold-soft));
}

.dark-section {
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.18), transparent 34%), linear-gradient(135deg, var(--ach-navy), var(--ach-midnight));
  color: var(--ach-white);
  position: relative;
  overflow: hidden;
}

.dark-section p,
.dark-section .lead {
  color: rgba(255, 255, 255, 0.78);
}

.dark-section .feature-card,
.dark-section .lux-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.dark-section .feature-card h3,
.dark-section .lux-card h3 {
  color: var(--ach-white);
}

.split-panel {
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--ach-shadow);
  border: 1px solid rgba(7, 21, 38, 0.08);
}

.split-panel .content-side {
  padding: clamp(2rem, 5vw, 4.5rem);
}

.mini-stat {
  padding: 1.1rem;
  border-radius: 18px;
  background: rgba(212, 175, 55, 0.11);
  border: 1px solid rgba(212, 175, 55, 0.24);
}

.mini-stat strong {
  display: block;
  color: var(--ach-navy);
  font-size: 1.1rem;
}

.hotel-detail-img {
  border-radius: var(--ach-radius);
  box-shadow: var(--ach-shadow);
  width: 100%;
  min-height: 410px;
  object-fit: cover;
}

.detail-list {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0 0;
}

.detail-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
  color: #4b5568;
}

.detail-list i {
  color: var(--ach-gold);
  margin-top: 0.35rem;
}

.casino-callout {
  border-left: 5px solid var(--ach-gold);
  background: rgba(212, 175, 55, 0.1);
  padding: 1.25rem;
  border-radius: 18px;
  color: var(--ach-navy);
  font-weight: 750;
}

.rating {
  color: var(--ach-gold);
  letter-spacing: 0.1rem;
  margin-bottom: 0.75rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(7, 21, 38, 0.09);
}

.contact-item:last-child {
  border-bottom: 0;
}

.contact-item .icon-circle {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  margin-bottom: 0;
}

.form-control,
.form-select {
  border-radius: 16px;
  border: 1px solid rgba(7, 21, 38, 0.14);
  padding: 0.85rem 1rem;
}

.form-control:focus,
.form-check-input:focus {
  border-color: var(--ach-gold);
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.2);
}

.form-check-input:checked {
  background-color: var(--ach-gold);
  border-color: var(--ach-gold);
}

.site-footer {
  background: linear-gradient(145deg, #05070d, #071526 56%, #0d1f36);
  color: var(--ach-white);
  padding: 72px 0 28px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  top: -160px;
  right: -80px;
  background: rgba(212, 175, 55, 0.14);
  filter: blur(2px);
}

.footer-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 900;
}

.footer-brand .brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-right: 0.5rem;
  color: var(--ach-gold);
  border: 2px solid var(--ach-gold);
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer a:hover {
  color: var(--ach-gold);
}

.footer-title {
  color: var(--ach-white);
  font-weight: 850;
  margin-bottom: 1.1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px; 
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ach-gold-soft), var(--ach-gold));
  color: var(--ach-midnight);
  font-weight: 950;
  font-size: 1.75rem;
  box-shadow: 0 18px 42px rgba(212, 175, 55, 0.28);
}

.social-icons a {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 50%;
  margin-right: 0.45rem;
  color: var(--ach-white);
  transition: all 0.22s ease;
}

.social-icons a:hover {
  background: var(--ach-gold);
  color: var(--ach-midnight);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2.8rem;
  padding-top: 1.4rem;
}

.disclaimer-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.24);
  padding: 1rem;
  border-radius: 18px;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1080;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-inner {
  max-width: 1180px;
  margin: 0 auto;
  background: rgba(5, 7, 13, 0.96);
  color: var(--ach-white);
  border: 1px solid rgba(212, 175, 55, 0.32);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
  border-radius: 24px;
  padding: 1.25rem;
  backdrop-filter: blur(14px);
}

.cookie-inner p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
}

.modal-content {
  border-radius: 24px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  overflow: hidden;
}

.modal-header {
  background: var(--ach-navy);
  color: #fff;
  border-bottom: 1px solid rgba(212, 175, 55, 0.28);
}

.cookie-option {
  padding: 1rem;
  border: 1px solid rgba(7, 21, 38, 0.1);
  border-radius: 18px;
  margin-bottom: 0.85rem;
  background: #fff;
}

.scroll-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1070;
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--ach-midnight);
  background: linear-gradient(135deg, var(--ach-gold-soft), var(--ach-gold));
  box-shadow: 0 16px 30px rgba(7, 21, 38, 0.22);
}

.scroll-top.show {
  display: inline-grid;
  place-items: center;
}


@media (max-height: 800px) and (min-width: 992px) {
  .hero,
  .hotel-hero {
    min-height: calc(100vh + 72px);
  }

  .page-hero {
    min-height: 78vh;
  }

  .hero-title {
    font-size: clamp(3.6rem, 6vw, 5.8rem);
  }

  .page-hero-title {
    font-size: clamp(3rem, 5.2vw, 4.6rem);
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding-top: 1rem;
  }

  .navbar .nav-link {
    margin-bottom: 0.35rem;
  }

  .section-padding {
    padding: 72px 0;
  }

  .hero,
  .hotel-hero,
  .page-hero {
    min-height: auto;
    padding-top: 8rem;
    padding-bottom: 6rem;
  }

  .image-card,
  .image-card img,
  .hotel-detail-img {
    min-height: 320px;
  }
}

@media (max-width: 575.98px) {
  .section-padding {
    padding: 58px 0;
  }

  .hero,
  .hotel-hero,
  .page-hero {
    min-height: auto;
    padding-top: 7.25rem;
    padding-bottom: 4.75rem;
  }

  .hero-title,
  .page-hero-title {
    letter-spacing: -0.025em;
  }

  .btn {
    width: 100%;
    margin-bottom: 0.65rem;
  }

  .cookie-banner {
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
  }

  .cookie-actions .btn {
    width: 100%;
  }

  .footer-badge-18 {
    width: 74px;
    height: 74px;
    font-size: 1.45rem;
  }
}

.text-navy {
  color: var(--ach-navy) !important;
}


/* Legal pages and extended navigation */
.navbar .dropdown-menu {
  background: rgba(5, 7, 13, 0.96);
  border: 1px solid rgba(212, 175, 55, 0.26);
  border-radius: 18px;
  padding: 0.65rem;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.28);
}

.navbar .dropdown-item {
  color: rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  font-weight: 700;
  padding: 0.62rem 0.9rem;
  transition: all 0.22s ease;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item.active {
  color: var(--ach-midnight);
  background: linear-gradient(135deg, var(--ach-gold-soft), var(--ach-gold));
}

.legal-hero .page-hero-title {
  max-width: 1040px;
}

.legal-page {
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.12), transparent 34%),
    var(--ach-cream);
}

.legal-card,
.legal-toc,
.responsible-callout {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--ach-radius);
  box-shadow: var(--ach-shadow);
}

.legal-card {
  padding: clamp(1.35rem, 3vw, 2.5rem);
  margin-bottom: 1.35rem;
}

.legal-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ach-navy);
  font-weight: 800;
  margin-bottom: 1rem;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-updated {
  color: var(--ach-gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.legal-toc {
  top: 112px;
  padding: 1.35rem;
}

.legal-toc-links a {
  color: var(--ach-ink);
}

.legal-toc-links li + li {
  border-top: 1px solid rgba(7, 21, 38, 0.08);
  padding-top: 0.55rem;
}

.responsible-callout {
  padding: 1.35rem;
  background: linear-gradient(135deg, rgba(7, 21, 38, 0.97), rgba(13, 31, 54, 0.95));
}

.responsible-callout p {
  color: rgba(255, 255, 255, 0.82);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.footer-bottom a:hover {
  color: var(--ach-gold);
}


/* Hotel contact, booking and map details */
.hotel-quick-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1.5rem 0 1.4rem;
  max-width: 760px;
}

.quick-fact {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 18px;
  background: rgba(5, 7, 13, 0.42);
  backdrop-filter: blur(12px);
}

.quick-fact i,
.contact-detail-list i,
.hotel-card-info i {
  color: var(--ach-gold);
  margin-top: 0.18rem;
}

.quick-fact span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.18rem;
}

.quick-fact strong,
.quick-fact a {
  color: var(--ach-white);
  font-weight: 850;
  text-decoration: none;
}

.hotel-contact-strip {
  padding: 2rem 0 0;
  background: var(--ach-cream);
}

.contact-strip-card {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  padding: 1.4rem;
  background: var(--ach-white);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--ach-radius);
  box-shadow: 0 18px 46px rgba(7, 21, 38, 0.08);
}

.contact-detail-list,
.hotel-card-info {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0 0;
}

.contact-detail-list li,
.hotel-card-info li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: #4b5568;
  margin-bottom: 0.65rem;
  line-height: 1.45;
}

.contact-detail-list a,
.hotel-card-info a {
  color: var(--ach-navy);
  font-weight: 800;
  text-decoration: none;
}

.contact-detail-list a:hover,
.hotel-card-info a:hover {
  color: var(--ach-gold);
}

.contact-strip-actions,
.hotel-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hotel-card-actions {
  margin-top: 1.15rem;
}

.hotel-card-actions .btn {
  padding: 0.66rem 0.95rem;
  font-size: 0.88rem;
}

@media (max-width: 767.98px) {
  .hotel-quick-facts {
    grid-template-columns: 1fr;
  }

  .contact-strip-card {
    align-items: flex-start;
    flex-direction: column;
  }
}
