/* Boocz Verlag - CSS Styles */

/* CSS Variables - Farbschema */
:root {
    --boocz-primary: #2e5d4f;
    --boocz-accent1: #faf3e0;
    --boocz-accent2: #e2b646;
    --boocz-neutral: #333;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --border-color: #e5e7eb;
}

/* Reset und Basis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--boocz-neutral);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--boocz-accent1);
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Fallback: Falls kein Logo-Bild vorhanden, zeige Text */
.logo:not(:has(.logo-image)) {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--boocz-primary);
}

.logo:not(:has(.logo-image))::before {
    content: "📖 BOOCZ VERLAG";
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--boocz-neutral);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

nav a:hover {
    color: var(--boocz-primary);
}

nav a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--boocz-primary);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--boocz-accent1) 0%, var(--white) 100%);
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-family: 'Lora', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--boocz-primary);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--boocz-neutral);
}

/* Stats */
.stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--boocz-primary);
    display: block;
    margin-bottom: 0.5rem;
}

.stat div:last-child {
    font-size: 0.9rem;
    color: var(--boocz-neutral);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Buttons */
.btn-primary {
    background: var(--boocz-primary);
    color: var(--white);
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    cursor: pointer;
    text-align: center;
}

.btn-primary:hover {
    background: #1e3d2f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 93, 79, 0.3);
}

/* Book Feature Section */
.book-feature {
    padding: 4rem 0;
    background: var(--white);
}

.book-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.book-cover {
    text-align: center;
}

.book-placeholder {
    width: 300px;
    height: 400px;
    background: linear-gradient(45deg, var(--boocz-accent1), var(--boocz-accent2));
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    position: relative;
    margin: 0 auto;
}

.age-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--boocz-accent2);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.book-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--boocz-primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.book-content p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.book-content .author {
    color: var(--boocz-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Book Info */
.book-info h2 {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    color: var(--boocz-primary);
    margin-bottom: 0.5rem;
}

.book-meta {
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-size: 1.1rem;
}

.book-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: var(--boocz-neutral);
}

.book-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.feature::before {
    content: "✓";
    color: var(--boocz-accent2);
    font-weight: bold;
    font-size: 1.1rem;
}

.availability {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--boocz-primary);
}

.buy-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Podcast Section */
.podcast-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.podcast-section h2 {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    color: var(--boocz-primary);
    text-align: center;
    margin-bottom: 2rem;
}

.podcast-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.podcast-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--boocz-neutral);
}

.podcast-platforms {
    margin-top: 2rem;
}

.podcast-platforms h3 {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    color: var(--boocz-primary);
    margin-bottom: 1.5rem;
}

.platform-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.platform-link {
    background: var(--boocz-primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.platform-link:hover {
    background: #1e3d2f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 93, 79, 0.3);
}

.platform-link span {
    font-size: 1rem;
}

/* Coming Soon Styling */
.coming-soon-notice h3 {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.newsletter {
    background: var(--boocz-accent1);
    padding: 4rem 0;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h3 {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    color: var(--boocz-primary);
    margin-bottom: 1rem;
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--boocz-neutral);
}

.newsletter-form {
    margin-top: 2rem;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.newsletter input[type="email"] {
    flex: 1;
    max-width: 350px;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.newsletter input[type="email"]:focus {
    outline: none;
    border-color: var(--boocz-primary);
}

.privacy-note {
    font-size: 0.9rem;
    color: #666;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.privacy-note input[type="checkbox"] {
    margin-right: 0.5rem;
}

.privacy-note a {
    color: var(--boocz-primary);
    text-decoration: none;
}

.privacy-note a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact {
    padding: 3rem 0;
    background: var(--light-gray);
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact h3 {
    font-family: 'Lora', serif;
    font-size: 2rem;
    color: var(--boocz-primary);
    margin-bottom: 1rem;
}

.contact-info {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--boocz-primary);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: var(--boocz-neutral);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--boocz-accent2);
    margin-bottom: 1rem;
    font-family: 'Lora', serif;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .book-showcase {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .book-placeholder {
        width: 250px;
        height: 350px;
    }
    
    .book-info h2 {
        font-size: 2rem;
    }
    
    .book-features {
        grid-template-columns: 1fr;
    }
    
    .buy-buttons {
        flex-direction: column;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .newsletter input[type="email"] {
        max-width: 100%;
    }
    
    .privacy-note {
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .book-placeholder {
        width: 200px;
        height: 280px;
        padding: 1.5rem;
    }
    
    .book-content h3 {
        font-size: 1.1rem;
    }
    
    .age-badge {
        font-size: 0.6rem;
        padding: 6px 8px;
    }
    
    .newsletter h3 {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counter-animate {
    animation: countUp 2s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}