/* =========================================================
   Top10RankingUK — Premium Casino Hotel Guide
   Core stylesheet
   ========================================================= */

:root{
  --navy:        #0e1830;
  --navy-deep:   #080e1c;
  --navy-soft:   #1b2745;
  --gold:        #c9a35c;
  --gold-light:  #e8cf9a;
  --burgundy:    #7a1f2b;
  --emerald:     #1f5c4f;
  --cream:       #f6f1e6;
  --cream-soft:  #efe6d3;
  --ink:         #201a12;
  --grey:        #6b6558;
  --radius-lg:   22px;
  --radius-md:   14px;
  --shadow-soft: 0 20px 50px rgba(8,14,28,0.25);
  --shadow-hard: 0 30px 70px rgba(8,14,28,0.45);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:'Manrope', sans-serif;
  background:var(--cream);
  color:var(--ink);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4,.display{
  font-family:'Fraunces', serif;
  font-weight:600;
  letter-spacing:0.2px;
  color:var(--navy-deep);
}
a{text-decoration:none;color:inherit;}
img{max-width:100%;display:block;}
.container{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
}
.eyebrow{
  font-family:'Manrope',sans-serif;
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:0.75rem;
  font-weight:700;
  color:var(--gold);
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 30px;
  border-radius:100px;
  font-weight:700;
  font-size:0.95rem;
  letter-spacing:0.4px;
  cursor:pointer;
  border:1px solid transparent;
  transition:all .25s ease;
}
.btn-gold{
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
  color:var(--navy-deep);
  box-shadow:0 12px 30px rgba(201,163,92,0.35);
}
.btn-gold:hover{transform:translateY(-2px);box-shadow:0 16px 36px rgba(201,163,92,0.5);}
.btn-outline{
  background:transparent;
  border:1px solid rgba(246,241,230,0.5);
  color:var(--cream);
}
.btn-outline:hover{background:rgba(246,241,230,0.12);}
.btn-outline-dark{
  background:transparent;
  border:1px solid rgba(14,24,48,0.3);
  color:var(--navy-deep);
}
.btn-outline-dark:hover{background:rgba(14,24,48,0.06);}

/* ---------- Top bar / Header ---------- */
.topbar{
  background:var(--navy-deep);
  color:var(--cream-soft);
  font-size:0.78rem;
  padding:8px 0;
  letter-spacing:0.3px;
}
.topbar .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:6px;
}
.topbar .age-badge{
  border:1px solid var(--gold);
  color:var(--gold-light);
  padding:1px 10px;
  border-radius:100px;
  font-weight:700;
  margin-right:10px;
}

