/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

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

/* Header */
header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffc107;
}

/* Hero Section */
.hero {
    background: url('/static/site/img/hero.jpg') no-repeat center center;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero .container {
    max-width: 800px;
}

.hero h1 {
    font-size: 4em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.hero .btn {
    background-color: #ffc107;
    color: #333;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.hero .btn:hover {
    background-color: #ffca28;
}

/* Subscription Plans */
.plans {
    padding: 100px 0;
    background-color: #fff;
    text-align: center;
}

.plans h2 {
    margin-bottom: 50px;
    font-size: 3em;
}

.plan {
    background-color: #f4f4f4;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.plan:hover {
    transform: translateY(-10px);
}

.plan h3 {
    color: #333;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.plan p {
    color: #666;
    margin-bottom: 20px;
}

.plan ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 20px;
}

.plan ul li {
    margin-bottom: 10px;
}

.plan .btn {
    background-color: #007bff;
    color: #fff;
    padding: 12px 24px;
    font-size: 1.1em;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.plan .btn:hover {
    background-color: #0056b3;
}

/* About Us */
.about {
    padding: 100px 0;
    text-align: center;
    background-color: #f9f9f9;
}

.about h2 {
    font-size: 3em;
    margin-bottom: 30px;
}

.about p {
    font-size: 1.2em;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

/* Contact Us */
.contact {
    padding: 100px 0;
    text-align: center;
}

.contact h2 {
    font-size: 3em;
    margin-bottom: 30px;
}

.contact .contact-info {
    list-style: none;
    padding: 0;
    text-align: center;
    margin-bottom: 30px;
}

.contact .contact-info li {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.contact .social-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.contact .social-links li {
    display: inline;
}

.contact .social-links a {
    color: #333;
    font-size: 2em;
    transition: color 0.3s;
}

.contact .social-links a:hover {
    color: #007bff;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    position: relative;
    margin-top: 50px;
}

footer p {
    font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #333;
        padding: 10px 0;
        text-align: center;
        z-index: 999;
        transition: transform 0.3s;
    }

    .nav-links.active {
        transform: translateY(0);
    }

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

    .nav-links a {
        color: #fff;
        font-size: 1.2em;
    }

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

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

    .plan {
        padding: 20px;
    }
}

.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    color: #fff;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 1.2em;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 9999;
    transition: background-color 0.3s, transform 0.3s;
}

.scroll-top:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}
