/* Navigation styles for all pages */
.navbar-custom {
    background: #0a0d1a;
    border-bottom: 4px solid #ffc107;
    padding: 0 1.2rem;
    min-height: 0;
    max-height: 100px;
    display: flex;
    align-items: center;
    overflow: visible;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

.navbar-logo {
    height: 100px;
    width: auto;
    margin-right: 0.5rem;
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: bold;
    color: #ffd600 !important;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    gap: 1rem;
    min-height: 0;
}

.navbar-brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
    min-height: 0;
}

.navbar-tagline {
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.5px;
    align-self: flex-start;
    line-height: 1.2;
}

.navbar-nav {
    gap: 1rem;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-size: 1.1rem;
    margin: 0;
    border-radius: 2rem;
    padding: 0.6rem 1.5rem;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    font-weight: 500;
    letter-spacing: 0.3px;
    will-change: transform, background-color, box-shadow;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:focus, 
.navbar-nav .nav-link:hover {
    background: linear-gradient(90deg, #ffd600 0%, #ff9800 100%);
    color: #222 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 214, 0, 0.2);
}

.navbar-toggler {
    border: 2px solid #ffd600;
    padding: 0.4rem 0.6rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 214, 0, 0.25);
}

.navbar-toggler:hover {
    background: rgba(255, 214, 0, 0.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffd600' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .navbar-custom {
        padding: 0.5rem 1rem;
        max-height: 80px;
    }
    .navbar-brand {
        font-size: 1.5rem;
    }
    .navbar-logo {
        width: 60px;
        height: 60px;
        object-fit: contain;
        margin-right: 0.5rem;
    }
    .navbar-tagline {
        font-size: 0.75rem;
        max-width: 150px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .navbar-nav {
        margin-top: 1rem;
        gap: 0.5rem;
        background: #0a0d1a;
        padding: 1rem;
        border-radius: 0.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    .navbar-nav .nav-link {
        font-size: 1rem;
        padding: 0.5rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .navbar-logo {
        width: 45px;
        height: 45px;
        object-fit: contain;
    }
    .navbar-custom {
        max-height: 70px;
    }
    .navbar-tagline {
        font-size: 0.65rem;
        max-width: 120px;
    }
    .navbar-brand {
        font-size: 1.3rem;
    }
}

/* Add padding to body to prevent content from hiding under fixed navbar */
body {
    padding-top: 100px;
}

/* Adjust container margin for fixed navbar */
.container {
    margin-top: 0;
} 