/* ============================================
   FUTURISTIC OUTDOOR CINEMA - CONTROL DECK THEME
   ============================================ */

:root {
  /* Color Palette - Control Deck Theme */
  --color-midnight: #020408;
  --color-projection-white: #F0F0FF;
  --color-photon-cyan: #00D9FF;
  --color-dark-moss: #0A0F0B;
  --color-navy-deep: #0a1a2e;
  --color-grass-black: #050505;
  
  /* Typography */
  --font-cinematic: 'Michroma', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-body: 'Tenor Sans', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  
  /* Layout */
  --radius-md: 8px;
  --radius-lg: 12px;
  --transition-fast: 0.3s ease;
  --transition-slow: 0.6s ease;
  
  /* Shadows & Effects */
  --shadow-glow: 0 0 20px rgba(0, 217, 255, 0.3);
  --shadow-lens: 0 0 40px rgba(0, 217, 255, 0.2);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--color-projection-white);
  background: linear-gradient(180deg, var(--color-navy-deep) 0%, var(--color-grass-black) 100%);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-cinematic);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(1.4rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.2rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1rem, 3vw, 1.75rem);
}

p {
  margin-bottom: var(--space-md);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
}

a {
  color: var(--color-photon-cyan);
  text-decoration: none;
  transition: all var(--transition-fast);
}

a:hover {
  color: var(--color-projection-white);
  text-shadow: 0 0 10px var(--color-photon-cyan);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-header {
  position: relative;
  padding: var(--space-md) var(--space-lg);
  background: rgba(2, 4, 8, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 217, 255, 0.1);
  z-index: 1000;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.brand-name {
  font-family: var(--font-cinematic);
  font-size: clamp(0.7rem, 2vw, 1.35rem);
  color: var(--color-projection-white);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--space-sm) var(--space-md);
  position: relative;
  display: block;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-photon-cyan);
  transition: width var(--transition-fast);
  box-shadow: var(--shadow-glow);
}

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

/* Burger Menu */
.burger-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--color-photon-cyan);
  color: var(--color-photon-cyan);
  padding: var(--space-sm) var(--space-md);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition-fast);
  order: 999;
  z-index: 1000001;
}

.burger-toggle:hover {
  background: rgba(0, 217, 255, 0.1);
  box-shadow: var(--shadow-glow);
}

.burger-toggle.active {
  background: rgba(0, 217, 255, 0.2);
}

/* Mobile Navigation */
@media (max-width: 1023px) {
  .burger-toggle {
    display: block;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(2, 4, 8, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: var(--space-lg);
    gap: var(--space-md);
    border-top: 1px solid rgba(0, 217, 255, 0.1);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all var(--transition-slow);
    z-index: 999;
  }
  
  .nav-menu.active {
    max-height: 500px;
    opacity: 1;
  }
  
  .nav-menu li {
    width: 100%;
  }
  
  .nav-menu a {
    display: block;
    padding: var(--space-md);
    border-bottom: 1px solid rgba(0, 217, 255, 0.05);
  }
}

/* ============================================
   MAIN CONTENT AREA
   ============================================ */

main {
  min-height: calc(100vh - 200px);
}

/* ============================================
   FULL-WIDTH BANNER SECTIONS
   ============================================ */

.hero-banner {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.4;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(2, 4, 8, 0.7) 0%, rgba(2, 4, 8, 0.9) 100%);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.banner-content h1 {
  color: var(--color-projection-white);
  text-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
  margin-bottom: var(--space-lg);
}

.banner-content p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(240, 240, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================
   SECTION STYLES
   ============================================ */

.content-section {
  padding: var(--space-xxl) var(--space-lg);
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.section-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--space-md);
}

@media (min-width: 640px) {
  .section-container {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: var(--space-lg);
  }
}

@media (min-width: 768px) {
  .section-container {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .section-container {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
  }
}

.section-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  justify-content: center;
  width: 100%;
  max-width: 600px;
  text-align: left;
}

@media (min-width: 768px) {
  .section-content {
    text-align: left;
  }
}

.section-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  min-width: 280px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lens);
  margin: 0 auto;
  justify-self: center;
  align-self: center;
}

.section-image-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
  animation: lensFlare 8s infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes lensFlare {
  0%, 100% { transform: rotate(0deg) translate(0, 0); }
  50% { transform: rotate(180deg) translate(20px, 20px); }
}

.section-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section-title {
  color: var(--color-photon-cyan);
  margin-bottom: var(--space-lg);
  text-align: center;
  width: 100%;
}

.section-text {
  text-align: left;
  color: rgba(240, 240, 255, 0.8);
}

.section-content.text-center .section-text,
.text-center .section-text {
  text-align: center;
}

@media (max-width: 768px) {
  .section-text {
    text-align: center;
  }
}

/* Alternating Layout */
.section-alternate .section-container {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .section-alternate .section-container {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  }
}

@media (min-width: 768px) {
  .section-alternate .section-container {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
  }
  
  .section-alternate:nth-child(even) .section-image-wrapper {
    order: -1;
  }
}

@media (min-width: 1024px) {
  .section-alternate .section-container {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
  }
}

/* ============================================
   GRID LAYOUTS
   ============================================ */

