/* ==========================================================================
   MarbleAce.com — Casino Hotel Directory
   Stylesheet — Gold / Burgundy / Charcoal theme
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,600&family=Manrope:wght@400;500;600;700;800&display=swap');

:root{
  --ink:            #100c10;
  --ink-soft:       #1a1420;
  --panel:          #1f1826;
  --panel-alt:      #241a2b;
  --gold:           #d9a94f;
  --gold-bright:    #f0c877;
  --burgundy:       #7d2140;
  --burgundy-bright:#a52c53;
  --cream:          #f4ead9;
  --cream-dim:      #cdbfae;
  --line:           rgba(217,169,79,0.18);

  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', 'Segoe UI', sans-serif;

  --radius: 14px;
  --container: 1180px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--ink);
  color:var(--cream);
  font-family:var(--font-body);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{
  font-family:var(--font-head);
  font-weight:700;
  color:var(--cream);
  margin:0 0 .5em;
  letter-spacing:.2px;
}
p{ margin:0 0 1em; color:var(--cream-dim); }
.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 28px;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-body);
  font-size:12.5px;
  font-weight:700;
  letter-spacing:2.5px;
  text-transform:uppercase;
  color:var(--gold);
}
.eyebrow::before{
  content:"";
  width:26px; height:2px;
  background:var(--gold);
  display:inline-block;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 30px;
  border-radius:999px;
  font-family:var(--font-body);
  font-weight:700;
  font-size:14.5px;
  letter-spacing:.4px;
  cursor:pointer;
  border:1px solid transparent;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn-solid{
  background:linear-gradient(120deg,var(--gold-bright),var(--gold));
  color:#241205;
  box-shadow:0 10px 24px -10px rgba(217,169,79,.65);
}
.btn-solid:hover{ transform:translateY(-2px); box-shadow:0 16px 30px -10px rgba(217,169,79,.8); }
.btn-outline{
  border-color:rgba(244,234,217,.35);
  color:var(--cream);
  background:transparent;
}
.btn-outline:hover{ border-color:var(--gold); color:var(--gold); }

/* ---------------- HEADER ---------------- */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(16,12,16,.86);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 28px;
  gap:20px;
}
.logo{
  font-family:var(--font-head);
  font-size:26px;
  font-weight:700;
  letter-spacing:.5px;
  color:var(--cream);
  display:flex;
  align-items:baseline;
  gap:2px;
}
.logo em{
  font-style:normal;
  color:var(--gold);
}
.logo small{
  display:block;
  font-family:var(--font-body);
  font-size:9.5px;
  letter-spacing:3px;
  font-weight:700;
  color:var(--cream-dim);
  text-transform:uppercase;
  margin-top:2px;
}
.main-nav{
  display:flex;
  align-items:center;
  gap:6px;
  flex-wrap:wrap;
}
.main-nav a{
  padding:9px 16px;
  border-radius:999px;
  font-size:13.5px;
  font-weight:600;
  color:var(--cream-dim);
  transition:background .2s ease, color .2s ease;
  white-space:nowrap;
}
.main-nav a:hover,
.main-nav a.active{
  background:var(--panel);
  color:var(--gold-bright);
}
.main-nav a.nav-cta{
  background:var(--burgundy);
  color:var(--cream);
}
.main-nav a.nav-cta:hover{ background:var(--burgundy-bright); color:#fff; }
.nav-toggle{ display:none; }

/* ---------------- HERO (split diagonal) ---------------- */
.hero{
  position:relative;
  overflow:hidden;
  background:var(--ink);
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 82% 18%, rgba(217,169,79,.18), transparent 45%),
    linear-gradient(115deg, var(--ink) 52%, var(--burgundy) 52%, #5c1830 100%);
  opacity:.95;
}
.hero-inner{
  position:relative;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:40px;
  align-items:center;
  padding:100px 28px 90px;
  max-width:var(--container);
  margin:0 auto;
}
.hero-copy h1{
  font-size:clamp(38px,5vw,60px);
  line-height:1.08;
  margin:18px 0 20px;
}
.hero-copy h1 .accent{ color:var(--gold-bright); font-style:italic; }
.hero-copy p{
  font-size:17px;
  max-width:520px;
  color:var(--cream-dim);
}
.hero-actions{
  display:flex; gap:14px; margin-top:30px; flex-wrap:wrap;
}
.hero-stats{
  display:flex; gap:30px; margin-top:44px; flex-wrap:wrap;
}
.hero-stats div strong{
  display:block;
  font-family:var(--font-head);
  font-size:28px;
  color:var(--gold-bright);
}
.hero-stats div span{
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--cream-dim);
}

