.navbar {
    background-color: white !important;
    padding: 0.9rem 2rem;
    margin-bottom: 2rem; /* Gap below navbar */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222 !important;
}

.navbar-nav {
    gap: 0.5rem;
}

.nav-link {
    color: #555 !important;
    font-weight: 500;
    padding: 0.5rem 0.9rem !important;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: #222 !important;
    background-color: #f5f5f5;
}

.nav-link.active {
    color: #222 !important;
    font-weight: 600;
}

.navbar-brand:hover {
    color: #444 !important;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #ddd;
    margin-top: 3rem;
    padding: 1.5rem 0;
}

.f-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-align: center;
}

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

.f-info-socials a {
    color: #222;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.f-info-socials a:hover {
    color: #fe424d; /* WanderLust theme color */
    transform: translateY(-3px);
}

.f-info-brand {
    color: #555;
    font-size: 0.95rem;
}

.f-info-links {
    display: flex;
    gap: 1rem;
}

.f-info-links a {
    text-decoration: none;
    color: #555;
    transition: color 0.3s ease;
}

.f-info-links a:hover {
    color: #fe424d;
    text-decoration: underline;
}

body{
    background-color: #f8f9fa;
}