.grid-two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: var(--space-lg);
  justify-items: center;
  align-items: start;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.grid-three {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: var(--space-lg);
  justify-items: center;
  align-items: start;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.grid-four {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: var(--space-lg);
  justify-items: center;
  align-items: start;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (min-width: 640px) {
  .grid-two {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  }
  
  .grid-three {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  }
  
  .grid-four {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  }
}

@media (min-width: 1024px) {
  .grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .grid-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ============================================
   BUTTONS & CTAs
   ============================================ */

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-photon-cyan);
  background: transparent;
  border: 1px solid var(--color-photon-cyan);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  text-decoration: none;
  margin-top: 10px;
}

.btn:hover {
  background: rgba(0, 217, 255, 0.1);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
  color: white;
}

.btn-primary {
  background: rgba(0, 217, 255, 0.1);
  border-color: var(--color-photon-cyan);
}

.btn-primary:hover {
  background: rgba(0, 217, 255, 0.2);
  color: white;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: var(--space-xl);
  background: rgba(2, 4, 8, 0.5);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-sm);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--color-photon-cyan);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-md);
  background: rgba(10, 15, 11, 0.5);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: var(--radius-md);
  color: var(--color-projection-white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-photon-cyan);
  box-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.3rem;
  cursor: pointer;
}

.checkbox-group label {
  margin-bottom: 0;
  font-size: 0.85rem;
  text-transform: none;
  cursor: pointer;
}

/* ============================================
   PRODUCTS
   ============================================ */

.product-card {
  background: rgba(2, 4, 8, 0.5);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-fast);
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  justify-self: center;
  align-self: start;
}

.product-card:hover {
  border-color: var(--color-photon-cyan);
  box-shadow: var(--shadow-glow);
  transform: translateY(-5px);
}

.product-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.product-title {
  color: var(--color-photon-cyan);
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
}

.product-price {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--color-projection-white);
  margin-top: var(--space-md);
}

/* ============================================
   MAPS
   ============================================ */

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 217, 255, 0.2);
  margin: var(--space-xl) 0;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

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

.site-footer {
  background: var(--color-dark-moss);
  padding: var(--space-xl) var(--space-lg);
  border-top: 1px solid rgba(0, 217, 255, 0.1);
  margin-top: var(--space-xxl);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: var(--space-xl);
  justify-items: start;
  width: 100%;
  padding: 0 var(--space-md);
}

@media (min-width: 640px) {
  .footer-container {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  }
}

.footer-section h3 {
  font-size: 1rem;
  color: var(--color-photon-cyan);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.footer-menu li {
  margin-bottom: var(--space-sm);
}

.footer-menu a {
  font-size: 0.9rem;
  color: rgba(240, 240, 255, 0.7);
}

.footer-menu a:hover {
  color: var(--color-photon-cyan);
}

.footer-info {
  font-size: 0.85rem;
  color: rgba(240, 240, 255, 0.6);
  line-height: 1.8;
}

.copyright {
  text-align: center;
  padding-top: var(--space-lg);
  margin-top: var(--space-lg);
  border-top: 1px solid rgba(0, 217, 255, 0.1);
  color: rgba(240, 240, 255, 0.5);
  font-size: 0.85rem;
}

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

.text-center {
  text-align: center;
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.date {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: rgba(240, 240, 255, 0.6);
}

/* ============================================
   PRIVACY POPUP
   ============================================ */

.privacy-popup {
  position: fixed;
  bottom: var(--space-lg);
  left: var(--space-lg);
  right: var(--space-lg);
  max-width: 500px;
  background: rgba(2, 4, 8, 0.95);
  border: 1px solid var(--color-photon-cyan);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  z-index: 10000;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lens);
  display: none;
}

.privacy-popup.active {
  display: block;
}

.privacy-popup p {
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
}

.privacy-popup-buttons {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

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

@media (max-width: 768px) {
  .content-section {
    padding: var(--space-xl) var(--space-md);
  }
  
  .section-container {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding: 0 var(--space-sm);
  }
  
  .section-content {
    max-width: 100%;
    text-align: center;
  }
  
  .section-image-wrapper {
    max-width: 100%;
    min-width: auto;
  }
  
  .hero-banner {
    min-height: 50vh;
  }
  
  .banner-content {
    padding: var(--space-lg) var(--space-md);
  }
  
  .contact-form {
    padding: var(--space-lg);
    max-width: 100%;
  }
  
  .grid-two,
  .grid-three,
  .grid-four {
    grid-template-columns: 1fr;
    padding: 0 var(--space-sm);
  }
  
  .product-card {
    max-width: 100%;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  
  .privacy-popup {
    left: var(--space-md);
    right: var(--space-md);
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .site-header {
    padding: var(--space-sm) var(--space-md);
  }
  
  .content-section {
    padding: var(--space-lg) var(--space-sm);
  }
  
  .section-container {
    padding: 0;
    gap: var(--space-md);
  }
  
  .section-content {
    padding: 0 var(--space-sm);
  }
  
  .section-image-wrapper {
    max-width: 100%;
  }
  
  .grid-two,
  .grid-three,
  .grid-four {
    gap: var(--space-md);
    padding: 0;
  }
  
  .product-card {
    padding: var(--space-md);
  }
  
  .hero-banner {
    min-height: 40vh;
  }
  
  .banner-content {
    padding: var(--space-md) var(--space-sm);
  }
}


