/* Allgemeine Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Dark Mode */
body.dark-mode {
    background-color: #121212;
    color: #fff;
}

header, footer {
    background-color: #333;
    color: white;
    padding: 10px;
}

header .logo a {
    text-decoration: none;
    color: #fff;
    font-size: 1.5em;
}

.navbar .nav-links {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.navbar .nav-links a {
    color: white;
    text-decoration: none;
}

footer {
    text-align: center;
    font-size: 0.8em;
}

footer a {
    color: #bbb;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    /* Navigation */
    .navbar {
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        display: block;
        margin-top: 10px;
    }

    .nav-links a {
        padding: 10px;
        display: block;
        text-align: center;
    }

    /* Hero Section */
    .hero {
        text-align: center;
        padding: 40px 20px;
    }

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

    .hero p {
        font-size: 1.2em;
        margin-bottom: 20px;
    }

    .hero button {
        width: 100%;
        padding: 12px;
        font-size: 1em;
    }

    /* Abo-Modelle */
    .pricing {
        padding: 30px 20px;
        text-align: center;
    }

    .subscription-plans {
        display: block;
        gap: 20px;
    }

    .plan {
        background-color: #222;
        padding: 20px;
        margin: 10px 0;
        border-radius: 8px;
    }

    .plan h3 {
        font-size: 1.5em;
        margin-bottom: 10px;
    }

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

    /* FAQ */
    .faq {
        padding: 20px;
    }

    .faq ul {
        list-style-type: none;
        padding-left: 0;
    }

    .faq li {
        font-size: 1.1em;
        margin-bottom: 10px;
    }

    /* Watchlist */
    .watchlist {
        padding: 20px;
    }

    /* Account Section */
    .account {
        padding: 30px 20px;
        text-align: center;
    }

    .account button {
        width: 100%;
        padding: 12px;
        font-size: 1.1em;
        margin-top: 10px;
    }

    /* Footer */
    footer {
        padding: 20px;
    }

    .dark-mode-toggle {
        display: none;
    }
}

/* Tablet and larger devices (portrait mode) */
@media screen and (max-width: 1024px) {
    /* Hero Section */
    .hero h1 {
        font-size: 2em;
    }

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

    /* Subscription Plans */
    .subscription-plans {
        display: flex;
        gap: 20px;
        justify-content: center;
    }

    .plan {
        width: 30%;
    }

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

    /* Account Section */
    .account {
        padding: 40px 20px;
    }
}

/* Desktop */
@media screen and (min-width: 1025px) {
    .navbar .nav-links {
        display: flex;
        justify-content: flex-end;
    }

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

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

    .subscription-plans {
        display: flex;
        justify-content: space-between;
    }

    .plan {
        width: 30%;
    }

    .faq ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .faq li {
        font-size: 1.2em;
    }

    .account button {
        width: auto;
    }

    .dark-mode-toggle {
        display: block;
    }
}
