/* Adventurevibes — luxury casino party website styles */
:root {
  --bg: #111111;
  --surface: #1B1B1B;
  --gold: #D4AF37;
  --white: #FFFFFF;
  --turquoise: #00e0ff;
  --error: #ff4d4d;
  --success: #2ecc71;
  --text-muted: rgba(255,255,255,0.7);
  --radius: 14px;
  --max-w: 1280px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--gold); text-decoration: none; transition: color .25s; }
a:hover { color: var(--turquoise); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%;
  background: rgba(17,17,17,.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212,175,55,.18);
  z-index: 1000;
  transition: background .3s;
}

.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 120px;
}

.logo img { height: 96px; width: auto; }

.main-nav ul {
  display: flex; gap: 32px; list-style: none; align-items: center;
}

.main-nav a {
  font-size: 14px; font-weight: 500; text-transform: uppercase;
  letter-spacing: .08em; color: var(--white); position: relative;
}

.main-nav a::after {
  content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px;
  background: var(--gold); transition: width .3s;
}

.main-nav a:hover::after { width: 100%; }

.header-contact {
  display: flex; align-items: center; gap: 24px;
  font-size: 14px; color: var(--text-muted);
}

.burger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; z-index: 1100;
}

.burger span {
  display: block; width: 28px; height: 2px; background: var(--gold);
  transition: .3s;
}

body.menu-open { overflow: hidden; }

@media (max-width: 900px) {
  .burger { display: flex; }
  .main-nav { position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 80vw);
    background: var(--surface); transform: translateX(100%); transition: transform .35s ease;
    z-index: 1050; padding: 100px 40px; border-left: 1px solid rgba(212,175,55,.2);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 24px; }
  .header-contact { display: none; }
}

/* Hero */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  background-attachment: fixed;
  filter: brightness(.45);
}

.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(circle at 20% 30%, rgba(0,224,255,.12), transparent 40%),
              radial-gradient(circle at 80% 70%, rgba(212,175,55,.10), transparent 45%);
  pointer-events: none;
}

.hero .container { text-align: center; padding-top: 120px; }

.hero-badge {
  display: inline-block; padding: 8px 20px; border: 1px solid var(--turquoise);
  border-radius: 50px; color: var(--turquoise); font-size: 13px;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 24px;
  box-shadow: 0 0 16px rgba(0,224,255,.25);
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 12px rgba(0,224,255,.25); }
  50% { box-shadow: 0 0 24px rgba(0,224,255,.45); }
}

.hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(38px, 6vw, 78px); line-height: 1.08;
  font-weight: 400; margin-bottom: 20px; color: var(--white);
}

.hero h1 .gold { color: var(--gold); }

.hero p.lead {
  max-width: 720px; margin: 0 auto 40px; font-size: 18px; color: var(--text-muted);
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; border-radius: 50px; font-weight: 600; font-size: 15px;
  text-transform: uppercase; letter-spacing: .06em; border: none; cursor: pointer;
  transition: transform .25s, box-shadow .3s, background .3s; background: var(--gold); color: #000;
}

.btn:hover { transform: translateY(-3px); box-shadow: 0 0 24px rgba(212,175,55,.45); color: #000; }

.btn-outline { background: transparent; border: 2px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: #000; }

/* Sections */
.section { padding: 100px 0; }
.section-alt { background: var(--surface); }

.section-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(30px, 4vw, 46px); font-weight: 400; color: var(--gold);
  margin-bottom: 16px; text-align: center;
}

.section-subtitle { text-align: center; color: var(--text-muted); max-width: 760px; margin: 0 auto 60px; }

/* Grid / cards */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 980px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) { .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: rgba(27,27,27,.72);
  border: 1px solid rgba(212,175,55,.18);
  border-radius: var(--radius); padding: 32px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
}

.card::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(212,175,55,.04), transparent 60%);
  opacity: 0; transition: opacity .4s; pointer-events: none;
}

.card:hover { transform: translateY(-8px); border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(0,224,255,.12), 0 0 30px rgba(212,175,55,.12); }
.card:hover::before { opacity: 1; }

.card h3 { color: var(--gold); font-size: 22px; margin-bottom: 12px; font-weight: 500; }
.card p { color: var(--text-muted); }

