/* Base Styles and Variables */
:root {
  /* Colors */
  --primary-bg: #1C1C1E;
  --accent-bg: #0A0A0C;
  --surface: #2A2A2D;
  --text-primary: #F4F4F5;
  --text-secondary: #A1A1AA;
  --accent-primary: #00FFF7;
  --accent-secondary: #B38FFF;
  --cta-color: #9B5DE5;
  --cta-hover: #3A86FF;
  
  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-xxl: 48px;
  
  /* Typography */
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Lato', sans-serif;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--primary-bg);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin-bottom: var(--space-md);
  letter-spacing: 1px;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 2rem;
}

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-md) 0;
}

/* Header & Navigation */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(10, 10, 12, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 255, 247, 0.1);
  transition: all 0.3s ease;
}

#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 2px;
}

.logo-text {
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.nav-links {
  display: flex;
  gap: var(--space-lg);
}

.nav-links a {
  position: relative;
  font-weight: 700;
  padding: var(--space-sm) 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.mobile-nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background-color: var(--accent-bg);
  z-index: 1001;
  padding: var(--space-xl) var(--space-md);
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-nav.active {
  right: 0;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

.mobile-nav-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav-links {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mobile-nav-links a {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.4rem;
  }
  
  .nav-links {
    gap: var(--space-md);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.7rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .container {
    width: 95%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  .mobile-nav {
    width: 85%;
  }
}
/* Footer Styles */
#footer {
  background-color: #0e0e0e;
  color: #ffffff;
  padding: 60px 20px 30px;
  font-family: 'Poppins', sans-serif;
}

#footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo {
  flex: 1 1 300px;
}

.logo-text {
  font-size: 28px;
  font-weight: 700;
  color: #ff3c6d;
  display: block;
  margin-bottom: 10px;
}

.footer-logo p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #cccccc;
}

.social-links a {
  color: #ffffff;
  font-size: 18px;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #ff3c6d;
}

.footer-links {
  display: flex;
  flex: 2 1 600px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-links-column {
  flex: 1 1 200px;
  min-width: 160px;
}

.footer-links-column h3 {
  font-size: 16px;
  color: #ff3c6d;
  margin-bottom: 15px;
  text-transform: uppercase;
}

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

.footer-links-column ul li {
  margin-bottom: 10px;
}

.footer-links-column ul li a {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links-column ul li a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #aaaaaa;
  position: relative;
}

.age-restriction {
  position: absolute;
  right: 20px;
  top: 20px;
  background: #ff3c6d;
  color: #ffffff;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 50px;
  font-size: 12px;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

/* Primary Button */
.btn-primary {
  background-color: #FF4500; /* Lava Orange or customize */
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background-color: #e63e00;
  transform: scale(1.05);
}

/* Outlined Button */
.btn-outlined {
  background: transparent;
  color: #FF4500;
  border: 2px solid #FF4500;
}

.btn-outlined:hover {
  background-color: #FF4500;
  color: #fff;
  transform: scale(1.05);
}

/* Large Button Size */
.btn-lg {
  font-size: 1.1rem;
  padding: 1rem 2.2rem;
}
