/* --- choco/css/podcast-edel.css --- */
/* Eine edle und moderne CSS-Datei für die Prestige Partner Landingpage */

:root {
    --bg-color: #101010;
    --text-color: #EAEAEA;
    --primary-color: #D4AF37; /* Gold */
    --secondary-color: #1A1A1A;
    --font-family: 'Raleway', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --- Basis-Styles & Reset --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-color);
    background-image: url('/images/bar1.avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--text-color);
    font-family: var(--font-family);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
}

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

/* --- Header & Navigation --- */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 2rem 4rem;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: #fff;
}

.navigation a {
    color: var(--text-color);
    margin-left: 2rem;
    font-weight: 500;
    position: relative;
}

.navigation a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.navigation a:hover::after {
    width: 100%;
}

.navigation .nav-cta {
    border: 1px solid var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    color: var(--primary-color);
}

.navigation .nav-cta:hover {
    background-color: var(--primary-color);
    color: var(--bg-color);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/choco/images/mbovia-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}

/* --- Buttons --- */
.cta-button {
    background-color: var(--primary-color);
    color: var(--bg-color);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* --- Content Sections --- */
.content-section {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #fff;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 1rem auto 0;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    color: rgba(255, 255, 255, 0.7);
}

/* --- Values Section --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background-color: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid #222;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* --- Dark Section (Podcast) --- */
.dark-section {
    background-color: var(--secondary-color);
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

/* --- Audio Player --- */
.audio-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #101010;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #222;
    text-align: center;
}

.audio-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.audio-player {
    width: 100%;
    margin-top: 1rem;
}
.audio-description {
    font-size: 0.9rem;
    margin-top: 1.5rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* --- Product Preview --- */
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.product-item {
    text-align: center;
}

.product-item img {
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    max-width: 300px;
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-left: auto;
    margin-right: auto;
}

.product-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* --- CTA Section --- */
.cta-section {
    text-align: center;
    background-color: var(--secondary-color);
}
.cta-notice {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    margin-top: 1.5rem;
}

/* --- Footer --- */
.footer {
    text-align: center;
    padding: 3rem 0;
    background-color: #000;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

.footer a {
    color: rgba(212, 175, 55, 0.7);
}

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

/* --- Animation --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .header {
        padding: 2rem;
    }
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    .header {
        flex-direction: column;
        position: static;
    }
    .logo {
        margin-bottom: 1rem;
    }
    .navigation {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .navigation a {
        margin: 0.5rem;
    }
    .hero {
        height: auto;
        padding: 8rem 0;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 2.2rem;
    }
} 