/* 1. Schriftarten & Grund-Setup */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    color: white;
    overflow-x: hidden;
    background-color: #1a140a; /* Dunkler Grundton passend zum Thema */
}

/* 2. Hintergrundbild mit Vignette-Effekt */
body {
    /* Dunkler Verlauf über dem Bild sorgt für bessere Lesbarkeit der weißen Schrift */
    background: 
        radial-gradient(circle at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%),
        url('https://images.unsplash.com/photo-1647427062468-74ff21e8934f?auto=format&fit=crop&q=80&w=1920') 
        no-repeat center center fixed;
    background-size: cover;
}

/* 3. Zentraler Inhaltsbereich */
.content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 60px 20px;
    text-align: center;
}

/* 4. Typografie (Headline & Coming Soon) */
header h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem); /* Dynamische Größe für Desktop/Mobile */
    letter-spacing: 5px;
    margin-bottom: 5px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.subtitle {
    font-size: 1.1rem;
    letter-spacing: 14px; /* Weite Sperrung für edlen Look */
    color: #ffcc00; /* Warmes Honiggelb */
    margin-bottom: 50px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 1px 1px 15px rgba(0, 0, 0, 0.5);
}

.intro-text {
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
    font-weight: 300;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* 5. Perfektionierter Glassmorphism-Container */
.newsletter {
    background: rgba(255, 255, 255, 0.06); 
    /* Blur und Farbsättigung für den edlen Glaseffekt */
    backdrop-filter: blur(25px) saturate(170%);
    -webkit-backdrop-filter: blur(25px) saturate(170%);
    
    /* Differenzierte Lichtkanten (Glow an den Rändern) */
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    
    border-radius: 30px;
    padding: 60px 50px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6);
    
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
}

.newsletter p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    font-weight: 400;
}

/* 6. Das Formular (Flat Design Call-to-Action) */
.subscribe-form {
    display: flex;
    gap: 12px;
    width: 100%;
}

.subscribe-form input {
    flex: 2;
    padding: 22px 25px;
    background: rgba(255, 255, 255, 0.92);
    border: none;
    border-radius: 15px;
    color: #222;
    outline: none;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: background 0.3s ease;
}

.subscribe-form input:focus {
    background: #ffffff;
}

.subscribe-form button {
    flex: 1;
    padding: 22px 30px;
    /* Hochwertiger Orange-Farbverlauf passend zum Honig-Thema */
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.subscribe-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.5);
    filter: brightness(1.1);
}

/* 7. Status-Meldungen */
#response-message {
    margin-top: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* 8. Footer (Navigation & Copyright) */
footer {
    margin-top: auto;
    padding: 50px 20px 30px;
    width: 100%;
}

footer nav {
    margin-bottom: 25px;
}

footer nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    opacity: 0.7;
    background: rgba(0, 0, 0, 0.25);
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

footer nav a:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.copyright {
    font-size: 0.75rem;
    opacity: 0.4;
    letter-spacing: 1.2px;
}

/* 9. Mobile Anpassungen */
@media (max-width: 650px) {
    .newsletter {
        padding: 40px 25px;
    }
    
    .subscribe-form {
        flex-direction: column;
        gap: 15px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        letter-spacing: 8px;
        font-size: 0.9rem;
    }

    footer nav a {
        display: inline-block;
        margin: 5px;
        width: calc(50% - 10px);
    }
}