/*
Theme Name: Sportnahrung by Miju
Theme URI: http://sportnahrung-by-miju.de
Author: Roman Misslin
Description: Premium Landing Page für Sportnahrung by Miju in Trier & Luxemburg
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sportnahrung-miju
*/

:root {
    /* Color Palette */
    --bg-dark: #070708;
    --bg-darker: #0c0c0e;
    --bg-card: #141418;
    --bg-card-hover: #1b1b22;
    
    --primary: #FF6A00;
    --primary-hover: #e55f00;
    --primary-light: rgba(255, 106, 0, 0.15);
    --primary-rgb: 255, 106, 0;
    
    --text-white: #ffffff;
    --text-main: #e2e2e9;
    --text-muted: #8e8e9a;
    --text-dark: #070708;
    
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 106, 0, 0.3);
    
    --glass-bg: rgba(12, 12, 14, 0.75);
    --glass-border: rgba(255, 255, 255, 0.06);
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-premium: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 25px rgba(255, 106, 0, 0.2);
}

/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    background: none;
    border: none;
    color: inherit;
}

button {
    cursor: pointer;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-main);
}

/* Helper Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 30%, #FFAE73 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-center { text-align: center; }
.section-padding { padding: 100px 0; }
.bg-darker { background-color: var(--bg-darker); }

/* ==========================================================================
   LAYOUT STRUCTURE
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.grid {
    display: grid;
    gap: 30px;
}

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

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

@media (max-width: 992px) {
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-2 { grid-template-columns: 1fr; }
    .section-padding { padding: 70px 0; }
}

@media (max-width: 576px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 106, 0, 0.4);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 18px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: rgba(255, 106, 0, 0.1);
    color: var(--primary);
    border: 1px solid rgba(255, 106, 0, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.badge-orange {
    background-color: rgba(255, 106, 0, 0.15);
    border-color: rgba(255, 106, 0, 0.3);
}

/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10000;
  border-top: 3px solid #FF6A00;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
	gap: 15px;
}

.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
  min-width: 280px;
}

.cookie-icon { font-size: 32px; flex-shrink: 0; }

.cookie-text h3 { font-size: 16px; color: #1a1a2e; margin-bottom: 4px; }
.cookie-text p { font-size: 13px; color: #666; line-height: 1.5; }

.cookie-actions {
  display: grid;
  gap: 10px;
  flex-shrink: 0;
	margin: 0 auto;
}

/* Buttons */
.btn {
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-accept {
  background: #FF6A00;
  color: white;
}
.btn-accept:hover { 
	background: #1d4ed8; 
}

.btn-reject {
  background: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
}
.btn-reject:hover { background: #e5e7eb; }

.btn-prefs {
  background: transparent;
  color: #374151;
  border: 1px solid #FF6A00;
}
.btn-prefs:hover { background: #eff6ff; }

/* Preferences Modal */
.prefs-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.prefs-modal {
  background: white;
  border-radius: 16px;
  width: 90%;
  max-width: 480px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.prefs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #e5e7eb;
}

.prefs-header h3 { font-size: 18px; color: #1a1a2e; }

.prefs-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  line-height: 1;
}
.prefs-close:hover { color: #333; }

.prefs-body { padding: 16px 24px; }

.pref-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}
.pref-item:last-child { border-bottom: none; }

.pref-info { flex: 1; margin-right: 16px; }
.pref-info strong { display: block; font-size: 14px; color: #1a1a2e; margin-bottom: 2px; }
.pref-info p { font-size: 13px; color: #888; margin: 0; }

/* Toggle switch */
.toggle {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}
.toggle input { opacity: 0; width: 0; height: 0; }
.slider {
  position: absolute;
  inset: 0;
  background: #d1d5db;
  border-radius: 26px;
  cursor: pointer;
  transition: background 0.3s;
}
.slider::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.toggle input:checked + .slider { background: #FF6A00; }
.toggle input:checked + .slider::before { transform: translateX(22px); }
.toggle.disabled .slider { background: #93c5fd; cursor: not-allowed; }
.toggle.disabled .slider::before { transform: translateX(22px); }

.prefs-footer {
  padding: 16px 24px;
  border-top: 1px solid #e5e7eb;
  text-align: right;
}

.hidden { display: none !important; }

/* Status toast */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #059669;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.3);
  animation: slideInRight 0.3s ease, fadeOut 0.3s ease 2.5s forwards;
  z-index: 10002;
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeOut {
  to { opacity: 0; transform: translateY(-10px); }
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: transparent;
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: all var(--transition-normal);
}

.main-header.scrolled {
    background-color: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    height: 70px;
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: flex;
    align-items: center;
    height: 100%;
}

.header-logo {
    max-height: 50px;
    width: auto;
    transition: max-height var(--transition-normal);
}

.main-header.scrolled .header-logo {
    max-height: 42px;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
    color: var(--text-muted);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width var(--transition-normal);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-white);
}

.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    color: var(--text-white);
    padding: 8px;
    z-index: 1100;
}

.mobile-menu-toggle .menu-icon-close {
    display: none;
}

/* Mobile Nav Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-cta {
        display: none;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--bg-darker);
        border-left: 1px solid var(--border);
        padding: 100px 30px 40px;
        transition: right var(--transition-normal);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    .main-nav.open {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 24px;
    }
    
    .nav-link {
        font-size: 1.15rem;
        display: block;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    body.menu-open .menu-icon-open {
        display: none;
    }
    
    body.menu-open .menu-icon-close {
        display: block;
    }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: radial-gradient(circle at 80% 20%, rgba(255, 106, 0, 0.08) 0%, transparent 50%),
                      radial-gradient(circle at 10% 80%, rgba(255, 106, 0, 0.04) 0%, transparent 40%);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    flex-grow: 1;
}

.hero-content {
    max-width: 780px;
    margin-top: auto;
    margin-bottom: auto;
}

.hero-lead {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 4rem;
}

@media (max-width: 576px) {
    .hero-actions {
        flex-direction: column;
    }
    .hero-lead {
        font-size: 1.05rem;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid var(--border);
    padding-top: 30px;
    margin-top: auto;
}

.stat-card {
    text-align: left;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ==========================================================================
   SECTION HEADER
   ========================================================================== */
.section-header {
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ==========================================================================
   HIGHLIGHTS SECTION
   ========================================================================== */
.highlight-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.highlight-card:hover {
    background-color: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background-color: rgba(255, 106, 0, 0.1);
    color: var(--primary);
    margin-bottom: 20px;
}

.highlight-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.highlight-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ==========================================================================
   STORE / GALLERY SECTION
   ========================================================================== */
.store-features-list {
    margin: 25px 0 35px;
}

.store-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.icon-check {
    width: 18px;
    height: 18px;
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.carousel-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border);
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 500;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(12, 12, 14, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 10;
}

.carousel-control:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
    box-shadow: 0 0 15px rgba(255, 106, 0, 0.4);
}

.carousel-control.prev { left: 16px; }
.carousel-control.next { right: 16px; }

.carousel-indicators {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.indicator.active {
    background-color: var(--primary);
    transform: scale(1.2);
    box-shadow: 0 0 8px var(--primary);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background-color: rgba(255, 106, 0, 0.1);
    color: var(--primary);
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-features {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    margin-top: auto;
}

.service-features li {
    font-size: 0.85rem;
    color: var(--text-main);
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '•';
    color: var(--primary);
    font-size: 1.2rem;
    position: absolute;
    left: 4px;
    top: -2px;
}

/* Featured Card */
.service-card.featured {
    background-color: #18181f;
    border-color: rgba(255, 106, 0, 0.25);
    box-shadow: 0 10px 40px -15px rgba(0, 0, 0, 0.8);
}

.service-card.featured::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--primary);
    opacity: 0.3;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.service-card.featured:hover::after {
    opacity: 0.6;
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary);
    color: var(--text-white);
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.services-footer {
    margin-top: 60px;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 30px;
}

.services-footer p {
    font-weight: 500;
    margin-bottom: 15px;
}

/* ==========================================================================
   ABOUT COACH SECTION
   ========================================================================== */
.about-image {
    display: flex;
    justify-content: center;
}

.image-wrapper-bordered {
    position: relative;
    border-radius: 50%;
    padding: 10px;
    background: linear-gradient(135deg, var(--border) 0%, var(--primary) 100%);
    box-shadow: var(--shadow-premium);
    max-width: 420px;
}

.coach-profile-img {
    border-radius: 50%;
    border: 4px solid var(--bg-dark);
    display: block;
    width: 100%;
}

.about-text .lead {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-white);
}

.quote-box {
    margin-top: 30px;
    padding-left: 20px;
    border-left: 4px solid var(--primary);
    background-color: rgba(255, 106, 0, 0.04);
    padding: 20px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.quote-text {
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-white);
    margin-bottom: 8px;
}

.quote-author {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    background-color: rgba(255, 106, 0, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
}

.contact-text .label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-text .value {
    color: var(--text-white);
    font-weight: 500;
    margin-bottom: 0;
}

.contact-text .value a:hover {
    color: var(--primary);
}

.map-link {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    display: inline-block;
    margin-top: 4px;
}

.map-link:hover {
    color: var(--primary-hover);
}

.social-wrapper {
    margin-top: 40px;
    border-top: 1px solid var(--border);
    padding-top: 30px;
}

.social-wrapper h4 {
    font-size: 0.95rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    transform: translateY(-2px);
}

.social-link.instagram:hover {
    background-color: rgba(225, 48, 108, 0.1);
    border-color: rgba(225, 48, 108, 0.4);
    color: #e1306c;
}

.social-link.facebook:hover {
    background-color: rgba(59, 89, 152, 0.1);
    border-color: rgba(59, 89, 152, 0.4);
    color: #3b5998;
}

/* Form Styling */
.contact-form-wrapper {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-premium);
}

.form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    background-color: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--text-white);
    transition: all var(--transition-fast);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%238e8e9a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down'%3E%3Cpath d='m4 6 4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
    padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.15);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.checkbox-group label {
    font-size: 0.8rem;
    line-height: 1.4;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-muted);
}

.checkbox-group label a {
    color: var(--primary);
    font-weight: 600;
}

.checkbox-group label a:hover {
    color: var(--primary-hover);
}

/* Spinner & Button state */
#submitBtn {
    position: relative;
}

#submitBtn .btn-spinner {
    display: none;
    width: 20px;
    height: 20px;
    position: absolute;
    animation: rotate 1s linear infinite;
}