/* Roulette / chip art */
.hero-art{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:380px;
}
.wheel{
  width:300px; height:300px;
  border-radius:50%;
  background:conic-gradient(
    var(--ink-soft) 0deg 30deg, var(--burgundy-bright) 30deg 60deg,
    var(--ink-soft) 60deg 90deg, var(--burgundy-bright) 90deg 120deg,
    var(--ink-soft) 120deg 150deg, var(--gold) 150deg 158deg,
    var(--ink-soft) 158deg 188deg, var(--burgundy-bright) 188deg 218deg,
    var(--ink-soft) 218deg 248deg, var(--burgundy-bright) 248deg 278deg,
    var(--ink-soft) 278deg 308deg, var(--burgundy-bright) 308deg 338deg,
    var(--ink-soft) 338deg 360deg
  );
  border:10px solid var(--panel);
  box-shadow:0 0 0 3px var(--gold), 0 30px 60px -20px rgba(0,0,0,.7);
  position:relative;
  animation:spin 26s linear infinite;
}
.wheel::after{
  content:"";
  position:absolute; inset:38%;
  border-radius:50%;
  background:radial-gradient(circle,var(--gold-bright),var(--gold));
  box-shadow:0 0 0 6px var(--ink-soft);
}
@keyframes spin{ to{ transform:rotate(360deg); } }
.chip{
  position:absolute;
  width:64px; height:64px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-head); font-weight:700; font-size:13px;
  color:var(--ink);
  background:repeating-conic-gradient(var(--gold-bright) 0 30deg, var(--cream) 30deg 60deg);
  box-shadow:0 14px 26px -8px rgba(0,0,0,.6);
  border:3px solid var(--ink);
}
.chip-1{ top:6%; left:2%; }
.chip-2{ bottom:10%; right:0%; background:repeating-conic-gradient(var(--burgundy-bright) 0 30deg, var(--cream) 30deg 60deg); }
.chip-3{ bottom:-2%; left:18%; width:46px; height:46px; font-size:11px; background:repeating-conic-gradient(var(--gold) 0 30deg, var(--ink-soft) 30deg 60deg); }

/* ---------------- SECTION HELPERS ---------------- */
.section{ padding:96px 0; }
.section-tight{ padding:70px 0; }
.section-alt{ background:var(--panel); }
.section-head{ max-width:640px; margin-bottom:52px; }
.section-head h2{ font-size:clamp(28px,3.4vw,40px); margin-top:14px; }
.section-head p{ font-size:16px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* ---------------- ABOUT / TWO COLUMN ---------------- */
.about-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:46px;
}
.about-grid p{ font-size:15.5px; }

/* ---------------- FEATURE STRIP ---------------- */
.strip{
  background:linear-gradient(100deg,var(--burgundy),var(--burgundy-bright));
  padding:0;
}
.strip-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}
.strip-item{
  padding:34px 30px;
  border-right:1px solid rgba(244,234,217,.15);
}
.strip-item:last-child{ border-right:none; }
.strip-item .num{
  font-family:var(--font-head);
  font-size:14px;
  color:var(--gold-bright);
  display:block;
  margin-bottom:6px;
}
.strip-item h4{ margin-bottom:4px; font-size:19px; color:#fff; }
.strip-item span.desc{ font-size:13px; color:rgba(244,234,217,.75); }

/* ---------------- DESTINATION CARDS (offset unique layout) ---------------- */
.dest-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}
.dest-card{
  background:var(--panel-alt);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:34px 32px;
  position:relative;
  overflow:hidden;
  transition:transform .25s ease, border-color .25s ease;
}
.dest-card:nth-child(2n){ margin-top:34px; }
.dest-card:hover{ transform:translateY(-6px); border-color:var(--gold); }
.dest-card::before{
  content:attr(data-index);
  position:absolute;
  top:-6px; right:14px;
  font-family:var(--font-head);
  font-size:88px;
  font-weight:700;
  color:rgba(217,169,79,.08);
  line-height:1;
}
.dest-tag{
  font-size:11.5px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:700;
}
.dest-card h3{ font-size:26px; margin:8px 0 2px; }
.dest-loc{ font-size:13px; color:var(--cream-dim); margin-bottom:18px; display:block; }
.dest-block{ margin-bottom:14px; }
.dest-block h5{
  margin:0 0 4px;
  font-size:12.5px;
  text-transform:uppercase;
  letter-spacing:1px;
  color:var(--gold-bright);
  font-family:var(--font-body);
  font-weight:700;
}
.dest-block p{ font-size:14px; margin:0; }

