/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap');

body {
    font-family: 'Kumbh Sans', sans-serif; /* Updated Font */
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #000; /* Black Background */
    color: white;
}

header {
    background: #111;
    color: white;
    padding: 20px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

/* Gradient Effect for Headings */
h1, h2 {
    font-family: 'Kumbh Sans', sans-serif;
    font-weight: 700;
    background: linear-gradient(to right, #ff4b4b, #ff0066, #8000ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero {
    background: #222;
    padding: 50px;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(to right, #ffcc70, #ff6699);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    transition: 0.3s;
    font-family: 'Kumbh Sans', sans-serif; /* Ensure button uses the same font */
}

/* Button Hover Effect */
.cta-button:hover {
    background: linear-gradient(to right, #ff6699, #ffcc70);
}

/* Gradient Text for Special Words */
.gradient-text {
    background: linear-gradient(to right, #448aff, #8000ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.course, .testimonials, .contact {
    padding: 50px;
    background: #111;
    margin: 20px;
    border-radius: 10px;
}

footer {
    background: #111;
    color: white;
    padding: 20px;
    margin-top: 20px;
}

/* Testimonials Box */
.testimonial-box {
    background: #222;
    padding: 20px;
    margin: 10px auto;
    width: 60%;
    border-radius: 5px;
    font-size: 1.2em;
    font-style: italic;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

/* Fade-out effect */
.fade-out {
    opacity: 0;
}

/* Plans Section */
.plans {
    text-align: center;
    padding: 50px;
    background: #111;
    margin: 20px;
    border-radius: 10px;
}

.plans h2 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 30px;
    background: linear-gradient(to right, #ff4b4b, #ff0066, #8000ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.plans__container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.plan {
    background: #222;
    padding: 30px;
    width: 300px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease-in-out;
}

.plan:hover {
    transform: scale(1.05);
}

.plan h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.price {
    font-size: 1.5em;
    font-weight: bold;
    color: #ff4b4b;
}

.plan p {
    font-size: 1.1em;
    margin: 10px 0;
}

/* Buttons */
.plan-btn {
    background: linear-gradient(to right, #ffcc70, #ff6699);
    color: white;
    padding: 12px 25px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.plan-btn:hover {
    background: linear-gradient(to right, #ff6699, #ffcc70);
}

.premium-btn {
    background: linear-gradient(to right, #ff4b4b, #ff0066);
}

.premium-btn:hover {
    background: linear-gradient(to right, #ff0066, #ff4b4b);
}

/* Bigger Headline Sizes */
h1 {
    font-size: 3.5em; /* Was smaller, now BIGGER */
}

h2 {
    font-size: 2.8em; /* Larger for section titles */
}

h3 {
    font-size: 2.2em; /* Slightly larger subheadings */
}
/* Increase paragraph & list text */
p, li {
    font-size: 1.4em; /* Larger than default */
}

/* Bigger buttons */
.cta-button, .plan-btn {
    font-size: 1.3em;
    padding: 18px 35px; /* Increase button padding */
}
nav ul li a {
    font-size: 1em; /* Was smaller, now bigger */
}
.plans h2 {
    font-size: 3em;
}

.plans p, .plans .price {
    font-size: 1.5em;
}

.plan h3 {
    font-size: 2.1em;
}

/* Navbar link hover effect */
nav ul li a:hover {
    color: rgb(212, 30, 212); /* Changes text to purple on hover */
    transition: color 0.3s ease-in-out;
}

/* Remove bullet points from the What You'll Learn list */
#course ul {
    list-style: none; /* Removes the dots */
    padding-left: 0; /* Aligns text properly */
}

/* ========== MOBILE OPTIMIERUNG (nur für kleine Bildschirme) ========== */

/* 1️⃣ Navigation als Hamburger-Menü auf Mobile */
@media screen and (max-width: 768px) {
    nav ul {
        display: none; /* Versteckt Menü auf kleinen Screens */
        flex-direction: column;
        background: #111;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        text-align: center;
        padding: 10px 0;
    }

    nav ul.active {
        display: flex; /* Zeigt das Menü, wenn es aktiv ist */
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
        font-size: 2em;
        position: absolute;
        left: -280px; /* Verschiebt das Menü nach links */
        top: 20px;
    
    }
}

/* 2️⃣ Hero Section besser lesbar */
@media screen and (max-width: 768px) {
    .hero {
        padding: 30px 15px;
    }

    .hero h1 {
        font-size: 2.2em;
    }

    .hero p {
        font-size: 1.1em;
    }
}

/* 3️⃣ Membership Plans nebeneinander auf Desktop, untereinander auf Mobile */
@media screen and (max-width: 768px) {
    .plans__container {
        flex-direction: column;
        align-items: center;
    }

    .plan {
        width: 90%;
        margin-bottom: 20px;
    }
}

/* 4️⃣ Buttons größer für Touch */
@media screen and (max-width: 768px) {
    .cta-button, .plan-btn {
        font-size: 1.1em;
        padding: 12px 20px;
    }
}

/* 5️⃣ Testimonials Box auf Mobile optimieren */
@media screen and (max-width: 768px) {
    .testimonial-box {
        width: 90%;
    }
}

/* Standardmäßig das Hamburger-Menü verstecken */
.menu-toggle {
    display: none;
}

/* Hamburger-Menü nur auf mobilen Geräten sichtbar */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block; /* Zeigt den Hamburger-Button */
        cursor: pointer;
        font-size: 2em;
        position: absolute;
        top: 15px;
        right: 20px;
        z-index: 1100;
    }

    nav ul {
        display: none; /* Standardmäßig ausblenden */
        flex-direction: column;
        background: #111;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        text-align: center;
        padding: 10px 0;
        z-index: 1000;
    }

    nav ul.active {
        display: flex; /* Wird angezeigt, wenn aktiv */
    }
}
/* Überschrift in der "Choose Your Membership" Sektion auf Mobile anpassen */
@media screen and (max-width: 768px) {
    .plans h2 {
        font-size: 2.2em; /* Verkleinert die Schriftgröße für kleine Screens */
        word-break: break-word; /* Falls nötig, bricht das Wort um */
    }
}


/* Impressum Section - Einheitliches Design */
.impressum {
    padding: 50px;
    background: #111; /* Einheitlicher Hintergrund */
    margin: 20px auto;
    border-radius: 10px;
    width: 100%;
    max-width: 1200px; /* Gleiche Breite wie andere Abschnitte */
    text-align: center; /* Alles zentrieren */
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
    padding-left: 5%;
    padding-right: 5%;
}

/* Überschrift im Impressum */
.impressum h2 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(to right, #ff4b4b, #ff0066, #8000ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Text mittig unter der Überschrift */
.impressum p {
    font-size: 1.3em;
    line-height: 1.6;
    color: white;
    max-width: 800px; /* Begrenzte Breite für bessere Lesbarkeit */
    margin: 0 auto 20px; /* Exakte Zentrierung */
    text-align: center; /* Sicherstellen, dass der Text wirklich mittig ist */
}

/* Kontakt & Links */
.impressum a {
    color: #ff4b4b;
    text-decoration: none;
    font-weight: bold;
}

.impressum a:hover {
    color: #ff0066;
}

/* Responsive Design für Mobile */
@media screen and (max-width: 768px) {
    .impressum {
        width: 90%; /* Lässt links und rechts einen kleinen Rand */
        padding: 30px;
        border-radius: 15px;
    }

    .impressum h2 {
        font-size: 2.2em;
    }

    .impressum p {
        font-size: 1.2em;
        max-width: 100%; /* Damit es nicht zu weit rechts rutscht */
        padding: 0 5%; /* Verhindert zu enge oder verschobene Darstellung */
        text-align: center; /* Sicherstellen, dass der Text exakt mittig ist */
    }
}

/* Standardmäßig ausblenden */
.hidden {
    display: none;
}

/* Sanftes Einblenden */
.show {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

/* Fade-In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Imprint-Link Farbverlauf */
#show-impressum, #show-impressum:link, #show-impressum:visited {
    background: linear-gradient(to right, #ff4b4b, #ff0066, #8000ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

/* Sicherstellen, dass der Hover-Effekt korrekt funktioniert */
#show-impressum:hover {
    -webkit-text-fill-color: #ff0066; /* Alternativer Hover-Farbverlauf */
    transition: 0.3s ease-in-out;
}

/* Discord Login Section */
.discord-login {
    text-align: center;
    padding: 50px;
    background: #111;
    margin: 20px auto;
    border-radius: 10px;
    width: 80%;
    max-width: 900px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}

/* Überschrift für den Bereich */
.discord-login h2 {
    font-size: 2.5em;
    font-weight: bold;
    background: linear-gradient(to right, #ff4b4b, #ff0066, #8000ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Discord-Login Button Styling */
.discord-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Abstand zwischen Icon & Text */
    background: #5865F2; /* Discord Blau */
    color: white;
    padding: 12px 24px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    width: fit-content;
    margin: 20px auto 0;
}

/* Korrekte Positionierung des Icons */

/* Icon-Größe & Position */
.discord-login-btn img {
    width: 45px; /* Größer machen */
    height: auto;
    display: block;
}
/* Hover Effekt */
.discord-login-btn:hover {
    background: #4752c4;
}
.profile-container {
    position: absolute;
    top: 10px;
    right: 10px;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: opacity 0.3s ease-in-out;
}

.profile-pic:hover {
    opacity: 0.7;
}

.profile-dropdown {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: opacity 0.3s ease-in-out;
}

.logout-btn {
    margin-top: 5px;
    padding: 5px 10px;
    background: linear-gradient(to right, #ff4b4b, #ff0066, #8000ff);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.logout-btn:hover {
    background: linear-gradient(to right, #ff0066, #8000ff);
}

#welcome-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 12, 12, 0.95);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    z-index: 9999;
  }
  
  #welcome-overlay.show-welcome {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  .billing-btn {
    background: linear-gradient(135deg, #a855f7, #9333ea);
    color: white;
    padding: 18px 35px; /* gleich wie .plan-btn */
    font-size: 1.3em;   /* gleich wie .plan-btn */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 0 12px rgba(147, 51, 234, 0.3);
}

.billing-btn:hover {
    background: linear-gradient(135deg, #9333ea, #a855f7); /* Umgekehrter Verlauf */
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
}

.billing-btn {
    animation: pulseGlow 2s infinite alternate;
}

.blueprint-btn {
    background: linear-gradient(to right, #1e3a8a, rgb(26, 51, 104)); /* dunkler & kräftiger */
    color: white;
    padding: 18px 35px; /* gleiche Größe wie andere */
    font-size: 1.3em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
    text-align: center;
  }
  
  .blueprint-btn:hover {
    background: linear-gradient(to right, #2b4e86, #1e3a8a); /* Reverse Fade beim Hover */
  }
  
  
    .breaker {
        padding: 60px 40px;
        text-align: center;
        background: #111;
        margin: 40px auto;
        border-radius: 12px;
        width: 100%;
        max-width: 1470px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    }
    

.break-title {
    font-size: 2.4em;
    font-weight: bold;
    background: linear-gradient(to right, #ff4b4b, #ff0066, #8000ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.break-subtext {
    font-size: 1.4em;
    font-style: italic;
    opacity: 0.9;
    color: #ccc;
}

@media screen and (max-width: 768px) {
    .breaker {
        padding: 40px 20px;
        margin: 30px 15px;
        width: auto;
        border-radius: 10px;
    }

    .break-title {
        font-size: 1.8em;
    }

    .break-subtext {
        font-size: 1.1em;
        padding: 0 10px;
    }

    .blueprint-btn {
        font-size: 1.1em;
        padding: 12px 24px;
    }
}

#library-access-card {
    display: none;
  }
  
  #library-access-card.show {
    display: block;
  }
  