.site-header{
  position:sticky;
  top:0;
  z-index:500;
  background:rgba(14,24,48,0.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(201,163,92,0.18);
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:14px;
  padding-bottom:14px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand img{
  width:46px;
  height:46px;
  border-radius:50%;
  border:1px solid rgba(201,163,92,0.6);
}
.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand-text .name{
  font-family:'Fraunces',serif;
  font-size:1.18rem;
  color:var(--cream);
  font-weight:600;
  letter-spacing:0.4px;
}
.brand-text .tag{
  font-size:0.65rem;
  color:var(--gold-light);
  letter-spacing:2px;
  text-transform:uppercase;
}

.main-nav ul{
  list-style:none;
  display:flex;
  gap:28px;
  margin:0;
  padding:0;
}
.main-nav a{
  color:var(--cream-soft);
  font-size:0.92rem;
  font-weight:600;
  letter-spacing:0.3px;
  position:relative;
  padding:6px 0;
}
.main-nav a::after{
  content:'';
  position:absolute;
  left:0;bottom:0;
  height:2px;width:0;
  background:var(--gold);
  transition:width .25s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after{width:100%;}
.main-nav a.active{color:var(--gold-light);}

.nav-toggle{
  display:none;
  background:none;
  border:none;
  color:var(--cream);
  font-size:1.6rem;
  cursor:pointer;
}

@media (max-width:960px){
  .main-nav{
    position:fixed;
    top:0; right:-100%;
    width:78%;
    max-width:340px;
    height:100vh;
    background:var(--navy-deep);
    padding:100px 30px 40px;
    transition:right .35s ease;
    box-shadow:-20px 0 50px rgba(0,0,0,0.4);
  }
  .main-nav.open{right:0;}
  .main-nav ul{flex-direction:column;gap:22px;}
  .nav-toggle{display:block;}
}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  min-height:88vh;
  display:flex;
  align-items:flex-end;
  background-size:cover;
  background-position:center;
  color:var(--cream);
}
.hero::before{
  content:'';
  position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(8,14,28,0.35) 0%, rgba(8,14,28,0.55) 55%, rgba(8,14,28,0.95) 100%);
}
.hero-inner{
  position:relative;
  z-index:2;
  padding:80px 0 70px;
  width:100%;
}
.hero h1{
  color:var(--cream);
  font-size:clamp(2.4rem,5vw,4rem);
  max-width:780px;
  margin:14px 0 20px;
}
.hero p{
  max-width:600px;
  font-size:1.08rem;
  color:var(--cream-soft);
  margin-bottom:32px;
}
.hero-actions{display:flex;gap:16px;flex-wrap:wrap;}

.page-hero{
  min-height:52vh;
}
.page-hero .hero-inner{padding:60px 0 50px;}
.page-hero h1{font-size:clamp(2rem,4vw,3rem);}

/* ---------- Sections ---------- */
section{padding:90px 0;}
.section-head{
  max-width:680px;
  margin-bottom:50px;
}
.section-head h2{
  font-size:clamp(1.8rem,3vw,2.6rem);
  margin:10px 0 16px;
}
.section-head p{color:var(--grey);font-size:1.05rem;}
.section-alt{background:var(--navy-deep);color:var(--cream-soft);}
.section-alt h2,.section-alt h3,.section-alt h4{color:var(--cream);}
.section-alt .section-head p{color:#b9b3a2;}
.section-soft{background:var(--cream-soft);}

/* ---------- Grid / Cards ---------- */
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:center;}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:26px;}

@media(max-width:960px){
  .grid-2{grid-template-columns:1fr;gap:34px;}
  .grid-3{grid-template-columns:1fr 1fr;}
  .grid-4{grid-template-columns:1fr 1fr;}
}
@media(max-width:600px){
  .grid-3,.grid-4{grid-template-columns:1fr;}
}

.card{
  background:#fff;
  border-radius:var(--radius-md);
  overflow:hidden;
  box-shadow:0 14px 34px rgba(14,24,48,0.08);
  transition:transform .3s ease, box-shadow .3s ease;
  border:1px solid rgba(14,24,48,0.06);
}
.card:hover{transform:translateY(-6px);box-shadow:var(--shadow-soft);}
.card img{height:220px;object-fit:cover;width:100%;}
.card-body{padding:26px;}
.card-body h3{font-size:1.2rem;margin:0 0 10px;}
.card-body p{color:var(--grey);font-size:0.95rem;margin:0;}

.feature-item{
  display:flex;
  gap:18px;
  align-items:flex-start;
}
.feature-item .icon{
  width:52px;height:52px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
  display:flex;align-items:center;justify-content:center;
  color:var(--navy-deep);
  font-size:1.25rem;
  flex-shrink:0;
}
.feature-item h4{margin:2px 0 8px;font-size:1.05rem;}
.feature-item p{margin:0;color:var(--grey);font-size:0.93rem;}

.stat-row{
  display:flex;
  gap:50px;
  flex-wrap:wrap;
  margin-top:40px;
}
.stat-row .stat b{
  display:block;
  font-family:'Fraunces',serif;
  font-size:2.1rem;
  color:var(--gold);
}
.stat-row .stat span{font-size:0.85rem;color:var(--cream-soft);letter-spacing:0.5px;}

