/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    background: linear-gradient(135deg, #080010, #0C041B, #15000B);
    background-attachment: fixed;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center; /* Main container is now centered */
    align-items: center;
    padding: 1rem 3rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0px 0px 10px #ff00cc;
    flex: 1;
}
.logo span {
    color: #ff00cc;
}

nav {
    flex: 1;
    display: flex;
    justify-content: center; /* Perfectly center links */
}
nav a {
    margin: 0 1rem;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
    font-weight: bold;
}
nav a:hover {
    color: #ff00cc;
    text-shadow: 0px 0px 8px #ff00cc;
}

.buttons {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
.buttons .btn {
    margin-left: 10px;
    padding: 0.4rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    background: #ff00cc;
    color: white;
    box-shadow: 0px 0px 15px #ff00cc80;
    transition: 0.3s ease;
}
.buttons .btn:hover {
    box-shadow: 0px 0px 25px #ff00cc;
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    padding: 0 20px;
}

.tagline {
    letter-spacing: 2px;
    color: #ff00cc;
    font-size: 1rem;
    font-weight: bold;
    text-shadow: 0px 0px 10px #ff00cc;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin: 15px 0;
    text-shadow: 0px 0px 15px rgba(255, 0, 204, 0.3);
}
.hero h1 span {
    background: linear-gradient(90deg, #ff00cc, #ff0077);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    text-shadow: 0px 0px 20px rgba(255, 0, 204, 0.4);
}

.subtitle {
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.2rem;
    opacity: 0.85;
}

/* Buttons */
.hero-buttons {
    margin-top: 30px;
}

.btn.primary {
    background: #ff00cc;
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0px 0px 20px #ff00cc80;
    transition: all 0.3s ease;
}
.btn.primary:hover {
    box-shadow: 0px 0px 30px #ff00cc;
    transform: scale(1.08);
}

.btn.outline {
    border: 2px solid #fff;
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    margin-left: 10px;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.btn.outline:hover {
    background: white;
    color: black;
    box-shadow: 0px 0px 20px white;
}

/* Pricing Section */
.pricing {
    padding: 80px 20px;
    text-align: center;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 40px;
    text-shadow: 0px 0px 15px rgba(255, 0, 204, 0.5);
}

.card-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    flex: 1;
    min-width: 280px;
    max-width: 300px;
    backdrop-filter: blur(10px);
    box-shadow: 0px 0px 15px rgba(255, 0, 204, 0.15);
    transition: all 0.3s ease;
}
.card:hover {
    box-shadow: 0px 0px 25px rgba(255, 0, 204, 0.5);
    transform: translateY(-5px);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: bold;
    text-shadow: 0px 0px 10px #ff00cc70;
}

.card .price {
    font-size: 2rem;
    font-weight: bold;
    color: #ff00cc;
    margin: 15px 0;
    text-shadow: 0px 0px 10px #ff00cc70;
}

.card ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 25px;
}
.card ul li {
    margin: 10px 0;
    opacity: 0.85;
}

.card.highlighted {
    background: rgba(255, 0, 204, 0.1);
    border: 2px solid #ff00cc;
    box-shadow: 0px 0px 30px rgba(255, 0, 204, 0.3);
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        text-align: center;
    }
    .navbar nav {
        margin-top: 10px;
    }
    .navbar nav a {
        display: inline-block;
        margin: 5px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .card-container {
        flex-direction: column;
        align-items: center;
    }
    .card {
        max-width: 90%;
    }
}

/* Make particles cover whole page */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Send behind content */
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: auto; /* Push to the right */
}
.hamburger .bar {
    height: 3px;
    width: 25px;
    background-color: white;
    margin: 4px 0;
    border-radius: 3px;
}


/* Mobile Menu */
#nav-links.active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 55px;
    right: 20px;
    background: rgba(0, 0, 0, 1);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 0px 0px #ff00cc50;
}

#nav-links.active a {
    display: block;
    margin: 10px 0;
}

/* Responsive Fix */
@media (max-width: 768px) {
    nav {
        display: none; /* Hidden by default */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px; /* Exactly under navbar */
        left: 0;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(10px);
        text-align: center;
        padding: 10px 0;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    nav a {
        margin: 12px 0;
        font-size: 1.1rem;
        display: block;
    }

    nav.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .buttons {
        display: none; /* Hide right-side buttons on mobile */
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
    }

    /* Keep logo left & hamburger right */
    .navbar {
        flex-direction: row;
        justify-content: space-between;
    }
}