/* =========================================
   BASICS & TYPOGRAPHY
   ========================================= */

html {
    font-size: 13px;
}

@media (min-width: 1400px) {
    html {
        font-size: 15px; 
    }
}

body {
    background-color: #0d0d0d;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

/* --- NAVIGATION BAR STYLES --- */

.nav-logo img {
    height: 40px; 
    width: auto;  
    display: block; 
}

.main-nav {
    position: relative; 
    z-index: 1000; 
    background: rgba(36, 37, 40, 0.9); 
    backdrop-filter: blur(10px); 
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05); 
}

/* --- NAVIGATION CONTAINER --- */
.nav-wrapper {
    position: relative; 
    display: flex;
    justify-content: space-between; 
    align-items: center;
}

/* --- LOGO --- */
.nav-logo {
    margin: 0; 
    z-index: 10; 
}

.nav-logo img { height: 35px; width: auto; display: block; }

/* MENÜ LINKS */
.nav-links {
    display: flex;
    list-style: none; 
    gap: 40px; 
    margin: 0;
    padding: 0;
    margin-right: 300px;
}

.nav-links li a {
    color: #c2c2c2;
    text-decoration: none;
    font-size: 0.85rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400; 
    letter-spacing: 0; 
    border-bottom: 0.5px solid transparent;
    padding-bottom: 0px; 
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    color: #ffffff; 
    border-color: #ffffff; 
}

.nav-links li a.active {
    color: #fff;
    border-color: #ffffff;
}

/* --- MOBILE ANPASSUNG --- */
@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column; 
        gap: 15px;
    }
    
    .nav-links {
        gap: 20px;
        font-size: 0.8rem;
    }
}

/* --- WARENKORB --- */
.nav-cart {
    color: #efefef;
    font-size: 1.1rem;
    z-index: 10;
}

/* --- DAS MENÜ (Exakt Zentriert) --- */
@media (min-width: 769px) {
    .nav-links {
        position: absolute; 
        left: 50%;          
        transform: translateX(-50%); 
        display: flex;
        gap: 40px;
        list-style: none;
        margin: 0;
        padding: 0;
        white-space: nowrap; 
    }
}

/* --- MOBILE FALLBACK --- */
@media (max-width: 768px) {
    .nav-links {
        position: static; 
        transform: none;
        flex-direction: column;
        gap: 20px;
        text-align: center;
        margin-top: 20px;
    }
    .nav-wrapper {
        flex-direction: column;
    }
}

/* Sektionen genereller Abstand */
.sec {
    padding: 60px 0; 
}

.section-title {
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 1.8rem; 
}

.text-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
}

/* =========================================
   HINTERGRUND-FARBEN (SECTIONS)
   ========================================= */

.course-hero {
    min-height: 90vh;
    padding-top: 120px;
    padding-bottom: 80px;
    background: transparent;
}

.section-intro, 
.section-learnings,
.section-faq {
    background-color: transparent; 
}

.section-modules {
    background-color: transparent; 
}

.section-offer {
    background-color: transparent;
   /* border-top: 1px solid #222; */
}

/* --- TYPOGRAPHY --- */

h1, h2, h3, h4, h6,
.hero-title,
.section-title,
.price-text,
.price-text-large, 
.offer-box h3 {
    font-family: 'Inter', sans-serif; 
    font-weight: 600;                 
    letter-spacing: -0.04em;          
    font-size: 2.2rem;
}

.module-title,
.learning-title {
    font-family: 'Montserrat', sans-serif;
}

/* =========================================
   HERO ELEMENTS
   ========================================= */
.badge-gold {
    background-color: #252525;
    color: #acacac;
    font-weight: 550;
    font-size: 0.6rem;
    padding: 8px 16px;
    border-radius: 50px;
    letter-spacing: 0.12em;
    border: 0.5px solid #535353;
    padding-bottom: 6px;
}

.hero-title {
    font-size: 2.5rem; 
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.04em; 
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #a3a3a3;
    margin-bottom: 30px;
    font-weight: 400;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f2f2f2;
}

