/* ============================================
   DENOLYA ACADEMY - MAIN STYLESHEET
   Buccal Massage Ausbildung
   ============================================ */

/* CSS Variables */
:root {
    --primary: #1A1A1A;
    --secondary: #C9A96E;
    --accent: #F5F0EB;
    --text: #2D2D2D;
    --surface: #FAFAF8;
    --white: #FFFFFF;
    --gold-light: #E8D5B7;
    --gold-dark: #A0824D;

    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    --shadow-soft: 0 4px 20px rgba(26, 26, 26, 0.08);
    --shadow-medium: 0 8px 40px rgba(26, 26, 26, 0.12);
    --shadow-gold: 0 4px 30px rgba(201, 169, 110, 0.3);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
    border-radius: 2px;
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--secondary);
    border-radius: 2px;
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--white);
}

.btn-dark {
    background: var(--primary);
    color: var(--white);
    border-radius: 2px;
}

.btn-dark:hover {
    background: var(--text);
    transform: translateY(-2px);
}

/* Gold underline accent */
.gold-line {
    width: 60px;
    height: 2px;
    background: var(--secondary);
    margin: 20px 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
    padding: 15px 0;
}

.navbar.scrolled .nav-logo,
.navbar.scrolled .nav-link {
    color: var(--primary);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 2px;
}

.nav-logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 12px 28px;
    font-size: 12px;
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-smooth);
}

.navbar.scrolled .mobile-toggle span {
    background: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--primary);
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 26, 26, 0.3) 0%,
        rgba(26, 26, 26, 0.6) 50%,
        rgba(26, 26, 26, 0.9) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 24px;
    display: block;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 500;
    line-height: 1.1;
}

.hero-title em {
    font-style: italic;
    color: var(--secondary);
}

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

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    width: 30px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--secondary);
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

/* Methode Section */
.methode {
    background: var(--surface);
}

.methode-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.methode-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
}

.methode-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.methode-features {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.methode-visual {
    position: relative;
}

.methode-image {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.methode-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.methode-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    color: var(--white);
    padding: 30px;
    border-radius: 4px;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.methode-badge .number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--secondary);
    display: block;
    line-height: 1;
}

.methode-badge .label {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 5px;
}

/* Courses Section */
.courses {
    background: var(--white);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.course-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--secondary);
}

.course-card.featured {
    border: 2px solid var(--secondary);
    transform: scale(1.05);
}

.course-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary);
    color: var(--white);
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
    z-index: 2;
}

.course-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(201, 169, 110, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    opacity: 0;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.course-card:hover .course-play {
    opacity: 1;
}

.course-content {
    padding: 30px;
}

.course-level {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 12px;
}

.course-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.course-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.7;
}

.course-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
}

.course-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #555;
}

.course-meta-item i {
    color: var(--secondary);
}

.course-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.course-price .price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
}

.course-price .currency {
    font-size: 1rem;
    color: #666;
}

.course-features {
    list-style: none;
    margin-bottom: 24px;
}

.course-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
}

.course-features li i {
    color: var(--secondary);
    font-size: 0.8rem;
}

.course-btn {
    width: 100%;
    padding: 14px;
    font-size: 13px;
}

/* Videos Section */
.videos {
    background: var(--primary);
    color: var(--white);
}

.videos .section-header h2,
.videos .section-header p {
    color: var(--white);
}

.video-platform {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.video-main {
    position: relative;
    background: #000;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    text-align: center;
    padding: 40px;
}

.video-placeholder i {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.video-placeholder h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.video-placeholder p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.video-sidebar {
    padding: 30px;
    overflow-y: auto;
    max-height: 450px;
}

.video-module {
    margin-bottom: 30px;
}

.video-module-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.video-module-title {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
}

.video-module-progress {
    font-size: 0.8rem;
    color: var(--secondary);
}

.video-lesson {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-bottom: 8px;
}

.video-lesson:hover {
    background: rgba(255, 255, 255, 0.05);
}

.video-lesson.active {
    background: rgba(201, 169, 110, 0.15);
    border-left: 3px solid var(--secondary);
}

.lesson-number {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    flex-shrink: 0;
}

.video-lesson.active .lesson-number {
    background: var(--secondary);
}

.lesson-info h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 4px;
}

.lesson-info span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.lesson-status {
    margin-left: auto;
    color: var(--secondary);
    font-size: 0.9rem;
}

/* Trainers Section */
.trainers {
    background: var(--surface);
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.trainer-card {
    text-align: center;
    position: relative;
}

.trainer-image {
    width: 280px;
    height: 350px;
    margin: 0 auto 24px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    background: var(--primary);
}

.trainer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--transition-smooth);
}

.trainer-card:hover .trainer-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.trainer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(26, 26, 26, 0.8) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
}

.trainer-card:hover .trainer-overlay {
    opacity: 1;
}

.trainer-social {
    display: flex;
    gap: 15px;
}

.trainer-social a {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.trainer-social a:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

.trainer-name {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.trainer-role {
    font-size: 0.9rem;
    color: var(--secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.trainer-quote {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
    max-width: 300px;
    margin: 0 auto;
}

/* Gallery Section */
.gallery {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.gallery-overlay span {
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* FAQ Section */
.faq {
    background: var(--surface);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.faq-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
}

.faq-content > p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background: rgba(201, 169, 110, 0.05);
}

.faq-question h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.8rem;
    transition: var(--transition-smooth);
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding: 0 30px 24px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
}

.faq-image {
    position: sticky;
    top: 100px;
}

.faq-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: var(--shadow-medium);
}

/* Booking Section */
.booking {
    background: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.booking::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: var(--secondary);
    opacity: 0.05;
    border-radius: 50%;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.booking-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 24px;
}

.booking-content > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.8;
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.booking-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.booking-info-item i {
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 110, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.booking-info-item h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.booking-info-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.booking-form-wrapper {
    background: var(--white);
    border-radius: 4px;
    padding: 40px;
    box-shadow: var(--shadow-medium);
}

.booking-form-wrapper h3 {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.booking-form-wrapper > p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    transition: var(--transition-smooth);
    background: var(--surface);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-submit {
    width: 100%;
    margin-top: 10px;
    padding: 16px;
    font-size: 14px;
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: #999;
    margin-top: 20px;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand h3 span {
    color: var(--secondary);
}

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--secondary);
    width: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .methode-grid,
    .booking-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .courses-grid,
    .trainers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-platform {
        grid-template-columns: 1fr;
    }

    .methode-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .courses-grid,
    .trainers-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .course-card.featured {
        transform: none;
    }

    .course-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .booking-form-wrapper {
        padding: 24px;
    }
}
