/* ===== ROTORUA CITIZENS CLUB — MAIN STYLESHEET ===== */
/* Palette: Midnight Blue + Electric Teal + Casino Gold + Coral */

:root {
  --bg-dark:    #080E1F;
  --bg-card:    #0D1830;
  --bg-panel:   #111E3A;
  --teal:       #00C9A7;
  --teal-light: #00E6C0;
  --gold:       #F5C842;
  --gold-dark:  #C9A000;
  --coral:      #FF4E6A;
  --text-light: #EDF2FF;
  --text-muted: #7B8DB5;
  --border:     rgba(0,201,167,0.18);
  --glow-teal:  0 0 30px rgba(0,201,167,0.3);
  --glow-gold:  0 0 30px rgba(245,200,66,0.35);
  --radius:     14px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.1; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--text-muted); }

.gradient-text {
  background: linear-gradient(135deg, var(--teal), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== LAYOUT ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 6rem 0; }
.section-sm { padding: 3rem 0; }

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), #008E77);
  color: #fff;
  box-shadow: var(--glow-teal);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 45px rgba(0,201,167,0.5);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-dark);
  box-shadow: var(--glow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 45px rgba(245,200,66,0.6);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--bg-dark);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 1.2rem 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(8,14,31,0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-logo svg { width: 36px; height: 36px; }
.nav-logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.nav-logo-text span { color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--teal);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text-light);
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.nav-cta { margin-left: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: var(--transition);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0,201,167,0.12) 0%, transparent 60%),
              radial-gradient(ellipse 50% 40% at 20% 70%, rgba(245,200,66,0.08) 0%, transparent 50%),
              linear-gradient(160deg, #080E1F 0%, #0A1628 50%, #080E1F 100%);
}

/* Animated grid pattern */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,201,167,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,201,167,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
  0%   { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite alternate;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: rgba(0,201,167,0.12);
  top: -10%; right: -5%;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 350px; height: 350px;
  background: rgba(245,200,66,0.1);
  bottom: 5%; left: -5%;
  animation-delay: -3s;
}
.hero-orb-3 {
  width: 250px; height: 250px;
  background: rgba(255,78,106,0.08);
  top: 40%; left: 35%;
  animation-delay: -5s;
}
@keyframes orbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(20px, -30px) scale(1.05); }
}

.hero .container { position: relative; z-index: 1; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,201,167,0.1);
  border: 1px solid rgba(0,201,167,0.3);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 1.5rem;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.6); }
}

.hero h1 { margin-bottom: 1.2rem; }
.hero p.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
}
.stat-item { }
.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Hero visual side */
.hero-visual {
  position: relative;
}

.hero-card-main {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg-panel) 0%, #162040 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.casino-scene {
  width: 100%;
  height: 100%;
}

.hero-card-info {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-card-info .name { font-weight: 700; font-size: 1rem; }
.hero-card-info .sub  { font-size: 0.8rem; color: var(--text-muted); }

.hero-float-1, .hero-float-2 {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  backdrop-filter: blur(8px);
}
.hero-float-1 {
  top: -1.5rem; left: -1.5rem;
  box-shadow: var(--glow-teal);
}
.hero-float-2 {
  bottom: 3rem; right: -1.5rem;
  box-shadow: var(--glow-gold);
}
.float-icon { font-size: 1.6rem; }
.float-text .num  { font-weight: 800; font-size: 1.1rem; color: var(--gold); }
.float-text .lbl  { font-size: 0.72rem; color: var(--text-muted); }

/* ===== FEATURES STRIP ===== */
.features-strip {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(0,201,167,0.03);
}
.features-strip .container {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-around;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}
.feature-item svg { flex-shrink: 0; }

/* ===== ABOUT ===== */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}
.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-img-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-panel);
  border: 1px solid var(--border);
}
.about-img-item:first-child {
  grid-column: span 2;
  aspect-ratio: 16/7;
}
.img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-badge-rotorua {
  position: absolute;
  bottom: -1rem; right: -1rem;
  background: linear-gradient(135deg, var(--teal), #008E77);
  color: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--glow-teal);
}
.about-badge-rotorua .year { font-size: 1.8rem; font-weight: 900; display: block; }

.about-content p { margin: 1rem 0 1.5rem; }
.about-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.about-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.about-list li svg { color: var(--teal); flex-shrink: 0; }

/* ===== CASINO SECTION ===== */
.casino-section { background: var(--bg-panel); }

