/* -----------------------------------------------------------
   STYLE.CSS - Expressversand Schweiz
   Theme: High-End Glassmorphism & Swiss Precision
   ----------------------------------------------------------- */

:root {
    --swiss-red: #DA291C;
    --swiss-red-dark: #b01f15;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
    --blur-strength: 20px;
    --text-dark: #1a1a1a;
    --text-muted: #666666;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --font-stack: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-stack);
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--swiss-red);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--swiss-red-dark);
}

/* -----------------------------------------------------------
   1. HEADER
   ----------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.site-header .container {
    max-width: 1400px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 30px;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo .logo-icon {
    font-size: 1.8rem;
}

.site-logo .logo-text {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 400;
}

.site-logo .logo-text strong {
    font-weight: 800;
    color: var(--swiss-red);
}

/* Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.main-nav li {
    margin: 0;
}

.main-nav a {
    display: block;
    padding: 10px 18px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.main-nav a:hover {
    background: rgba(218, 41, 28, 0.08);
    color: var(--swiss-red);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.header-phone:hover {
    background: var(--bg-light);
    color: var(--swiss-red);
}

.header-phone i {
    color: var(--swiss-red);
}

.btn-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--swiss-red);
    color: white !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(218, 41, 28, 0.3);
}

.btn-header-cta:hover {
    background: var(--swiss-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(218, 41, 28, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* -----------------------------------------------------------
   2. BREADCRUMBS
   ----------------------------------------------------------- */
.breadcrumbs {
    background: rgba(0, 0, 0, 0.03);
    padding: 12px 0;
    margin-top: 68px; /* Platz für fixed Header */
}

.breadcrumbs .container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--text-muted);
}

.breadcrumbs a:hover {
    color: var(--swiss-red);
}

.breadcrumbs i {
    font-size: 0.7rem;
    opacity: 0.5;
}

.breadcrumbs span:last-child {
    color: var(--swiss-red);
    font-weight: 600;
}

/* -----------------------------------------------------------
   3. HERO SECTION
   ----------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 85vh;
    background: url('https://images.unsplash.com/photo-1527668752968-14dc70a27c95?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg,
.map-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.7) 0%, rgba(10, 25, 47, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

.hero-text {
    color: var(--text-light);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--swiss-red);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(218, 41, 28, 0.4);
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 20px 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-text h1 span {
    display: block;
    color: rgba(255, 255, 255, 0.9);
}

.hero-text > p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0 0 30px 0;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 24px;
    margin-bottom: 30px;
}

.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-features .feature i {
    color: #4ade80;
    font-size: 1.1rem;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--swiss-red);
    color: white !important;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(218, 41, 28, 0.4);
}

.btn-primary:hover {
    background: var(--swiss-red-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(218, 41, 28, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white !important;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Gadget */
.hero-gadget {
    display: flex;
    justify-content: center;
}

.gadget-container {
    width: 100%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(var(--blur-strength));
    -webkit-backdrop-filter: blur(var(--blur-strength));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    text-align: center;
    color: var(--text-light);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gadget-container:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.2);
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--swiss-red);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(218, 41, 28, 0.6);
}

#gadget-content {
    transition: opacity 0.5s ease-in-out, transform 0.5s ease;
    opacity: 1;
    transform: scale(1);
}

.gadget-fade-out {
    opacity: 0 !important;
    transform: scale(0.95) !important;
}

