:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --secondary: #10b981;
    --background: #0f172a;
    --surface: rgba(30, 41, 59, 0.7);
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Gradients */
.bg-glow {
    position: fixed;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.bg-glow-2 {
    position: fixed;
    bottom: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, rgba(15, 23, 42, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #f1f5f9; /* Helles Grau */
    color: #1e293b;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #1e293b; /* Dunkle Schrift auf hellem Grund */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: white;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: var(--surface);
    color: white;
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 5%;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    gap: 4rem;
    min-height: 80vh;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.hero-image {
    flex: 1;
    perspective: 1000px;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    transform: rotateY(-10deg) rotateX(5deg);
    box-shadow: 20px 20px 50px rgba(0,0,0,0.5);
    border: 1px solid var(--border);
    transition: transform 0.5s ease;
}

.hero-image img:hover {
    transform: rotateY(0) rotateX(0);
}

/* Features/Time Saving */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.2);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Shop / Pricing */
.pricing-card {
    background: linear-gradient(145deg, var(--surface) 0%, rgba(15,23,42,0.8) 100%);
    border: 1px solid var(--primary);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.price {
    font-size: 4rem;
    font-weight: 800;
    margin: 2rem 0 1rem;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.price span {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Forms */
.form-container {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input, .form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

/* Utils */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1.5rem; }
.text-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none; /* simple mobile nav */
    }
}


/* Full Width Slider */
.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    margin-bottom: 4rem;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), transform 5s linear;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15,23,42,0.9) 0%, rgba(15,23,42,0.4) 50%, rgba(15,23,42,0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
}

.slide-content-box {
    max-width: 600px;
    animation: slideUp 1s ease-out forwards;
}

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

.slide-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-title {
    color: white;
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.slide-desc {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Redefine Hero Section for the text below slider */
.hero-text-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Footer Links */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-right: 1.5rem;
    font-size: 0.9rem;
}
.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

/* Pink Glow Button */
.btn-pink-glow {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    color: white;
    border: none;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.6), 0 0 40px rgba(236, 72, 153, 0.4);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-pink-glow:hover {
    background: linear-gradient(135deg, #f472b6 0%, #db2777 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.8), 0 0 60px rgba(236, 72, 153, 0.5);
    color: white;
}

footer a { color: #1e293b; }
footer a:hover { color: #0d9488; }

@media (max-width: 768px) {
    /* More aggressive slider text reduction for small phones */
    .slide-title {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    .slide-desc {
        font-size: 0.95rem !important;
        margin-bottom: 1rem !important;
    }
    .slide-tag {
        font-size: 0.75rem !important;
        padding: 0.3rem 0.6rem !important;
        margin-bottom: 0.5rem !important;
    }
    .btn-pink-glow {
        font-size: 0.95rem !important;
        padding: 0.75rem 1.25rem !important;
    }
    .hero-slider-wrapper {
        height: 60vh !important;
        min-height: 400px !important;
    }
    .slide-overlay {
        padding: 0 1.5rem !important;
        background: rgba(15,23,42,0.7) !important; /* Darken background so text is readable */
    }
    .slide-content-box {
        text-align: center; /* Center everything on mobile for better fit */
        margin: 0 auto;
    }
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: relative;
    width: 80%;
    max-width: 900px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.video-modal-content video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 85vh;
}

.close-video {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    transition: color 0.3s ease;
    line-height: 1;
}

.close-video:hover {
    color: #ef4444;
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 100%;
        height: 100%;
        border-radius: 0;
        display: flex;
        align-items: center;
        background: #000;
    }
    .video-modal-content video {
        max-height: 100vh;
    }
    .close-video {
        top: 15px;
        right: 20px;
    }
}
