/* Navigation & Footer Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    background-color: var(--primary-red) !important;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4.5rem;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.logo-text {
    font-size: 1.625rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: white;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: -0.01em;
}

.nav-link:hover {
    color: var(--accent-yellow);
}

.btn-primary {
    background-color: white !important;
    color: var(--primary-red) !important;
}

.btn-primary:hover {
    background-color: var(--accent-yellow) !important;
    color: var(--primary-red) !important;
}

.mobile-menu-btn {
    display: block;
    padding: 0.5rem;
    color: var(--slate-100);
    border-radius: 0.5rem;
    transition: background-color 0.2s;
    background: transparent;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn i {
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-menu-drawer {
    display: none;
    background-color: white;
    border-bottom: 1px solid var(--slate-100);
}

.mobile-menu-drawer.active {
    display: block;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--slate-600);
    text-decoration: none;
    border-radius: 0.75rem;
    transition: all 0.2s;
}

.mobile-nav-link:hover {
    color: var(--primary-red);
    background-color: rgba(217, 30, 39, 0.05);
}

/* Footer Styles */
.footer {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: var(--slate-950);
    color: var(--slate-500);
}

.footer-top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-top {
        flex-direction: row;
    }
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: var(--slate-500);
    transition: color 0.2s;
}

.social-link:hover {
    color: white;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--slate-900);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        text-align: left;
    }
}
