/* CSS Reset & Variables */
:root {
  --primary: #f97316;
  --primary-glow: rgba(249, 115, 22, 0.4);
  --secondary: #ea580c;
  --accent: #fdba74;
  --accent-glow: rgba(253, 186, 116, 0.3);
  --bg-start: #1a0f00;
  --bg-mid: #3d2200;
  --bg-end: #0f0800;
  --card-bg: rgba(61, 34, 0, 0.6);
  --card-border: rgba(249, 115, 22, 0.2);
  --text-light: #fff;
  --text-muted: rgba(255, 255, 255, 0.8);
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  background: linear-gradient(135deg, var(--bg-start) 0%, var(--bg-mid) 50%, var(--bg-end) 100%);
  background-attachment: fixed;
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 15, 0, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
  transition: all 0.4s ease-out;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 0 20px var(--primary-glow);
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}

.nav-menu a {
  transition: all 0.4s ease-out;
  position: relative;
}

.nav-menu a:hover {
  color: var(--primary);
}

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

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

.age-badge {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 0 15px var(--primary-glow);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 15px var(--primary-glow); }
  50% { box-shadow: 0 0 25px var(--primary-glow); }
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(26, 15, 0, 0.7), rgba(61, 34, 0, 0.7)), url('ban.jpg') center/cover;
  padding: 8rem 2rem 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, var(--primary-glow), transparent 70%);
  animation: heroGlow 3s ease-in-out infinite;
}

@keyframes heroGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px var(--primary-glow);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.3); }
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.4s ease-out;
  position: relative;
  overflow: hidden;
  font-size: 1rem;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--text-light);
  box-shadow: 0 10px 30px var(--primary-glow);
}

.btn-primary:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px var(--primary-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  transform: scale(1.03);
  box-shadow: 0 15px 40px var(--primary-glow);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Sections */
section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Glass Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.4s ease-out;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, var(--accent-glow), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease-out;
  opacity: 0;
}

.card:hover::before {
  opacity: 1;
  animation: shimmerEffect 1.5s infinite;
}

@keyframes shimmerEffect {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

.card:hover {
  transform: scale(1.03) translateY(-10px);
  box-shadow: 0 20px 60px var(--primary-glow);
  border-color: var(--primary);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.card p {
  color: var(--text-muted);
}

/* Events Section */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.event-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s ease-out;
}

.event-card:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 60px var(--primary-glow);
}

.event-image {
  height: 200px;
  background: linear-gradient(135deg, var(--bg-mid), var(--bg-end)), url('https://images.unsplash.com/photo-1511882150382-421056c89033?w=800&q=80') center/cover;
  position: relative;
}

.event-date {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 12px;
  font-weight: 700;
}

.event-content {
  padding: 2rem;
}

.event-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

/* Membership Section */
.membership-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.tier-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 2px solid var(--card-border);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease-out;
}

.tier-card:hover {
  transform: scale(1.03) translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 25px 70px var(--primary-glow);
}

.tier-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.tier-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.tier-features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.tier-features li {
  padding: 0.5rem 0;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tier-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
}

/* Form */
.email-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 2rem auto 0;
  flex-wrap: wrap;
}

.email-form input {
  flex: 1;
  min-width: 250px;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  border: 2px solid var(--card-border);
  background: var(--card-bg);
  color: var(--text-light);
  font-size: 1rem;
  transition: all 0.4s ease-out;
}

.email-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 20px var(--primary-glow);
}

.email-form button {
  flex-shrink: 0;
}

/* Location Section */
.location-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
}

.location-info {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 2.5rem;
}

.info-item {
  margin-bottom: 2rem;
}

.info-item h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.info-item p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.map-placeholder {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary);
}

/* Age Disclaimer */
.age-disclaimer {
  background: rgba(234, 88, 12, 0.1);
  border: 2px solid var(--secondary);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  margin: 4rem 0;
}

.age-disclaimer h3 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.disclaimer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  box-shadow: 0 10px 40px var(--primary-glow);
}

/* Footer */
.footer {
  background: rgba(15, 8, 0, 0.95);
  border-top: 1px solid var(--card-border);
  padding: 4rem 2rem 2rem;
  margin-top: 6rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-muted);
  transition: all 0.4s ease-out;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 50%;
  font-size: 2.5rem;
  font-weight: 700;
  box-shadow: 0 10px 40px var(--primary-glow);
  margin-bottom: 1rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--card-border);
  color: var(--text-muted);
}

/* Age Verification Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.modal.active {
  display: flex;
}

.modal-content {
  background: linear-gradient(135deg, var(--bg-start), var(--bg-mid));
  border: 2px solid var(--primary);
  border-radius: 24px;
  padding: 3rem;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 20px 80px var(--primary-glow);
  position: relative;
}

.modal-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
}

.modal-content h2 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.modal-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.modal-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Content Pages */
.content-page {
  min-height: 100vh;
  padding-top: 6rem;
}

.content-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.content-box {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 3rem;
}

.content-box h1 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.content-box h2 {
  color: var(--accent);
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
}

.content-box p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.content-box ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.content-box li {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(26, 15, 0, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 3rem;
    transition: left 0.4s ease-out;
    border-top: 1px solid var(--card-border);
  }

  .nav-menu.active {
    left: 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .card-grid,
  .events-grid,
  .membership-tiers {
    grid-template-columns: 1fr;
  }

  .email-form {
    flex-direction: column;
  }

  .email-form input {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 1rem;
  }

  .hero {
    padding: 6rem 1rem 3rem;
  }

  section {
    padding: 3rem 0;
  }

  .modal-content {
    margin: 1rem;
    padding: 2rem;
  }
}