#submitBtn.loading span {
    opacity: 0;
}

#submitBtn.loading .btn-spinner {
    display: block;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.opacity-25 { opacity: 0.25; }
.opacity-75 { opacity: 0.75; }

/* Status message */
.form-status {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: none;
}

.form-status.success {
    display: block;
    background-color: rgba(46, 213, 115, 0.15);
    border: 1px solid rgba(46, 213, 115, 0.3);
    color: #2ed573;
}

.form-status.error {
    display: block;
    background-color: rgba(255, 71, 87, 0.15);
    border: 1px solid rgba(255, 71, 87, 0.3);
    color: #ff4757;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border);
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.footer-logo-section {
    max-width: 320px;
}

.footer-logo {
    max-height: 46px;
    width: auto;
    margin-bottom: 20px;
}

.footer-logo-section p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.main-footer h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    color: var(--text-white);
}

.main-footer ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.main-footer ul a {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.main-footer ul a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
}

@media (max-width: 576px) {
    .footer-bottom-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ==========================================================================
   MODALS (IMPRESSUM & DATENSCHUTZ)
   ========================================================================== */
.modal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.modal-wrapper.open {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 720px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-premium);
    z-index: 2010;
    transform: scale(0.95);
    transition: transform var(--transition-normal);
}

.modal-wrapper.open .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
}

