/* ======================================
   CSS VARIABLES - Extasia Website
   ====================================== */

/* Import Local Fonts */
@import url('fonts.css');

:root {
  /* Primary Colors */
  --color-primary: #d84b7a;
  --color-primary-dark: #c23866;
  --color-primary-light: #f7b5d1;
  
  /* Background Colors */
  --color-bg-main: #fce4ec;
  --color-bg-light: #fff0f5;
  --color-bg-white: #ffffff;
  --color-bg-section: #ffe4f0;
  
  /* Text Colors */
  --color-text-primary: #333333;
  --color-text-secondary: #666666;
  --color-text-light: #ffffff;
  --color-text-muted: #999999;
  
  /* Accent Colors */
  --color-accent: #e91e63;
  --color-heart: #d84b7a;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;
  
  /* Font Sizes */
  --font-size-base: 16px;
  --font-size-small: 0.875rem;
  --font-size-medium: 1rem;
  --font-size-large: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-xxl: 2rem;
  --font-size-hero: 3.045rem;
  
  /* Font Weights */
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Line Heights */
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.8;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-round: 50%;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
  --shadow-card: 0 4px 12px rgba(216, 75, 122, 0.15);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Container Widths */
  --container-max: 1200px;
  --container-padding: 2rem;
  
  /* Header Heights */
  --header-height: 80px;
  --mobile-header-height: 70px;
  
  /* Grid */
  --grid-gap: 2rem;
  --grid-columns: 4;
}

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

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

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--color-text-primary);
  background: url('../images/seemless-bg.jpg') repeat-y center top;
  background-size: 100% auto;
  line-height: var(--line-height-normal);
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: -1;
  pointer-events: none;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-semibold);
  text-align: center;
  transition: var(--transition-normal);
}

.btn:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.section {
  padding: var(--spacing-xxl) 0;
}

.section-title {
  font-family: 'Imperial Script', 'Brush Script MT', cursive;
  font-size: var(--font-size-hero);
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--spacing-xl);
  position: relative;
  font-weight: var(--font-weight-regular);
}

.section-title::before,
.section-title::after {
  content: '◆';
  position: absolute;
  color: var(--color-primary-light);
  font-size: var(--font-size-large);
  top: 50%;
  transform: translateY(-50%);
}

.section-title::before {
  left: 10%;
}

.section-title::after {
  right: 10%;
}

/* ======================================
   HEADER - REMOVED (Logo moved to Hero)
   ====================================== */

/* ======================================
   HERO SECTION
   ====================================== */

.hero {
  position: relative;
  min-height: 50vh;
}

.hero .container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo-img {
  margin-top: 80px;
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: var(--spacing-md);
}