.quote-block{
  border-left:3px solid var(--gold);
  padding-left:24px;
  font-family:'Fraunces',serif;
  font-style:italic;
  font-size:1.2rem;
  color:var(--navy-deep);
  margin:30px 0;
}

.badge-pill{
  display:inline-block;
  background:rgba(201,163,92,0.12);
  border:1px solid rgba(201,163,92,0.4);
  color:var(--burgundy);
  padding:5px 16px;
  border-radius:100px;
  font-size:0.78rem;
  font-weight:700;
  letter-spacing:0.6px;
  margin-bottom:16px;
}

.two-col-img{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-soft);}
.two-col-img img{width:100%;height:100%;object-fit:cover;}

.cta-band{
  background:linear-gradient(120deg,var(--navy-deep),var(--navy));
  color:var(--cream);
  text-align:center;
  padding:80px 0;
}
.cta-band h2{color:var(--cream);}
.cta-band p{color:var(--cream-soft);max-width:560px;margin:0 auto 30px;}

/* ---------- Table (amenities / hours) ---------- */
.info-table{width:100%;border-collapse:collapse;margin-top:20px;}
.info-table th,.info-table td{
  text-align:left;
  padding:14px 18px;
  border-bottom:1px solid rgba(14,24,48,0.08);
  font-size:0.95rem;
}
.info-table th{color:var(--navy-deep);font-family:'Fraunces',serif;font-weight:600;}
.info-table td{color:var(--grey);}

