.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    font-family: sans-serif;
  
}:root {
    --nav-text: #ffffff;
    --nav-muted: rgba(255, 255, 255, 0.7);
    --nav-accent: #00e5ff;
    --nav-bg-glass: rgba(0, 0, 0, 0.35);
}

body {
    margin: 0;
    padding-bottom: 80px;
    color: white;
    background-color: #05013d;
}


.hero h1 {
    font-size: 150px;
    font-weight: 700;
    font-family: "Zalando Sans Expanded", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: whitesmoke;
}

.hero p {
    font-size: 25px;
    font-family: "Zalando Sans Expanded", sans-serif;
    font-optical-sizing: auto;
}

.nav-small {
    display: none;



}

/* ==========================
       NAVBAR BASE
    ========================== */
.app-navbar {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
}

.app-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
}

.app-brand {
    font-size: 40px;
    font-weight: 700;
    font-family: "Zalando Sans Expanded", sans-serif;
    font-optical-sizing: auto;
    color: var(--nav-text);
    text-decoration: none;
}

.app-brand:hover {
    color: var(--nav-text);
}

/* ==========================
       NAV ITEMS
    ========================== */
.app-nav {
    display: flex;
    gap: 30px;
    font-family: "Zalando Sans semiExpanded", sans-serif;
    font-optical-sizing: auto;
    list-style: none;
    margin: 0;
    padding: 0;
}

.app-nav a {
    color: var(--nav-muted);
    text-decoration: none;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.app-nav a i {
    font-size: 18px;
    display: none;
}

.app-nav a:hover {
    color: var(--nav-text);
}

.app-nav a.active {
    color: var(--nav-text);
}

.app-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--nav-accent);
}

/* ==========================
       MOBILE BOTTOM TRANSPARENT NAV
    ========================== */
@media (max-width: 768px) {
    .app-navbar {
        position: fixed;
        bottom: 0;
        top: auto;
        background: var(--nav-bg-glass);
        backdrop-filter: blur(10px);
    }

    .app-navbar-inner {
        padding: 10px 0;
        justify-content: center;
    }

    .app-brand {
        display: none;
    }

    .app-nav {
        width: 100%;
        justify-content: space-around;
        gap: 0;
    }

    .app-nav a {
        flex-direction: column;
        font-size: 12px;

    }

    .app-nav a i {
        font-size: 20px;
        display: block;

    }

    .app-nav a.active::after {
        display: none;
    }

    .hero h1 {
        font-size: 55px;
    }

    .hero p {
        font-size: 17px;
    }

    .nav-small {
        display: flex;
        background-color: #02001f;
    }

    .brand-small {
        color: whitesmoke;
        font-weight: 700;
        font-family: "Zalando Sans Expanded", sans-serif;
        font-size: 25px;


    }
}








footer {
    letter-spacing: 0.3px;
    font-family: 'Poppins', sans-serif;
}

/* Footer links with hover animation */
.footer-link {
    color: #9ca3af;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-link i {
    transition: transform 0.3s ease;
}

.footer-link:hover {
    color: #dc3545;
}

.footer-link:hover i {
    transform: translateX(4px);
}

/* Social icons hover */
.social-link {
    color: #9ca3af;
    font-size: 1.3rem;
    transition: transform 0.3s, color 0.3s;
}

.social-link:hover {
    color: #dc3545;
    transform: scale(1.2) rotate(10deg);
}

/* Button hover animation */
.btn-hover {
    transition: transform 0.3s, background-color 0.3s;
}

.btn-hover:hover {
    transform: translateY(-3px);
    background-color: #b02a37;
}



/* From Uiverse.io by cssbuttons-io */