.img-card img { width: 100%; height: 320px; object-fit: cover; border-radius: var(--radius); }

/* Text block with image */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 40px; } }

.split img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--radius); }
.split h2 { font-family: Georgia, 'Times New Roman', serif; font-size: 36px; color: var(--gold); margin-bottom: 20px; }
.split p { color: var(--text-muted); margin-bottom: 16px; }

/* Lists */
.feature-list { list-style: none; margin-top: 24px; }
.feature-list li { padding: 10px 0 10px 32px; color: var(--white); position: relative; }
.feature-list li::before {
  content: '♠'; position: absolute; left: 0; color: var(--gold); font-size: 18px;
}

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 32px; border: 1px solid rgba(212,175,55,.18); border-radius: var(--radius); background: rgba(27,27,27,.6); }
.stat strong { display: block; font-size: 42px; color: var(--gold); font-family: Georgia, serif; }
.stat span { color: var(--text-muted); font-size: 14px; text-transform: uppercase; letter-spacing: .05em; }

@media (max-width: 860px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* Team */
.team-card img { width: 100%; height: 360px; object-fit: cover; border-radius: var(--radius); margin-bottom: 16px; }
.team-card h4 { color: var(--gold); font-size: 20px; margin-bottom: 4px; }
.team-card p { color: var(--text-muted); font-size: 14px; }

/* Packages / Pricing */
.package-card { display: flex; flex-direction: column; }
.package-card .price { font-size: 36px; color: var(--gold); font-family: Georgia, serif; margin: 12px 0; }
.package-card .price small { font-size: 16px; color: var(--text-muted); }
.package-card ul { list-style: none; margin: 16px 0 24px; flex-grow: 1; }
.package-card li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.06); color: var(--text-muted); font-size: 15px; }
.package-card .btn { width: 100%; justify-content: center; }

.disclaimer-box {
  border-left: 4px solid var(--turquoise); padding: 24px 28px; background: rgba(0,224,255,.06);
  border-radius: 0 var(--radius) var(--radius) 0; margin: 40px 0;
}

/* Forms */
.form-section { max-width: 700px; margin: 0 auto; background: var(--surface); padding: 48px; border-radius: var(--radius); border: 1px solid rgba(212,175,55,.18); }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; margin-bottom: 8px; color: var(--gold); font-size: 14px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px; background: rgba(17,17,17,.8);
  border: 1px solid rgba(255,255,255,.12); border-radius: 8px;
  color: var(--white); font-size: 15px; transition: border-color .3s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--gold); }
.form-group .error { color: var(--error); font-size: 13px; margin-top: 6px; display: none; }
.form-group.invalid .error { display: block; }
.form-group.invalid input, .form-group.invalid textarea { border-color: var(--error); }

/* Reviews */
.review { background: var(--surface); border: 1px solid rgba(212,175,55,.15); border-radius: var(--radius); padding: 28px; }
.review p { color: var(--text-muted); font-style: italic; margin-bottom: 16px; }
.review strong { color: var(--gold); }

/* Footer */
.site-footer { background: var(--surface); border-top: 1px solid rgba(212,175,55,.18); padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-bottom: 50px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: var(--gold); font-size: 18px; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .06em; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; color: var(--text-muted); font-size: 15px; }
.footer-grid a { color: var(--text-muted); }
.footer-grid a:hover { color: var(--gold); }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; color: rgba(255,255,255,.5); font-size: 14px; }

.socials { display: flex; gap: 16px; }
.socials a { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); transition: .3s; }
.socials a:hover { background: var(--gold); color: #000; box-shadow: 0 0 16px rgba(212,175,55,.35); }
.socials svg { width: 22px; height: 22px; }

/* Custom popup */
.modal-overlay {
  position: fixed; inset: 0; z-index: 3000; background: rgba(0,0,0,.8);
  display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal-overlay.show { opacity: 1; pointer-events: auto; }
.modal { background: var(--surface); border: 1px solid var(--gold); border-radius: var(--radius); padding: 40px; max-width: 480px; text-align: center; box-shadow: 0 0 40px rgba(0,224,255,.15); }
.modal h3 { color: var(--gold); margin-bottom: 16px; }
.modal p { color: var(--text-muted); margin-bottom: 24px; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }
