:root {
    --primary-clr: #BFA511;
    --primary-text-clr: #1E1E1E;
    --secondary-text-clr:#0F172A;
    --white: #fff;
    --black: #000;
    --primary-font:"Spectral", serif;
    --secondary-font:"Manrope", sans-serif;
    /* Glass Variables */
    --glass-bg: rgba(255, 255, 255, 0);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-blur: blur(12px);
    --bs-body-font-family: var(--secondary-font) !important;
    --section-padding:100px;
}
p{
    font-size: clamp(0.875rem, 0.7936rem + 0.2294vw, 1rem);
}
body {
    font-family: var(--secondary-font);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #fbfbfb;
    scroll-behavior: smooth;
}

/* Header */
.glass-header {
    position: fixed;
    top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
}

/* Glass Nav Container */
.glass-nav {
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);

    background: var(--glass-bg);
    border: 1px solid var(--glass-border);

    border-radius: 50px;
    padding: 10px 20px;

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

    transition: all 0.3s ease;
}

/* Nav List */
.nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
}

/* Nav Links */
.nav-link {
    text-decoration: none;
    color: var(--primary-text-clr);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

/* Hover */
.nav-link:hover {
    background: rgba(255, 255, 255, 0.4);
    color: var(--black);
    font-weight: 700;
}

/* Active State */
.nav-link.active {
    /* background: var(--white); */
    color: var(--black);
    font-weight: 700;
}

/* Hero (just placeholder) */
.hero {
    height: 100vh;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-list {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        font-size: 14px;
        padding: 6px 12px;
    }
}

/* smoother animations */
.portal-card,
.contact-card,
.main-img,
.circle-bg {
    will-change: transform, opacity;
}

/* subtle hover polish */
.portal-card {
    transition: all 0.3s ease;
}
.portal-card:hover {
    transform: translateY(-8px) scale(1.02);
}
