/* =======================
   FONTS
======================= */

@font-face {
    font-family: "Inter";
    src: url("./fonts/Inter-VariableFont_opsz\,wght.woff2") format("woff2");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}


/* =======================
   HEADER
======================= */

.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
}

.navbar {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-box {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    padding: 0.4rem 0.6rem;
    border-radius: 12px;
    transition: 0.2s ease;
}

.logo-box:hover {
    background: rgba(79, 124, 115, 0.08);
}

.logo h2 {
    font-size: 1.1rem;
    font-weight: 600;
}

.logo span {
    font-size: 0.9rem;
    color: #6b7280;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a,
.mobile-nav a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: 0.2s ease;
}

.nav a:hover,
.mobile-nav a:hover {
    color: #4f7c73;
}

/* =======================
   MOBILE NAV
======================= */

.mobile-menu-btn {
    display: none;
    border: none;
    background: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav {
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 1rem 4%;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid #e5e7eb;

    /* ✨ Animation */
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.25s ease;
}

.mobile-nav.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* =======================
   FOOTER
======================= */

.footer {
    padding: 2rem 0;
    border-top: 1px solid #e5e7eb;
    background: #e9efe9;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #4b5563;
    text-decoration: none;
}

.footer-links a:hover {
    color: #4f7c73;
}

/* =======================
   RESPONSIVE
======================= */

@media (max-width: 380px) {

    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 650px) {
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}