.modal-body {
    padding: 40px;
    overflow-y: auto;
}

.modal-body h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
}

.legal-text h3 {
    font-size: 1.15rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--text-white);
}

.legal-text h4 {
    font-size: 0.95rem;
    margin-top: 18px;
    margin-bottom: 8px;
    color: var(--primary);
}

.legal-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.legal-text hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 25px 0;
}

/* ==========================================================================
   SCROLL ANIMATIONS (Intersection Observer)
   ========================================================================== */
.fade-in-up,
.fade-in-left,
.fade-in-right {
    opacity: 0;
    transition-duration: 0.8s;
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-property: opacity, transform;
}

.fade-in-up {
    transform: translateY(40px);
}

.fade-in-left {
    transform: translateX(-40px);
}

.fade-in-right {
    transform: translateX(40px);
}

.fade-in-up.animated,
.fade-in-left.animated,
.fade-in-right.animated {
    opacity: 1;
    transform: translate(0);
}

/* Delays */
.hero-content {
    transition-delay: 0.1s;
}
.hero-stats {
    transition-delay: 0.3s;
}

/* ==========================================================================
   PRICE LIST SECTION (Preisliste)
   ========================================================================== */
.price-section {
    position: relative;
    background-color: var(--bg-darker);
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg-dark);
    border: 1px solid rgba(255, 106, 0, 0.25);
    border-radius: var(--radius-md);
    padding: 24px 32px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.price-card:hover {
    background-color: var(--bg-card-hover);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow), var(--shadow-premium);
}

.price-card-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-grow: 1;
}

.price-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.price-card-icon svg {
    width: 48px;
    height: 48px;
    color: var(--primary);
    display: block;
    transition: transform var(--transition-fast), filter var(--transition-fast);
}

.price-card:hover .price-card-icon svg {
    transform: scale(1.08);
    filter: drop-shadow(0 0 6px rgba(255, 106, 0, 0.5));
}

.price-card-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-card-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-white);
    margin-bottom: 0;
}

.price-card-desc {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0;
}

.price-card-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255, 106, 0, 0.4) 30%, rgba(255, 106, 0, 0.4) 70%, transparent);
    margin: 0 30px;
    align-self: center;
    flex-shrink: 0;
}

.price-card-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
}

.price-val {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-white);
    white-space: nowrap;
}

.price-footer-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.8;
}

.price-footer-line::before,
.price-footer-line::after {
    content: '';
    flex-grow: 1;
    max-width: 180px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary));
}

.price-footer-line::after {
    background: linear-gradient(to left, transparent, var(--primary));
}

/* ==========================================================================
   RESPONSIVE STYLES FOR PRICE LIST
   ========================================================================== */
@media (max-width: 768px) {
    .price-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px;
        gap: 16px;
    }
    
    .price-card-left {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        width: 100%;
    }
    
    .price-card-divider {
        display: none;
    }
    
    .price-card-info h3 {
        font-size: 1.25rem;
    }
    
    .price-card-desc {
        font-size: 0.85rem;
    }
    
    .price-card-right {
        justify-content: center;
        width: 100%;
    }
    
    .price-val {
        font-size: 1.8rem;
    }
    
    .price-footer-line {
        font-size: 0.75rem;
        gap: 10px;
        margin-top: 40px;
    }
    
    .price-footer-line::before,
    .price-footer-line::after {
        max-width: 60px;
    }
}