.casino-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.casino-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  opacity: 0;
  transition: opacity var(--transition);
}
.casino-card:hover {
  border-color: rgba(0,201,167,0.4);
  transform: translateY(-4px);
  box-shadow: var(--glow-teal);
}
.casino-card:hover::before { opacity: 1; }

.casino-card-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.8rem;
}
.casino-card h3 { margin-bottom: 0.5rem; }

/* ===== ROOMS GRID ===== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.room-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
}
.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--glow-teal);
  border-color: rgba(0,201,167,0.35);
}
.room-img {
  aspect-ratio: 4/3;
  background: var(--bg-panel);
  position: relative;
  overflow: hidden;
}
.room-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--teal);
  color: var(--bg-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
}
.room-body { padding: 1.5rem; }
.room-body h3 { margin-bottom: 0.4rem; }
.room-body p  { font-size: 0.88rem; margin-bottom: 1.2rem; }
.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}
.room-feat {
  font-size: 0.75rem;
  background: rgba(0,201,167,0.1);
  color: var(--teal);
  border-radius: 20px;
  padding: 0.25rem 0.7rem;
}
.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.room-price .from { font-size: 0.72rem; color: var(--text-muted); }
.room-price .amount { font-size: 1.3rem; font-weight: 800; color: var(--gold); }
.room-price .night { font-size: 0.75rem; color: var(--text-muted); }

/* ===== DINING ===== */
.dining-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
.dining-visual {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  background: var(--bg-panel);
}
.dining-menu { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0 2rem; }
.menu-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.menu-icon { font-size: 1.6rem; flex-shrink: 0; }
.menu-name { font-weight: 600; font-size: 0.95rem; }
.menu-desc { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.2rem; }

/* ===== LOCATION ===== */
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}
.location-map {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 380px;
  background: var(--bg-panel);
}
.location-map iframe {
  width: 100%; height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) saturate(0.8) brightness(0.8);
}

.contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.contact-card:hover {
  border-color: rgba(0,201,167,0.4);
  box-shadow: var(--glow-teal);
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(0,201,167,0.1);
  border: 1px solid rgba(0,201,167,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-label { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.2rem; }
.contact-value { font-weight: 600; font-size: 0.95rem; }

/* ===== RESPONSIBLE GAMING ===== */
.rg-strip {
  background: rgba(245,200,66,0.06);
  border-top: 1px solid rgba(245,200,66,0.15);
  border-bottom: 1px solid rgba(245,200,66,0.15);
  padding: 1.5rem 0;
}
.rg-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.rg-icon { font-size: 1.8rem; flex-shrink: 0; }
.rg-text { flex: 1; }
.rg-text strong { color: var(--gold); }
.rg-text p { font-size: 0.82rem; margin: 0; }
.rg-link {
  color: var(--teal);
  text-decoration: underline;
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, rgba(0,201,167,0.12), rgba(245,200,66,0.08));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 4rem;
  text-align: center;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(0,201,167,0.05) 0%, transparent 60%);
  animation: rotateSlow 15s linear infinite;
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.cta-banner h2 { margin-bottom: 1rem; position: relative; }
.cta-banner p  { max-width: 480px; margin: 0 auto 2rem; position: relative; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ===== FOOTER ===== */
.footer {
  background: #050A16;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p { font-size: 0.9rem; margin: 1rem 0 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}
.social-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: var(--glow-teal);
}
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--teal); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.8rem; color: var(--text-muted); transition: color var(--transition); }
.footer-legal a:hover { color: var(--teal); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(160deg, #080E1F 0%, #0D1830 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,201,167,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,201,167,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--teal); }
.breadcrumb .sep { opacity: 0.5; }

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,10,22,0.97);
  backdrop-filter: blur(16px);
  z-index: 998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-light);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--teal); }
.mobile-nav-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-inner, .dining-inner, .location-inner { grid-template-columns: 1fr; }
  .casino-grid, .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-float-1, .hero-float-2 { display: none; }
}

@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .casino-grid, .rooms-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 2.5rem 1.5rem; }
  .hero-stats { gap: 1.5rem; }
  .section { padding: 4rem 0; }
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== AGE GATE ===== */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(5,10,22,0.97);
  backdrop-filter: blur(20px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.age-gate-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3rem;
  max-width: 460px;
  width: 100%;
  text-align: center;
}
.age-gate-box h2 { margin-bottom: 0.75rem; }
.age-gate-box p  { margin-bottom: 2rem; }
.age-gate-actions { display: flex; gap: 1rem; justify-content: center; }
