/* ========================================================================== */
/* CSS CUSTOM PROPERTIES - Color Palette & Typography */
/* ========================================================================== */

:root {
  /* Color Palette */
  --primary-purple: #2D1B5B;
  --secondary-purple: #1A0D3D;
  --dark-charcoal: #2A2A2A;
  --deep-black: #0D0D0D;
  --cyan-primary: #00D4E5;
  --cyan-secondary: #0099B5;
  --gold-accent: #FFD700;
  --white: #FFFFFF;
  --light-gray: #E0E0E0;
  --medium-gray: #B0B0B0;
  --border-gray: #555555;
  
  /* Typography */
  --font-family: 'Montserrat', sans-serif;
  --font-weight-regular: 400;
  --font-weight-semi-bold: 600;
  --font-weight-bold: 700;
  
  /* Font Sizes */
  --font-size-hero: 48px;
  --font-size-section: 36px;
  --font-size-body: 16px;
  --font-size-small: 14px;
  --font-size-micro: 12px;
  
  /* Mobile Font Sizes */
  --font-size-hero-mobile: 32px;
  --font-size-section-mobile: 24px;
  
  /* Responsive Breakpoints */
  --breakpoint-tablet: 768px;
  --breakpoint-desktop: 1200px;
}

/* ========================================================================== */
/* BASE STYLES & TYPOGRAPHY */
/* ========================================================================== */

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-body);
  line-height: 1.6;
  color: var(--white);
  background-color: var(--deep-black);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  margin: 0 0 1rem 0;
}

h1 {
  font-size: var(--font-size-hero);
}

h2 {
  font-size: var(--font-size-section);
}

h3 {
  font-size: 24px;
}

p {
  margin: 0 0 1rem 0;
}

a {
  color: var(--cyan-primary);
  text-decoration: none;
}

a:hover {
  color: var(--cyan-secondary);
}

/* ========================================================================== */
/* AGE VERIFICATION MODAL */
/* ========================================================================== */

.age-verification-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.age-verification-modal.hidden {
  opacity: 0;
  pointer-events: none;
}

.modal-content {
  background: var(--white);
  color: var(--deep-black);
  padding: 2rem;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modal-content h2 {
  color: var(--primary-purple);
  margin-bottom: 1.5rem;
  font-size: 28px;
}

.modal-content p {
  margin-bottom: 1rem;
  font-size: 16px;
  line-height: 1.5;
}

.age-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.btn-confirm, .btn-deny {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-family: var(--font-family);
  font-weight: var(--font-weight-semi-bold);
  font-size: 16px;
  cursor: pointer;
  min-width: 180px;
}

.btn-confirm {
  background: linear-gradient(45deg, var(--cyan-primary), var(--cyan-secondary));
  color: var(--white);
}

.btn-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 212, 229, 0.3);
}

.btn-deny {
  background: var(--medium-gray);
  color: var(--deep-black);
}

.btn-deny:hover {
  background: var(--border-gray);
  color: var(--white);
}

.warning-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: #ff6b6b;
  font-size: 18px;
  font-weight: var(--font-weight-bold);
}

.warning-icons i {
  font-size: 20px;
}

/* ========================================================================== */
/* HERO BANNER */
/* ========================================================================== */

.hero-banner {
  position: relative;
  height: 500px;
  max-height: 500px;
  background: radial-gradient(circle at center, var(--primary-purple) 0%, var(--secondary-purple) 50%, var(--deep-black) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2rem;
}

.brand-corner {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  color: var(--cyan-primary);
  letter-spacing: 2px;
  z-index: 100;
}

.hero-content {
  text-align: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  z-index: 50;
  position: relative;
  padding: 1rem 0;
}

.hero-content h1 {
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 1rem;
  color: var(--light-gray);
  line-height: 1.4;
}

.luxor-brand {
  margin: 1rem 0;
}

.luxor-brand img {
  height: 5rem;
}

.cta-button {
  background: linear-gradient(45deg, var(--cyan-primary), var(--cyan-secondary));
  color: var(--white);
  border: none;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  border-radius: 50px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 212, 229, 0.4);
}

