/*
Theme Name: Akademie für Tontechnik
Theme URI: https://deine-akademie.de
Author: Dein Name
Author URI: https://deine-website.de
Description: Ein modernes Theme für eine Tontechnik- und Recording-Akademie, optimiert für Elementor und WPBakery.
Version: 1.0
License: GPL-2.0-or-later
Text Domain: akademie-theme
*/

/* Grundlegende CSS-Resets und Typografie */
body {
    margin: 0;
    font-family: 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    color: #333;
    line-height: 1.6;
}

.academy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Header */
.academy-header {
    background: #1a1a2e;
    color: #fff;
    padding: 20px 0;
    position: relative;
    z-index: 1000;
}
.academy-header .academy-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.academy-logo a {
    color: #f0a500;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: bold;
}
.academy-main-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}
.academy-main-nav a {
    color: #ddd;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
.academy-main-nav a:hover {
    color: #f0a500;
}
.academy-cta-button {
    background: #f0a500;
    color: #1a1a2e !important;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: bold !important;
}

/* Hero */
.academy-hero {
    background: linear-gradient(135deg, #16213e, #0f3460);
    color: #fff;
    padding: 120px 20px;
    text-align: center;
}
.academy-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    line-height: 1.2;
}
.academy-hero .hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 30px;
}
.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    margin: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s;
}
.hero-buttons .btn-primary {
    background: #f0a500;
    color: #1a1a2e;
}
.hero-buttons .btn-secondary {
    border: 2px solid #f0a500;
    color: #f0a500;
}
.hero-buttons .btn-primary:hover,
.hero-buttons .btn-secondary:hover {
    transform: scale(1.05);
}

/* Sektionen allgemein */
.section-title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: #1a1a2e;
}
.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Partnerleiste */
.academy-partners {
    background: #f9f9f9;
    padding: 40px 0;
    text-align: center;
}
.partner-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    opacity: 0.7;
    font-weight: bold;
    color: #777;
}

/* Über uns / Philosophie */
.academy-about {
    padding: 80px 0;
}
.about-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}
.about-image {
    flex: 1 1 45%;
    background: #ddd;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    border-radius: 10px;
}
.about-text {
    flex: 1 1 45%;
}
.about-text h2 {
    font-size: 2.2rem;
    color: #1a1a2e;
    margin-bottom: 15px;
}
.about-list {
    list-style: none;
    padding: 0;
}
.about-list li {
    padding: 8px 0;
    font-size: 1.1rem;
}
.about-list li::before {
    content: "✓ ";
    color: #f0a500;
    font-weight: bold;
}

/* Kurse */
.academy-courses {
    background: #f4f6ff;
    padding: 80px 0;
}
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}
.course-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.2s;
}
.course-card:hover {
    transform: translateY(-5px);
}
.course-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}
.course-card h3 {
    color: #1a1a2e;
    margin-bottom: 10px;
}
.course-duration {
    color: #777;
    font-size: 0.9rem;
    margin: 15px 0;
}
.course-link {
    display: inline-block;
    padding: 8px 20px;
    background: #f0a500;
    color: #1a1a2e;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}
.courses-cta {
    text-align: center;
    margin-top: 20px;
}

/* Testimonial Parallax */
.academy-testimonial {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://placehold.co/1600x600/333/ccc?text=Studio+Hintergrund') center/cover fixed;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}
.testimonial-quote {
    font-size: 1.8rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.4;
}
.testimonial-author {
    font-weight: bold;
    color: #f0a500;
}

/* Dozenten */
.academy-instructors {
    padding: 80px 0;
}
.instructor-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}
.instructor-card {
    text-align: center;
    flex: 1 1 200px;
    max-width: 250px;
}
.instructor-avatar {
    width: 150px;
    height: 150px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

/* Galerie */
.academy-gallery {
    padding: 80px 0;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}
.gallery-item {
    background: #ddd;
    height: 250px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
}
.gallery-item:first-child {
    background: #c0c0e0;
}
.gallery-item:nth-child(2) {
    background: #c0d0c0;
}
.gallery-item:nth-child(3) {
    background: #e0c0c0;
}

/* FAQ */
.academy-faq {
    background: #f9f9f9;
    padding: 80px 0;
}
.faq-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}
.faq-image {
    flex: 1 1 40%;
    background: #ddd;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    border-radius: 10px;
}
.faq-items {
    flex: 1 1 50%;
}
details {
    background: #fff;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    cursor: pointer;
}
summary {
    font-weight: bold;
    color: #1a1a2e;
    margin-bottom: 10px;
}

/* CTA Ende */
.academy-final-cta {
    background: linear-gradient(135deg, #f0a500, #d18f00);
    text-align: center;
    padding: 80px 20px;
    color: #1a1a2e;
}
.academy-final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.academy-final-cta .btn-large {
    display: inline-block;
    padding: 15px 40px;
    background: #1a1a2e;
    color: #f0a500;
    font-size: 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background 0.3s;
}
.academy-final-cta .btn-large:hover {
    background: #333;
}

/* Footer */
.academy-footer {
    background: #111;
    color: #aaa;
    text-align: center;
    padding: 40px 20px;
}

/* Responsive Kleinigkeiten */
@media (max-width: 768px) {
    .academy-hero h1 {
        font-size: 2rem;
    }
    .academy-main-nav ul {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }
}