/* Navigation */
nav {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    ;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

nav::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: var(--stripe-thickness);
    background: var(--stripe-pattern);
}

.logo {
    display: flex;
    align-items: center;
}

.tagline-video {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    padding-left: 1rem;
    height: 75px;
    align-items: center;
    pointer-events: none;
    overflow: hidden;
}

.tagline-video video {
    height: 110%;
    width: auto;
    object-fit: contain;
    transform: scale(2.8);
    transform-origin: left center;
}

.tagline-video.hide {
    display: none;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    background: transparent;
    border: none;
}

.burger-menu span {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 110px;
    right: -100%;
    width: 270px;
    height: calc(100vh - 70px);
    background: var(--secondary-color);
    border-left: 3px solid var(--primary-color);
    transition: right 0.3s ease, visibility 0.3s ease;
    z-index: 999;
    padding: 2rem 0;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    visibility: hidden;
}

.mobile-menu.active {
    right: 0;
    visibility: visible;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu ul li {
    border-bottom: 1px solid rgba(236, 167, 1, 0.2);
}

.mobile-menu ul li a {
    display: block;
    padding: 1.5rem 2rem;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.mobile-menu ul li a:hover {
    background: rgba(236, 167, 1, 0.2);
    padding-left: 2.5rem;
}

nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav a:hover {
    background: rgba(236, 167, 1, 0.2);
    transform: translateY(-2px);
    color: var(--primary-color-hover);
}

@media (max-width: 1500px) {
    nav {
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem 2rem;
    }

    .tagline-video {
        display: none;
    }

    nav ul {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }
}