@charset "utf-8";
/* CSS Document */

/* Navbar */
.navbar {
    transition: background-color 0.3s ease-in-out;
    font-family: 'Germania One', sans-serif;
    text-transform: uppercase;
    font-size: 1.2rem;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

/* Navbar stays transparent over hero */
.navbar.transparent {
    background-color: transparent;
}

/* Default Navbar */
.navbar {
    height: 80px; /* Default Height */
    transition: all 0.3s ease-in-out;
}

/* Navbar Shrinks When Scrolling */
.navbar.scrolled {
    background-color: #141f34  !important;
    height: 60px; /* Keeps navbar smaller */
    padding: 10px 0; /* Reduces padding evenly */
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center; /* Keeps text centered */
}



/* Navbar brand */
.navbar-brand {
    font-size: 1.8rem;
    color: white !important;
}

/* Navbar links */
.navbar-nav {
    display: flex;
    gap: 20px;
}

/* Float right on desktop */
@media (min-width: 992px) {
    .navbar-nav {
        margin-left: auto;
        background: none !important;
    }
}

/* Mobile Navbar Menu */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: #141f34  !important; /* Match scrolled navbar */
        padding: 10px 0;
        text-align: right; /* Align links to the right */
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-end; /* Right-align links */
        padding-right: 20px; /* Adds space from the edge */
    }
}


/* Mobile dropdown menu links */
.navbar-nav .nav-link {
    padding: 10px;
    display: block;
    color: white !important;
    text-decoration: none;
    transition: color 0.3s;
}

.navbar-nav .nav-link {
    position: relative;
    color: white !important;
    text-decoration: none;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #ffcc00 !important;
}

/* Gold underline effect on hover */
.navbar-nav .nav-link::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background-color: #FFD700; /* Gold */
    position: absolute;
    left: 50%;
    bottom: -3px;
    transition: width 0.3s ease, left 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
    left: 0;
}


/* Navbar toggler button */
.navbar-toggler {
/*    border: none !important;*/
    background: none !important;
    color: white !important;
    font-size: 1.5rem;
    cursor: pointer;
}



.mini-nav-link {
    display: inline-block;
    font-family: 'Germania One', sans-serif;
    font-size: 1.2rem; /* Match actual navbar link size */
    color: white;
    background-color: #141f34; /* Match navbar background */
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mini-nav-link:hover {
    color: #FFD700;
    text-decoration: none;
}


.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 1);
    border-radius: 4px;
    padding: 6px 10px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100vw;
        background-color: #141f34 !important;
        padding: 15px 20px;
        z-index: 999;
    }
}

.navbar-nav .mini-nav-link {
    display: block;
    padding: 10px 0;
    text-align: right;
}