/* ========================================================================== */
/* 3D FLOATING ELEMENTS */
/* ========================================================================== */

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.coin, .geometric-shape {
  position: absolute;
  border-radius: 50%;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

/* Gold Coins */
.coin {
  background: linear-gradient(45deg, var(--gold-accent), #FFA500, var(--gold-accent));
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  border: 2px solid #FFE55C;
}

.coin-1 { width: 45px; height: 45px; top: 10%; left: 10%; animation: floatRotate 4s infinite; }
.coin-2 { width: 55px; height: 55px; top: 20%; right: 15%; animation: floatRotate 5s infinite reverse; }
.coin-3 { width: 50px; height: 50px; top: 60%; left: 5%; animation: floatRotate 6s infinite; }
.coin-4 { width: 60px; height: 60px; top: 70%; right: 20%; animation: floatRotate 4.5s infinite reverse; }
.coin-5 { width: 65px; height: 65px; top: 40%; left: 80%; animation: floatRotate 5.5s infinite; }
.coin-6 { width: 48px; height: 48px; top: 80%; left: 70%; animation: floatRotate 3.5s infinite reverse; }
.coin-7 { width: 52px; height: 52px; top: 30%; left: 25%; animation: floatRotate 7s infinite; }
.coin-8 { width: 70px; height: 70px; top: 50%; right: 5%; animation: floatRotate 6.5s infinite reverse; }

/* Geometric Shapes */
.geometric-shape {
  border-radius: 0;
  background: linear-gradient(45deg, var(--cyan-primary), var(--cyan-secondary));
  box-shadow: 0 0 15px rgba(0, 212, 229, 0.3);
}

.shape-1 { width: 30px; height: 30px; top: 15%; left: 60%; transform: rotate(45deg); }
.shape-2 { width: 35px; height: 35px; top: 75%; left: 40%; transform: rotate(0deg);  }
.shape-3 { width: 28px; height: 28px; top: 25%; right: 40%; transform: rotate(30deg); }
.shape-4 { width: 32px; height: 32px; top: 85%; right: 60%; transform: rotate(60deg); }
.shape-5 { width: 38px; height: 38px; top: 45%; left: 15%; transform: rotate(90deg); }
.shape-6 { width: 40px; height: 40px; top: 65%; right: 80%; transform: rotate(120deg); }

@keyframes floatRotate {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(90deg); }
  50% { transform: translateY(-10px) rotate(180deg); }
  75% { transform: translateY(-30px) rotate(270deg); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================================================== */
/* SECONDARY BANNER */
/* ========================================================================== */

.secondary-banner {
  height: 120px;
  background: linear-gradient(135deg, var(--dark-charcoal), var(--secondary-purple));
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
  border-top: 2px solid var(--border-gray);
  border-bottom: 2px solid var(--border-gray);
}

.secondary-banner-content {
  display: flex;
  align-items: center;
  max-width: 1200px;
  width: 100%;
}

.logo-section {
  flex: 0 0 200px;
}

.logo-section img { 
  height: 4rem;
}

.promo-section {
  flex: 1;
  padding: 0 2rem;
  text-align: center;
}

.promo-section h3 {
  font-size: 18px;
  font-weight: var(--font-weight-semi-bold);
  margin-bottom: 0.5rem;
  color: var(--white);
}

.star-rating {
  color: var(--gold-accent);
  font-size: 20px;
}

.cta-section {
  flex: 0 0 200px;
  text-align: right;
}

.cta-section .cta-button {
  padding: 12px 24px;
  font-size: 16px;
}

/* ========================================================================== */
/* CONTACT SECTION */
/* ========================================================================== */

.contact-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--dark-charcoal), var(--deep-black));
}

.contact-section-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--white);
  font-size: var(--font-size-section);
}

.contact-form {
  display: grid;
  gap: 2rem;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: var(--font-weight-semi-bold);
  color: var(--light-gray);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-gray);
  border-radius: 8px;
  background: var(--dark-charcoal);
  color: var(--white);
  font-family: var(--font-family);
  font-size: var(--font-size-body);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan-primary);
  box-shadow: 0 0 0 3px rgba(0, 212, 229, 0.1);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #ff6b6b;
}

.error-message {
  display: block;
  color: #ff6b6b;
  font-size: var(--font-size-small);
  margin-top: 0.5rem;
  opacity: 0;
}

.error-message.show {
  opacity: 1;
}

.submit-button {
  background: linear-gradient(45deg, var(--cyan-primary), var(--cyan-secondary));
  color: var(--white);
  border: none;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 56px;
}

.submit-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 212, 229, 0.3);
}

.submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ========================================================================== */
/* FOOTER */
/* ========================================================================== */

.main-footer {
  background: var(--deep-black);
  border-top: 2px solid var(--border-gray);
  padding: 3rem 2rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.legal-section h3 {
  color: var(--cyan-primary);
  margin-bottom: 1.5rem;
  font-size: 24px;
}

.legal-text {
  margin-bottom: 2rem;
  line-height: 1.7;
  color: var(--light-gray);
}

.legal-text p {
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: var(--font-size-small);
  color: var(--medium-gray);
}

.certifications {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 1rem;
  flex-wrap: wrap;
}

.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
  flex: 0 0 auto;
}

.cert-item img {
  max-width: 100%;
  height: auto;
  max-height: 40px;
  object-fit: contain;
}

