/* -------------------- */
/* GLOBAL STYLE */
/* -------------------- */

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: #06060b;
    color: white;
}

* {
    box-sizing: border-box;
}

/* -------------------- */
/* NAVBAR */
/* -------------------- */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 30px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo {
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 1px;
}

/* NAV LINKS */
nav {
    display: flex;
    gap: 25px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

nav a:hover {
    color: #c768ff;
}

/* -------------------- */
/* HAMBURGER MENU */
/* -------------------- */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

/* -------------------- */
/* MOBILE */
/* -------------------- */

@media (max-width: 820px) {
    nav {
        position: absolute;
        top: 65px;
        right: 20px;
        background: rgba(0, 0, 0, 0.88);
        backdrop-filter: blur(8px);
        width: 180px;
        padding: 20px;
        border-radius: 10px;
        display: none;
        flex-direction: column;
        gap: 15px;
        border: 1px solid rgba(255,255,255,0.1);
    }

    nav.show {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

/* -------------------- */
/* HERO SECTION */
/* -------------------- */

.hero {
    height: 100vh;
    background: url("media/bg gif.gif") center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-content {
    text-align: center;
    max-width: 700px;
    position: relative;
    z-index: 10;
}

.badge {
    padding: 6px 14px;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 12px;
}

.gradient-text {
    background: linear-gradient(90deg, #b76dfd, #6f72ff);
    -webkit-background-clip: text;
    color: transparent;
}

.subtext {
    color: #d1d1d1;
    margin-bottom: 20px;
    font-size: 15px;
}

/* -------------------- */
/* BUTTONS */
/* -------------------- */

.button-group {
    margin-top: 20px;
}

.primary-btn,
.secondary-btn {
    padding: 12px 22px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.primary-btn {
    background: linear-gradient(90deg, #b76dfd, #6f72ff);
    color: #fff;
}

.secondary-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}

.primary-btn:hover {
    transform: scale(1.05);
}

.secondary-btn:hover {
    border-color: #fff;
}

/* -------------------- */
/* SCROLL BUTTON */
/* -------------------- */

.scroll-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 26px;
    background: none;
    color: #fff;
    border: none;
    cursor: pointer;
    animation: bounce 1.6s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* -------------------- */
/* SECTIONS */
/* -------------------- */

.section {
    padding: 80px 25px;
    text-align: center;
    background: #111016;
}

.about {
    background: #f6f2ff;
    color: #2c2b32;
}

.features {
    background: #18161f;
}

/* FEATURES GRID */
.feature-grid {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    margin-top: 35px;
}

.feature-box {
    padding: 25px;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
}

/* -------------------- */
/* PLAN CARD */
/* -------------------- */

.plans {
    background: #100f14;
}

.plan-card {
    max-width: 350px;
    margin: auto;
    padding: 35px;
    background: rgba(255,255,255,0.08);
    border-radius: 14px;
}

.price {
    font-size: 32px;
    margin: 10px 0;
    background: linear-gradient(90deg, #c06bff, #7f7aff);
    -webkit-background-clip: text;
    color: transparent;
}

.buy-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 18px;
    background: #8f5bfa;
    color: white;
    border-radius: 10px;
    text-decoration: none;
}

/* -------------------- */
/* FOOTER */
/* -------------------- */

.footer {
    text-align: center;
    padding: 30px;
    background: #0a0a0f;
    color: #ccc;
}

.footer a {
    color: #b76dfd;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
