a {
    text-decoration: none;
}

/* Header Container */
.header-container {
    max-width: 100vw;
    width: 100vw;
    z-index: 99;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000;
}

.header-content {
    padding: 0.5rem 10rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    width: 30%;
}

.logo {
    width: 50%;
}

.navigation {
    width: 60%;
}

.nav-list {
    display: flex;
    justify-content: space-between;
    list-style: none;
}

.nav-link {
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #d40014;
}

.nav-active {
    display: flex;
    flex-direction: column;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.nav-active span {
    background-color: #d40014;
    width: 100%;
    margin-top: 2px;
    height: 0.2rem;

}

.nav-active:hover {
    cursor: default;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 0.2rem;
    background-color: #d40014;
    width: 0;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu Icon */
.mobile-menu-icon {
    max-width: 100vw;
    width: 100vw;
    z-index: 99;
    background-color: #000;
}

.mobile-menu-icon>div {
    padding: 1rem;
    display: flex;
}

/* Mobile Menu */
.mobile-menu {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    display: block;
    z-index: 100;
}

.mobile-menu-icon>div>a {
    width: 50%;
}

.mobile-menu-icon>div>a>img {
    width: 70%;
}

.mobile-menu-icon>div>div {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
}

.mobile-cta {
    background-color: #d40014;
    border: none;
    border-radius: 0.2rem;
    color: white;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    letter-spacing: 0.025rem;
    font-weight: 600;
}

.hamburger-icon {
    color: white;
}

.mobile-menu.hidden {
    display: none;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 100%;
    position: absolute;
}

.side-menu {
    width: 70%;
    z-index: 100;
    background-color: #2b2b2b;
    position: absolute;
    right: 0;
    height: 100%;
    transform: translateX(100%);
    transition: transform 1s ease-in-out;
}

.side-menu .menu-content {
    padding: 24px;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.close-icon {
    width: 24px;
    height: 24px;
}

.side-menu-list {
    margin-top: 32px;
    list-style: none;
    padding: 0;
}

.side-menu-link {
    display: block;
    font-size: 1.25rem;
    color: white;
    padding: 8px 0;
}

.side-menu-link:hover {
    color: #d40014;
}

.side-menu-link-active {
    display: block;
    font-size: 1.25rem;
    padding: 8px 0;
    color: #d40014;
}

/* Media Queries */
@media (min-width: 468px) {
    .mobile-menu-icon {
        display: none;
    }
}

@media (max-width: 468px) {
    .header-content {
        display: none;
    }

    .mobile-menu-icon {
        display: block;
    }
}
