:root {
    --bg-dark: #0a0a1a;
    --card-bg: rgba(255, 255, 255, 0.05);
    --accent-teal: #7c3aed;
    --accent-gold: #f59e0b;
    --text-main: #ffffff;
    --text-dim: #b0b8d0;
    --border: rgba(124, 58, 237, 0.25);
    --nav-height: 76px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
}

.nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    background: black;
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 2000;
    border-bottom: 1px solid var(--border);
}

.nav h2 {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(to right, #fff, var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.menu {
    display: flex;
    gap: 30px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu a:hover, .menu a.active-link {
    color: var(--accent-teal);
}

.menu a.active-link {
    border-bottom: 2px solid var(--accent-teal);
    padding-bottom: 5px;
}

.menu-toggle {
    display: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.footer {
    background: #06061a;
    padding: 80px 5% 40px;
    border-top: 1px solid var(--border);
    margin-top: 60px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h3 {
    color: var(--accent-teal);
    font-size: 18px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-col a, .footer-col p {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-col a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
}

.social-icons img {
    /* filter: invert(1) brightness(0.8); */
    transition: 0.3s;
}

.social-icons a:hover img {
    /* filter: invert(1) brightness(1); */
    transform: translateY(-3px);
}

.footer-col p,
.address {
    display: flex;        
    align-items: flex-start;
    gap: 8px;              
    margin-bottom: 12px;
    line-height: 1.6;
}
.footer-col p span,
.address span {
    min-width: 20px;   /* 🔥 ensures perfect alignment */
    display: inline-block;
}
.animate-up {
    transform: translateY(100px);
    opacity: 0;
}
.animate-up.show {
    transform: translateY(0);
    opacity: 1;
}
.animate-up {
    transition: all 0.8s ease;
}
.footer.animate-up {
    transition: all 1s ease;
}
@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: #000000;
        padding: 40px 0;
        text-align: center;
        border-bottom: 1px solid rgba(124, 58, 237, 0.25);
    }
    .menu a {
        color: #ffffff !important;
    }
    .menu.active { display: flex; }
    .menu-toggle { display: block !important; color: #ffffff; }
}
.nav-header {
    display: flex;
    align-items: center;
    gap: 5px; /* ensures no space */
}

.nav-title {
    margin: 0; /* remove default h1 margin */
}