
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
    background: black;
    color: #f5f5f5;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}


#HomeBackground {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.05));
    z-index: -1;
    pointer-events: none;
}


.navbar {
    position: fixed;
    top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
}

.navbar-container {
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2.5rem;
    background: rgba(10,10,40,0.35);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.15);
}

.navbar-logo {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: yellow;
    text-decoration: underline;
    font-family: Georgia,'Times New Roman',Times,serif;
}

.navbar-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.navbar-menu a {
    text-decoration: underline;
    color: yellow;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.05rem;
}


.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: yellow;
    border-radius: 3px;
}


.MainHead {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: Georgia,'Times New Roman',Times,serif;
}

.MainContainer h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    letter-spacing: 8px;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1.1;
    text-decoration: underline;
    color: #FFD700;
    text-shadow: 0 0 25px rgba(255,215,0,0.4);
}


.about-section {
    background: rgba(10,10,40,0.95);
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
}

.carousel-container {
    position: relative;
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(10,10,40,0.6);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
}

.carousel-container h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 8px;
    text-transform: uppercase;
    font-weight: 800;
    color: #FFD700;
    text-shadow: 0 0 25px rgba(255,215,0,0.4);
    text-decoration: underline;
    margin-bottom: 3rem;
}

.carousel {
    position: relative;
}

.carousel-slide {
    display: none;
    font-size: 1.3rem;
    line-height: 1.8;
    color: white;
}

.carousel-slide.active {
    display: block;
    animation: fadeUp 0.6s ease forwards;
}

.video-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 1.5rem auto;
}

.carousel-video {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(255,215,0,0.4);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    background: rgba(0,0,0,0.6);
    color: #FFD700;
    border: none;
    padding: 0.8rem 1.2rem;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.3s ease;
    z-index: 10;
}

.carousel-arrow:hover {
    background: rgba(0,0,0,0.9);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.left {
    left: -70px;
}

.carousel-arrow.right {
    right: -70px;
}

.carousel-slide p {
    font-size: 1.2rem;
    color: #f5f5f5;
    max-width: 700px;
    margin: 0 auto;
}


.footer {
    width: 100%;
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
    background: rgba(10,10,40,0.35);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.15);
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-container p {
    color: yellow;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-menu a {
    color: yellow;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.footer-menu a:hover {
    color: #FFD700;
    text-decoration: underline;
}


@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    .navbar-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem 1.5rem;
    }

    .navbar-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10,10,40,0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 2rem 0;
        display: none;
        border-radius: 20px;
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-menu a {
        font-size: 0.95rem;
        width: auto;
        display: block;
    }

    .MainHead {
        min-height: 65vh;
    }

    .carousel-container {
        padding: 1.5rem;
    }

    .carousel-video {
        border-radius: 12px;
    }

    .carousel-arrow {
        font-size: 1.8rem;
        padding: 0.4rem 0.6rem;
    }

    .carousel-arrow.left {
        left: 15px;
    }

    .carousel-arrow.right {
        right: 15px;
    }

    .carousel-slide p {
        font-size: 1rem;
    }
}