/* ---------- Footer ---------- */
.site-footer{
  background:var(--navy-deep);
  color:#c8c2b3;
  padding-top:70px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:40px;
  padding-bottom:50px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
@media(max-width:860px){
  .footer-grid{grid-template-columns:1fr 1fr;}
}
@media(max-width:560px){
  .footer-grid{grid-template-columns:1fr;}
}
.footer-grid h4{
  color:var(--gold-light);
  font-size:0.9rem;
  text-transform:uppercase;
  letter-spacing:1.5px;
  margin-bottom:18px;
  font-family:'Manrope',sans-serif;
  font-weight:700;
}
.footer-grid ul{list-style:none;margin:0;padding:0;}
.footer-grid li{margin-bottom:10px;font-size:0.9rem;}
.footer-grid a:hover{color:var(--gold-light);}
.footer-brand p{font-size:0.9rem;color:#a9a394;max-width:300px;}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:14px;
  padding:26px 0;
  font-size:0.78rem;
  color:#88836f;
}
.footer-18{
  display:flex;
  align-items:center;
  gap:10px;
}
.footer-18 .circle{
  width:30px;height:30px;border-radius:50%;
  border:1px solid var(--gold);
  color:var(--gold-light);
  display:flex;align-items:center;justify-content:center;
  font-weight:800;font-size:0.75rem;
}

/* ---------- Age Gate Modal ---------- */
.age-gate-overlay{
  position:fixed;inset:0;
  background:rgba(6,10,20,0.92);
  z-index:3000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  backdrop-filter:blur(6px);
}
.age-gate-overlay[hidden]{display:none;}
.age-gate-box{
  background:linear-gradient(160deg,#12203f,#0a1226);
  border:1px solid rgba(201,163,92,0.35);
  border-radius:var(--radius-lg);
  max-width:440px;
  width:100%;
  padding:44px 38px;
  text-align:center;
  color:var(--cream);
  box-shadow:var(--shadow-hard);
}
.age-gate-box .emblem{
  width:56px;height:56px;
  margin:0 auto 18px;
  border-radius:50%;
  border:1px solid var(--gold);
}
.age-gate-box h2{
  color:var(--cream);
  font-size:1.5rem;
  margin:0 0 12px;
}
.age-gate-box p{
  color:var(--cream-soft);
  font-size:0.92rem;
  margin-bottom:26px;
}
.age-gate-actions{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
}
.age-gate-actions button{
  min-width:130px;
  border:none;
  cursor:pointer;
}
.age-gate-fine{
  margin-top:22px;
  font-size:0.72rem;
  color:#8b93ab;
}
.age-gate-fine a{color:var(--gold-light);text-decoration:underline;}

/* ---------- Cookie Banner ---------- */
.cookie-banner{
  position:fixed;
  left:20px;right:20px;bottom:20px;
  max-width:640px;
  margin:0 auto;
  background:#fff;
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-hard);
  padding:22px 26px;
  z-index:2500;
  display:flex;
  gap:18px;
  align-items:center;
  flex-wrap:wrap;
  border:1px solid rgba(14,24,48,0.08);
}
.cookie-banner[hidden]{display:none;}
.cookie-banner p{
  margin:0;
  font-size:0.86rem;
  color:var(--grey);
  flex:1;
  min-width:220px;
}
.cookie-banner a{color:var(--burgundy);text-decoration:underline;}
.cookie-actions{display:flex;gap:10px;flex-wrap:wrap;}
.cookie-actions button{
  padding:10px 18px;
  border-radius:100px;
  font-size:0.82rem;
  font-weight:700;
  cursor:pointer;
  border:1px solid var(--navy);
}
.cookie-accept{background:var(--navy-deep);color:#fff;}
.cookie-decline{background:transparent;color:var(--navy-deep);}

/* ---------- Legal pages ---------- */
.legal-content{
  max-width:820px;
  margin:0 auto;
  padding:70px 24px 100px;
}
.legal-content h1{margin-bottom:6px;}
.legal-content .updated{color:var(--grey);font-size:0.85rem;margin-bottom:40px;}
.legal-content h2{font-size:1.4rem;margin:36px 0 14px;}
.legal-content p, .legal-content li{color:#3b3527;font-size:0.98rem;line-height:1.75;}
.legal-content ul{padding-left:22px;}
.legal-content a{color:var(--burgundy);text-decoration:underline;}

/* Contact */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:50px;}
@media(max-width:860px){.contact-grid{grid-template-columns:1fr;}}
.contact-card{
  background:#fff;
  border-radius:var(--radius-md);
  padding:34px;
  box-shadow:0 14px 34px rgba(14,24,48,0.08);
}
.contact-card .row{display:flex;gap:16px;margin-bottom:22px;}
.contact-card .row .icon{
  width:44px;height:44px;border-radius:50%;
  background:rgba(201,163,92,0.14);
  color:var(--burgundy);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.contact-form input,.contact-form textarea{
  width:100%;
  padding:14px 16px;
  border-radius:10px;
  border:1px solid rgba(14,24,48,0.15);
  font-family:'Manrope',sans-serif;
  font-size:0.95rem;
  margin-bottom:16px;
  background:#fbf9f4;
}
.contact-form textarea{min-height:130px;resize:vertical;}
.contact-form label{font-size:0.82rem;font-weight:700;color:var(--navy-deep);display:block;margin-bottom:6px;}
.form-note{font-size:0.8rem;color:var(--grey);margin-top:10px;}

/* Back to top */
.scroll-top{
  position:fixed;
  right:24px;bottom:24px;
  width:46px;height:46px;
  border-radius:50%;
  background:var(--navy-deep);
  color:var(--gold-light);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
  box-shadow:var(--shadow-soft);
  opacity:0;pointer-events:none;
  transition:opacity .3s ease;
  z-index:900;
  border:1px solid rgba(201,163,92,0.3);
}
.scroll-top.show{opacity:1;pointer-events:auto;}

/* Breadcrumb-esque section divider */
.divider-gold{
  width:70px;height:3px;
  background:var(--gold);
  border-radius:4px;
  margin-bottom:18px;
}