.hero-image {
    max-height: 500px;
    width: auto;
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(246, 209, 46, 0.1); 
}

@media (max-width: 991px) {
    .course-hero {
        text-align: center;
        min-height: auto;
    }
    .hero-img-col {
        margin-top: 50px;
    }
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-gold {
    background-color: #f0cc2a;
    color: #000;
    font-weight: 500;
    border-radius: 8px;
    padding: 15px 40px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.2s ease, background-color 0.2s;
    font-size: 1rem;
}

.btn-gold:hover, 
.btn-gold:focus, 
.btn-gold:active {
    background-color: #fcd62f !important; 
    color: #000 !important;             
    transform: none !important;         
    border: none !important;            
    box-shadow: none !important;        
    outline: none !important;           
}

.btn-xl {
    font-size: 1.2rem;
    padding: 20px 0px;
}

.section-intro {
    background-color: #1d2027; 
}

.text-description {
    font-size: 1rem;
}

/* =========================================
   MODULE CARDS
   ========================================= */
.module-body {
    padding: 25px;
    text-align: center; 
}

.module-card {
    background-color: #191a1e; 
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.module-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.module-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.module-body {
    padding: 25px;
}

.module-title {
    color: #fff;
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.module-text {
    color: #bcbcbc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   FAQ
   ========================================= */
.accordion-item {
    border-bottom: 1px solid #333;
}

.accordion-button {
    background: transparent !important;
    color: #fff !important;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 0;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: #f6d12e !important;
}

.accordion-button::after { filter: invert(1); }
.accordion-button:not(.collapsed)::after { filter: invert(0.8) sepia(1) saturate(5) hue-rotate(5deg); }

/* =========================================
   LEARNING CARDS
   ========================================= */

.learning-card {
    background-color: #191a1e; 
    border-radius: 12px;
    padding: 2.5rem; 
    transition: transform 0.3s ease;
    border: 1px solid transparent; 
}

.learning-title {
    color: #f6d12e; 
    font-weight: 500;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.learning-text {
    color: #dddddd; 
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* =========================================
   FAQ CUSTOM
   ========================================= */
.faq .faq-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 40px;
}
.faq .faq-item {
  background: #22232a;
  border-radius: 10px;
  border: 1px solid #333542;
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq .faq-item.is-open .faq-toggle {
  transform: rotate(180deg);
}
.faq .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  text-align: left;
}
.faq .faq-question:hover .faq-icon {
  border-color: #f6d12e;
}
.faq .faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #80829a;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: border-color 0.2s ease;
}
.faq .faq-question-text {
  flex: 1;
  font-size: 17px;
}
.faq .faq-toggle {
  font-size: 18px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #1b1c22;
  border-top: 1px solid #2b2d38;
  transition: max-height 0.22s ease;
}
.faq .faq-answer p {
  padding: 16px 22px 20px;
  margin: 0;
  font-size: 15px;
  color: #d5d5de;
  line-height: 1.55;
  text-align: left;
}
@media (max-width: 767px) {
  .faq .faq-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .faq .faq-question {
    padding: 16px 18px;
    gap: 12px;
  }
  .faq .faq-question-text {
    font-size: 15px;
  }
  .faq .faq-icon {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
  .faq .faq-answer p {
    padding: 14px 18px 18px;
    font-size: 14px;
  }
}

/* =========================================
   OFFER SUMMARY SECTION
   ========================================= */

.section-offer-summary {
    background-color: transparent; 
    padding-top: 60px;
    padding-bottom: 80px;
}

.offer-features-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px; 
    flex-wrap: wrap; 
    padding-top: 30px;
}

.feature-item {
    font-size: 1rem;
    color: #a5a5a5;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px; 
}

.feature-star {
    color: #f6d12e; 
    font-size: 1rem;
    line-height: 1;
}

@media (max-width: 576px) {
    .offer-features-row {
        gap: 15px;
        flex-direction: column; 
    }
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: #151515;
  padding: 40px 0;
  color: #ebebeb;
  margin-top: 80px;
  font-family: "Montserrat";
}
.site-footer .footer-row {
  gap: 8px;
}
.site-footer .footer-copy {
  font-size: 10px;
  opacity: 0.85;
  white-space: nowrap;
  margin-bottom: 0;
  color: #ebebeb;
}
.site-footer .footer-links {
  gap: 8px;
}
.site-footer .footer-links a {
  color: #e5e5e5;
  text-decoration: none;
  font-size: 10px;
  opacity: 0.85;
  transition: opacity 0.2s ease, border-color 0.2s ease;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  margin-bottom: -4px;
}
.site-footer .footer-links a:hover {
  opacity: 1;
  border-bottom: 1px solid #ffffff;
}
.site-footer .dot {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .site-footer {
    margin-top: 60px;
    padding: 30px 0;
  }
  .site-footer .footer-row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }
  .site-footer .footer-copy {
    margin-bottom: 0;
    text-align: center;
  }
  .site-footer .footer-links {
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
  }
}

/* =========================================
   HIGHLIGHT SECTION (CLEAN FIX)
   ========================================= */

   .highlight-section h3, 
.highlight-section .sub-heading {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0px;
}

.highlight-section {
    position: relative;
    padding-bottom: 100px;
    padding-top: 100px;
}

.highlight-section h3 {
    text-align: center;
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.highlight-section h4.sub-heading {
    text-align: center;
    color: #a9a9a9;
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 3rem;
}

/* --- DESKTOP SCROLLER --- */
.highlight-scroller {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    padding: 20px 0;
    /* Fade Effekt an den Seiten */
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.highlight-track {
    display: flex;
    gap: 30px;
}

.highlight-item {
    width: 260px; /* Desktop Größe */
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: scale(1.02);
}

/* --- MOBILE SWIPER (Wird durch JS gesteuert) --- */
.highlight-swiper-mobile {
    width: 100%;
    padding-bottom: 40px; /* Platz für die Punkte unten */
    overflow: hidden;
}

.highlight-swiper-mobile .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.highlight-swiper-mobile .highlight-item {
    width: 100%;
    max-width: 300px; /* Maximale Breite auf Handy */
    border-radius: 15px;
}

/* Pagination Dots (Standard Swiper Styles überschreiben) */
.swiper-pagination-bullet {
    background: #444;
    opacity: 1;
    width: 8px;
    height: 8px;
}

.swiper-pagination-bullet-active {
    background: #f6d12e !important; /* Dein Gold */
    transform: scale(1.2);
}

/* --- LOGO STRIP (Desktop vs Mobile) --- */
.brand-strip__logos {
    text-align: center;
    margin-top: 40px;
    max-width: 50%;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Marquee (Laufschrift) */
.brand-strip-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    margin-top: 30px;
    /* Fade nur hier anwenden */
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.brand-strip-marquee .marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    animation: marquee 25s linear infinite;
}

.brandstrip-mobile-item {
    max-width: 120px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.8;
}

.brandstrip-mobile-item.logo-klein { max-width: 100px; }
.brandstrip-mobile-item.logo-gross { max-width: 160px; }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* ===== Creator Section ===== */

.creator {
  padding: 50px 24px 80px;
}

.creator-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 56px;
  align-items: center;
}

.creator-photo {
  text-align: center;
}
.creator-photo img {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.creator-copy h2 {
  font-size: clamp(1.9rem, 3.1vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: -0.05rem;
}

.creator-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.creator-list li {
  position: relative;
  padding-left: 40px;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
  color: #d1d1d1;
}

.creator-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #fde235;
  font-size: 1.8rem;
  transform: translateY(-7px);
}


@media (max-width: 900px) {
  .creator-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .creator-copy {
    text-align: left;
  }
  .creator-photo img {
    width: 260px;
    height: 260px;
  }
}