.gadget-destination {
    font-size: 28px;
    font-weight: 700;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.gadget-price {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin: 5px 0 15px 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.gadget-meta {
    font-size: 14px;
    opacity: 0.9;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
}

.gadget-btn {
    display: block;
    margin-top: 25px;
    padding: 14px 28px;
    background: white;
    color: var(--swiss-red) !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.gadget-btn:hover {
    background: var(--swiss-red);
    color: white !important;
    transform: scale(1.03);
}

/* -----------------------------------------------------------
   4. USP SECTION
   ----------------------------------------------------------- */
.usp-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.usp-box {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border-bottom: 4px solid var(--swiss-red);
    transition: all 0.3s ease;
    text-align: center;
}

.usp-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.usp-icon {
    font-size: 2.5rem;
    color: var(--swiss-red);
    margin-bottom: 20px;
}

.usp-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.usp-box p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* -----------------------------------------------------------
   5. FOOTER
   ----------------------------------------------------------- */
.site-footer {
    background: linear-gradient(180deg, #1a1a2e 0%, #16162a 100%);
    color: rgba(255, 255, 255, 0.85);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--swiss-red);
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-col a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-col a i {
    width: 18px;
    color: var(--swiss-red);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* -----------------------------------------------------------
   6. FIXED BOTTOM BAR
   ----------------------------------------------------------- */
.fixed-bar {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 60px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    z-index: 999;
}

.btn-booking {
    background: var(--swiss-red);
    color: #fff !important;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(218, 41, 28, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-booking:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(218, 41, 28, 0.4);
    background: var(--swiss-red-dark);
}

.contact-links {
    display: flex;
    gap: 10px;
    padding-right: 10px;
}

.contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-icon.wa {
    color: #25D366;
    background: #ebfcf2;
}

.contact-icon.ph {
    color: var(--swiss-red);
    background: #fcebeb;
}

.contact-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* -----------------------------------------------------------
   7. RESPONSIVE
   ----------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .usp-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Header Mobile */
    .main-nav,
    .header-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .site-header.menu-open .main-nav {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }
    
    .site-header.menu-open .main-nav ul {
        flex-direction: column;
    }
    
    .site-header.menu-open .main-nav a {
        padding: 15px 20px;
    }
    
    /* Breadcrumbs */
    .breadcrumbs {
        margin-top: 60px;
    }
    
    /* Hero */
    .hero-section {
        min-height: auto;
        padding: 40px 0;
    }
    
    .hero-content {
        padding: 40px 0;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text > p {
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .gadget-container {
        padding: 30px 20px;
    }
    
    .gadget-price {
        font-size: 32px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Fixed Bar */
    .fixed-bar {
        width: 95%;
        bottom: 15px;
        padding: 6px 8px;
    }
    
    .btn-booking {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    
    .btn-booking .desktop-only {
        display: none;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 24px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    .hero-cta {
        flex-direction: column;
    }
}

/* Spezifisches CSS für das Impressum (Ergänzung zu style.css) */

body { background: #f4f4f4; padding-bottom: 120px; }

.page-header {
   position: relative;
   height: 40vh;
   min-height: 300px;
   background: url('https://images.unsplash.com/photo-1527668752968-14dc70a27c95?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
   display: flex;
   align-items: center;
   justify-content: center;
   overflow: hidden;
}

.header-overlay {
   position: absolute;
   top: 0; left: 0; width: 100%; height: 100%;
   background: linear-gradient(180deg, rgba(10, 25, 47, 0.7) 0%, rgba(244, 244, 244, 1) 100%);
}

.header-title {
   position: relative;
   z-index: 10;
   text-align: center;
   color: #fff;
   margin-top: 40px;
}

.header-title h1 {
   font-size: 3rem;
   font-weight: 800;
   margin: 0;
   text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* --- GRID LAYOUT FÜR DATEN --- */
.legal-container {
   max-width: 1200px;
   margin: -80px auto 50px auto; /* Negativer Margin zieht es in den Header */
   padding: 0 20px;
   position: relative;
   z-index: 20;
}

.legal-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 25px;
}

.legal-card {
   background: rgba(255, 255, 255, 0.9);
   backdrop-filter: blur(10px);
   border: 1px solid rgba(255, 255, 255, 0.5);
   padding: 30px;
   border-radius: 16px;
   box-shadow: 0 10px 30px rgba(0,0,0,0.05);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.legal-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 20px 40px rgba(0,0,0,0.1);
   background: #fff;
}

.legal-card h3 {
   color: var(--swiss-red);
   font-size: 1.1rem;
   margin-top: 0;
   margin-bottom: 20px;
   border-bottom: 2px solid rgba(0,0,0,0.05);
   padding-bottom: 10px;
   display: flex;
   align-items: center;
   gap: 10px;
}

.legal-card p, .legal-card li {
   font-size: 0.95rem;
   line-height: 1.6;
   color: #444;
   margin-bottom: 8px;
}

.legal-card strong { color: #000; }
.legal-card a { color: var(--text-dark); text-decoration: none; border-bottom: 1px dotted #999; }
.legal-card a:hover { color: var(--swiss-red); border-bottom-style: solid; }

/* --- RECHTSTEXTE (Disclaimer) --- */
.legal-text-section {
   background: #fff;
   max-width: 1200px;
   margin: 40px auto;
   padding: 40px;
   border-radius: 16px;
   box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.legal-text-section h2 { font-size: 1.5rem; margin-top: 30px; margin-bottom: 15px; color: var(--text-dark); }
.legal-text-section p { line-height: 1.7; color: #555; margin-bottom: 15px; }

@media (max-width: 768px) {
   .header-title h1 { font-size: 2rem; }
   .legal-grid { grid-template-columns: 1fr; }
}