/* ---------------- COMPLETE STAY (3 col) ---------------- */
.stay-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}
.stay-card{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:32px;
  text-align:left;
}
.stay-icon{
  width:48px; height:48px;
  border-radius:12px;
  background:linear-gradient(135deg,var(--gold-bright),var(--gold));
  display:flex; align-items:center; justify-content:center;
  font-size:22px;
  margin-bottom:18px;
  color:#241205;
}
.stay-card h4{ font-size:20px; }
.stay-card p{ font-size:14.5px; }

/* ---------------- EXTENDED CONTENT / QUOTE ---------------- */
.extended{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:50px;
  align-items:start;
}
.pull-quote{
  border-left:3px solid var(--gold);
  padding-left:24px;
  font-family:var(--font-head);
  font-size:26px;
  font-style:italic;
  color:var(--cream);
  line-height:1.4;
}
.extended-copy p{ font-size:15px; }

/* ---------------- DISCLAIMER ---------------- */
.disclaimer{
  background:var(--panel-alt);
  border:1px dashed var(--line);
  border-radius:var(--radius);
  padding:30px 34px;
}
.disclaimer h4{ color:var(--gold); font-size:16px; text-transform:uppercase; letter-spacing:1px; font-family:var(--font-body); }
.disclaimer p{ font-size:13.5px; margin-bottom:10px; }

/* ---------------- FOOTER ---------------- */
.site-footer{
  background:var(--ink-soft);
  border-top:1px solid var(--line);
  padding:64px 0 28px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:36px;
  margin-bottom:44px;
}
.footer-brand p{ font-size:14px; max-width:300px; }
.footer-col h5{
  font-size:13px; text-transform:uppercase; letter-spacing:1.5px;
  color:var(--gold); margin-bottom:16px; font-family:var(--font-body); font-weight:700;
}
.footer-col a{
  display:block;
  font-size:14px;
  color:var(--cream-dim);
  margin-bottom:10px;
  transition:color .2s ease;
}
.footer-col a:hover{ color:var(--gold-bright); }
.footer-bottom{
  border-top:1px solid var(--line);
  padding-top:24px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
  font-size:12.5px;
  color:var(--cream-dim);
}

/* ---------------- LEGAL PAGES ---------------- */
.legal-hero{
  padding:70px 0 40px;
  background:linear-gradient(120deg,var(--ink) 60%, var(--burgundy) 130%);
  border-bottom:1px solid var(--line);
}
.legal-hero h1{ font-size:clamp(32px,4vw,46px); }
.legal-hero p{ max-width:600px; }
.legal-body{ padding:60px 0 100px; }
.legal-body .container{ max-width:860px; }
.legal-body h2{
  font-size:24px;
  margin-top:44px;
  padding-top:20px;
  border-top:1px solid var(--line);
}
.legal-body h2:first-of-type{ border-top:none; padding-top:0; margin-top:0; }
.legal-body p, .legal-body li{ font-size:15px; color:var(--cream-dim); }
.legal-body ul{ margin:0 0 1.2em; padding-left:20px; list-style:disc; }
.legal-body li{ margin-bottom:8px; }
.updated-badge{
  display:inline-block;
  padding:6px 14px;
  border-radius:999px;
  background:var(--panel);
  border:1px solid var(--line);
  font-size:12px;
  color:var(--gold-bright);
  margin-bottom:18px;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width:980px){
  .hero-inner{ grid-template-columns:1fr; padding-top:60px; }
  .hero-art{ order:-1; min-height:260px; }
  .wheel{ width:220px; height:220px; }
  .about-grid{ grid-template-columns:1fr; }
  .dest-grid{ grid-template-columns:1fr; }
  .dest-card:nth-child(2n){ margin-top:0; }
  .stay-grid{ grid-template-columns:1fr; }
  .strip-grid{ grid-template-columns:repeat(2,1fr); }
  .strip-item{ border-bottom:1px solid rgba(244,234,217,.15); }
  .extended{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:680px){
  .header-inner{ flex-direction:column; align-items:flex-start; }
  .main-nav{ width:100%; justify-content:flex-start; }
  .footer-grid{ grid-template-columns:1fr; }
}
