.navbar {
    font-size: 1.6rem;
    min-height: 8rem;
    transition: all 0.3s ease;
    background-color: rgba(145, 168, 243, 0.233) !important;
    backdrop-filter: blur(0.8rem);
    -webkit-backdrop-filter: blur(0.8rem);
    box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1030;
}

.navbar-brand {
    font-family: "Krona One", sans-serif;
    font-size: 2.4rem;
    font-weight: bold;
    color: white !important;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand:hover {
    color: rgba(212, 145, 243, 0.8) !important;
    transform: scale(1.01);
}

.navbar-nav .nav-link {
    font-family: "Krona One", sans-serif;
    color: white !important;
    font-size: 1.4rem;
    padding: 1rem 2rem !important;
    margin: 0 0.5rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: white !important;
    background-color: rgba(212, 145, 243, 0.2);
    transform: translateY(-0.2rem);
}

.navbar-nav .nav-item.active .nav-link {
    color: rgba(212, 145, 243, 0.9) !important;
    background-color: rgba(212, 145, 243, 0.15);
    box-shadow: inset 0 0 1rem rgba(212, 145, 243, 0.3);
}

.navbar-nav .dropdown-menu {
    background-color: rgba(33, 37, 41, 0.95);
    backdrop-filter: blur(1rem);
    -webkit-backdrop-filter: blur(1rem);
    border: none;
    border-radius: 1rem;
    margin-top: 0.5rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    font-family: "Krona One", sans-serif;
    font-size: 1.3rem;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    color: white;
    background-color: rgba(212, 145, 243, 0.2);
}

.navbar-toggler {
    border: 0.2rem solid rgba(212, 145, 243, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 0.3rem rgba(212, 145, 243, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(212, 145, 243, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.header-image-container {
    width: 100%;
    height: 60rem;
    overflow: hidden;
    margin: 0 auto 3rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 0 0;
    border-width: 0 0 0.15rem 0;
    border-style: solid;
    border-color: rgba(212, 145, 243, 0.9);
}

.header-image-container img {
    object-fit: contain;
    object-position: center;
}

.header-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.1) 50%,
            transparent 100%);
    z-index: 1;
}

.header-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.container-fluid h2 {
    font-family: "Krona One", sans-serif;
    font-size: 3.2rem;
    color: rgba(212, 145, 243, 0.9) !important;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.container-fluid hr {
    border: none;
    height: 0.2rem;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(212, 145, 243, 0.6) 50%,
            transparent 100%);
    margin: 2rem auto 4rem;
    width: 80%;
    border-radius: 0.1rem;
}

.navbar.scrolled {
    min-height: 6rem;
    background-color: rgba(33, 37, 41, 0.98) !important;
    box-shadow: 0 0.3rem 1.5rem rgba(0, 0, 0, 0.3);
}