/* ==================================================
    padding: 14px 28px;
    border: 1px solid white;
    color: white;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.btn:hover {
    background: white;
    color: black;
}

/* =========================
   HEADINGS
========================= */

.title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 7rem);
    letter-spacing: 5px;
    line-height: 0.95;
}

.subtitle {
    color: var(--secondary);
    line-height: 1.8;
    max-width: 600px;
}

/* =========================
   NAVBAR
========================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(12px);
    background: rgba(0,0,0,0.55);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 6px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: rgba(255,255,255,0.75);
    transition: var(--transition);
}

.nav-links a:hover {
    color: white;
}

/* =========================
   REUSABLE CARDS
========================= */

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .nav-links {
        gap: 18px;
    }

    .section {
        padding: 70px 0;
    }
}