/* choco/css/mbovia-edel.css */

: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);
    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;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* --- Allgemeine Section-Styles --- */
.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);
}

/* --- Header --- */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background-color: rgba(16, 16, 16, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    border-bottom: 1px solid #222;
}

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

.main-nav a {
    color: var(--text-color);
    margin-left: 2rem;
    font-weight: 500;
    position: relative;
}
.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}
.main-nav a:hover::after {
    width: 100%;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    text-align: left;
    color: #fff;
    padding: 0 2rem;
}
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/images/bar1.avif) no-repeat center center/cover;
    z-index: -2;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(16, 16, 16, 0.9) 30%, rgba(16, 16, 16, 0.2) 100%);
    z-index: -1;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}
.hero-subtitle {
    font-size: 1.2rem;
    max-width: 550px;
    margin-bottom: 2.5rem;
    color: rgba(234, 234, 234, 0.9);
}

/* --- 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);
}

/* --- Sections Styling --- */
.about-section, .values-section, .products-section, .timeline-section, .faq-section, .affiliate-cta-section, .contact-section {
    padding: 6rem 0;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.about-image img {
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.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-left: 4px solid var(--primary-color);
    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: #fff;
}

.products-section, .timeline-section, .faq-section, .contact-section {
    background-color: var(--secondary-color);
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}
.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.product-card {
    background-color: #101010;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0, 0.2);
}
.product-content {
    padding: 1.5rem;
}

/* --- Timeline --- */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
}
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #222;
    transform: translateX(-50%);
}
.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
}
.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
}
.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
}
.timeline-icon {
    position: absolute;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 1;
}
.timeline-item:nth-child(odd) .timeline-icon {
    right: -25px;
}
.timeline-item:nth-child(even) .timeline-icon {
    left: -25px;
}
.timeline-content {
    background: #101010;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #222;
}
.timeline-details-btn {
    background: var(--primary-color);
    color: #101010;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 1rem;
}
.timeline-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}
.timeline-modal-content {
    background-color: var(--secondary-color);
    color: var(--text-color);
    margin: 10% auto;
    padding: 2rem;
    border: 1px solid var(--primary-color);
    width: 80%;
    max-width: 700px;
    border-radius: 10px;
    position: relative;
}
.timeline-modal-close {
    color: #aaa;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.timeline-modal h3 { color: var(--primary-color); }

/* --- FAQ --- */
.faq-item {
    background: #101010;
    border: 1px solid #222;
    border-radius: 5px;
    margin-bottom: 1rem;
}
.faq-question {
    padding: 1rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 1.5rem;
}
.faq-answer p {
    padding-bottom: 1.5rem;
}
.faq-answer.active {
    max-height: 300px;
}
.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}
.faq-question.active .faq-toggle {
    transform: rotate(45deg);
}

/* --- CTA Section --- */
.affiliate-cta-section {
    text-align: center;
    background: linear-gradient(rgba(16,16,16,0.9), rgba(16,16,16,0.9)), url(/images/bar1.avif) no-repeat center center/cover;
}
.affiliate-description {
    max-width: 600px;
    margin: 0 auto 2rem;
}

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

/* --- Animations --- */
.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 --- */
@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
    }
    .main-nav { margin-top: 1rem; }
    .hero-section { text-align: center; height: auto; padding: 6rem 1rem;}
    .hero-overlay { background: rgba(16, 16, 16, 0.7); }
    .about-content { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .timeline-line { left: 25px; }
    .timeline-item, .timeline-item:nth-child(even) {
        width: 100%;
        left: 0;
        padding-left: 4rem;
    }
    .timeline-item:nth-child(odd) {
        padding-right: 0;
    }
    .timeline-icon, .timeline-item:nth-child(even) .timeline-icon {
        left: 0;
    }
} 