.hero-title {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(3.5rem, 10vw, 7rem);
  color: #feef01;
  margin-bottom: var(--spacing-sm);
  margin-top: 0;
  line-height: var(--line-height-tight);
  font-weight: 700;
  text-shadow: 3px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  color: var(--color-text-light);
  margin-bottom: var(--spacing-lg);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-bottom: 50px;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  color: var(--color-text-light);
  margin-bottom: var(--spacing-lg);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-cta {
  padding: 1rem 2.5rem;
  font-size: var(--font-size-large);
}

/* ======================================
   SECTION HEADINGS
   ====================================== */

.section-heading {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(3rem, 8vw, 5em);
  color: #feef01;
  text-align: center;
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 700;
  text-shadow: 3px 1px 2px rgba(0, 0, 0, 0.5);
}

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

.products {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.shop-title {
  font-family: 'Carattere', cursive;
  font-size: var(--font-size-hero);
  color: #99535a;
  line-height: 1.2;
  font-weight: var(--font-weight-regular);
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
  position: relative;
}

/* ======================================
   CINEMA SECTION
   ====================================== */

.cinema {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 4rem;
  text-align: center;
}

.cinema-title {
  font-family: 'Carattere', cursive;
  font-size: var(--font-size-hero);
  color: #99535a;
  line-height: 1.2;
  font-weight: var(--font-weight-regular);
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
  position: relative;
}

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

.footer {
  background: transparent;
  padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-xxl);
  margin-bottom: var(--spacing-xl);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.footer-section {
  background: var(--color-bg-white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.footer-title {
  font-family: 'Imperial Script', 'Brush Script MT', cursive;
  font-size: var(--font-size-xxl);
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-weight-regular);
}

.footer-address {
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.footer-address p {
  margin-bottom: 0.5rem;
}

.footer-address strong {
  color: var(--color-text-primary);
  font-weight: var(--font-weight-semibold);
}

.footer-map {
  margin-bottom: var(--spacing-md);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.footer-directions {
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.footer-directions p {
  margin-bottom: 0.5rem;
}

.footer-directions strong {
  color: var(--color-text-primary);
  font-weight: var(--font-weight-semibold);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--color-primary-light);
  color: var(--color-text-secondary);
  font-size: var(--font-size-small);
  max-width: 1000px;
  margin: 0 auto;
}

.footer-bottom p {
  margin: 0;
}

.contact-label {
  margin-top: 1.5rem;
}

.contact-link {
  color: var(--color-primary);
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-hours {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
  position: relative;
}

.contact-hours::after {
  content: '♥';
  position: absolute;
  bottom: -20px;
  right: 30px;
  font-size: 3rem;
  color: rgba(216, 75, 122, 0.3);
  transform: rotate(-15deg);
}

.contact-hours-text {
  font-family: 'Carattere', cursive;
  font-size: var(--font-size-hero);
  color: #99535a;
  line-height: 1.2;
  font-weight: var(--font-weight-regular);
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
}

.contact-closed {
  color: var(--color-primary);
  font-style: italic;
}

/* ======================================
   KABINEN SECTION
   ====================================== */

.kabinen {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.kabinen-title {
  font-family: 'Carattere', cursive;
  font-size: var(--font-size-hero);
  color: #99535a;
  line-height: 1.2;
  font-weight: var(--font-weight-regular);
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
  position: relative;
}

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

.contact {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

/* ======================================
   WEGBESCHREIBUNG SECTION
   ====================================== */

.wegweiser {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.wegweiser-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xl);
  width: 100%;
}

.wegweiser-address {
  font-family: 'Carattere', cursive;
  font-size: var(--font-size-hero);
  color: #99535a;
  line-height: 1.4;
  font-weight: var(--font-weight-regular);
  text-align: center;
  max-width: 1000px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
}

.wegweiser-map {
  width: 100%;
  max-width: 1200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.wegweiser-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

.wegweiser-phone {
  font-family: 'Carattere', cursive;
  font-size: 2.5rem;
  color: #99535a;
  text-align: center;
  margin-top: var(--spacing-md);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
}

.wegweiser-phone a {
  color: #99535a;
  text-decoration: none;
  transition: var(--transition-normal);
}

.wegweiser-phone a:hover,
.wegweiser-phone a:active {
  color: #feef01;
}

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

@media (max-width: 1024px) {
  :root {
    --container-padding: 1.5rem;
    --grid-gap: 1.5rem;
    --font-size-hero: 2.5rem;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-title::before,
  .section-title::after {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
    --grid-gap: 1rem;
    --font-size-hero: 2rem;
    --font-size-xxl: 1.75rem;
  }

  .hero {
    min-height: 40vh;
  }

  .hero-logo-img {
    max-width: 280px;
  }

  .products,
  .cinema,
  .kabinen,
  .contact,
  .wegweiser {
    padding-top: 3rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cinema-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .footer-section {
    padding: var(--spacing-md);
  }
}

@media (max-width: 480px) {
  :root {
    --font-size-hero: 1.75rem;
    --font-size-xxl: 1.5rem;
    --font-size-xl: 1.25rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .btn {
    width: 100%;
  }
}