/* ========================================================================== */
/* RESPONSIVE DESIGN */
/* ========================================================================== */

/* Tablet Styles */
@media (max-width: 1199px) {
  .hero-banner {
    height: 400px;
    max-height: 400px;
  }
  
  .brand-corner {
    top: 0.8rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
  }
  
  .hero-content h1 {
    font-size: 28px;
    margin-bottom: 0.8rem;
  }
  
  .hero-content p {
    font-size: 14px;
    margin-bottom: 0.8rem;
  }
  
  .luxor-brand {
    font-size: 36px;
    margin: 0.8rem 0;
  }
  
  .cta-button {
    padding: 10px 24px;
    font-size: 14px;
  }
  
  .secondary-banner {
    height: auto;
    padding: 1.5rem;
    text-align: center;
  }
  
  .secondary-banner-content {
    flex-direction: column;
  }
  
  .logo-section, .cta-section {
    flex: none;
  }
  
  .promo-section {
    padding: 1rem 0;
  }
  
  .footer-content {
    gap: 2rem;
  }
  
  .certifications {
    gap: 0.8rem;
  }
  
  .cert-item {
    padding: 0.8rem;
  }
  
  .cert-item img {
    max-height: 30px;
  }
}

/* Mobile Styles */
@media (max-width: 767px) {
  :root {
    --font-size-hero: var(--font-size-hero-mobile);
    --font-size-section: var(--font-size-section-mobile);
  }
  
  .hero-banner {
    padding: 1rem 1rem 0.5rem 1rem;
    height: 350px;
    max-height: 350px;
  }
  
  .brand-corner {
    top: 0.3rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
  }
  
  .hero-content h1 {
    font-size: 22px;
    margin-bottom: 0.6rem;
  }
  
  .hero-content p {
    font-size: 14px;
    margin-bottom: 0.6rem;
  }
  
  .luxor-brand {
    font-size: 28px;
    margin: 0.6rem 0;
  }
  
  .cta-button {
    padding: 8px 20px;
    font-size: 14px;
  }
  
  .floating-elements .coin,
  .floating-elements .geometric-shape {
    transform: scale(0.7);
  }
  
  /* Hide half of the floating elements on mobile */
  .coin-2, .coin-4, .coin-6, .coin-8,
  .shape-2, .shape-6 {
    display: none;
  }
  
  .secondary-banner {
    padding: 1rem;
  }
  
  .promo-section h3 {
    font-size: 14px;
  }
  
  .contact-section {
    padding: 2rem 1rem;
  }
  
  .modal-content {
    padding: 1.5rem;
    margin: 1rem;
  }
  
  .age-buttons {
    flex-direction: column;
  }
  
  .btn-confirm, .btn-deny {
    min-width: auto;
    width: 100%;
  }
  
  .main-footer {
    padding: 2rem 1rem 1rem;
  }
  
  .certifications {
    gap: 0.5rem;
    justify-content: space-between;
  }
  
  .cert-item {
    padding: 0.5rem;
    flex: 1 1 calc(50% - 0.25rem);
    max-width: calc(50% - 0.25rem);
  }
  
  /* Keep half of the floating elements hidden on very small mobile */
  .coin-2, .coin-4, .coin-6, .coin-8,
  .shape-2, .shape-6 {
    display: none;
  }
  
  .cert-item img {
    max-height: 60px;
  }
}

/* Very Small Mobile */
@media (max-width: 480px) {
  .hero-banner {
    height: 300px;
    max-height: 300px;
    padding: 0.5rem;
  }
  
  .hero-content h1 {
    font-size: 18px;
    margin-bottom: 0.5rem;
  }
  
  .hero-content p {
    font-size: 12px;
    margin-bottom: 0.5rem;
  }
  
  .luxor-brand {
    font-size: 24px;
    margin: 0.5rem 0;
  }
  
  .cta-button {
    padding: 6px 16px;
    font-size: 12px;
  }
  
  .floating-elements .coin,
  .floating-elements .geometric-shape {
    transform: scale(0.5);
  }
  
  .promo-section h3 {
    font-size: 12px;
  }
  
  .certifications {
    gap: 0.3rem;
    flex-direction: column;
  }
  
  .cert-item {
    padding: 0.3rem;
    flex: none;
    max-width: none;
    width: 100%;
    flex-direction: row;
    justify-content: center;
  }
  
  .cert-item img {
    max-height: 35px;
  }
}

/* ========================================================================== */
/* UTILITY CLASSES */
/* ========================================================================== */

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========================================================================== */
/* PERFORMANCE OPTIMIZATIONS */
/* ========================================================================== */

.hero-banner,
.floating-elements,
.coin,
.geometric-shape {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .cta-button:hover,
  .cert-item:hover,
  .submit-button:hover {
    transform: none;
  }
} 