@import url('https://fonts.googleapis.com/css2?family=Special+Elite&family=Zilla+Slab:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

/* 
 Developed by Atif Saleem 
*/

html,
body {
    scroll-behavior: smooth;
}

/* General Styling */
body {
    font-family: "Zilla Slab", serif;
    font-weight: 400;
    font-size: 1.1rem;
    font-style: normal;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #FFD300;
    color: #000000;
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4 {
    font-family: "Special Elite", system-ui;
}

b {
    font-weight: 800;
}









/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    background: #000;
    color: #fff;
    padding: 5vw 10vw 0 0vw;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4vw;
}

/* Left: Person image */
.hero-image img {
    width: 34vw;
    height: auto;
    object-fit: contain;
    display: block;
    margin-bottom: -9vw;
    z-index: 12;
    position: sticky;
}

/* Right: Text content */
.hero-text {
    max-width: 50vw;
}

.hero-text h1 {
    font-family: "Special Elite", system-ui;
    font-size: 3.8vw;
    line-height: 1.1;
    color: #f7d900;
    /* yellow tone */
    margin-bottom: 1.5vw;
    letter-spacing: 0.05vw;
}

.hero-text p {
    font-family: "Zilla Slab", serif;
    font-size: 1.35vw;
    line-height: 1.3;
    color: #eaeaea;
    margin-bottom: 1vw;
}

/* Bottom paint stroke image */
.bottom-pattern {
    /* position: absolute; */
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
}



.video-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 4px solid #FFD300;
    background: #000;
}

.carousel-container {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    transition: opacity 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    margin: 0;
}

.carousel-item video {
    width: 100%;
    height: auto;
    display: block;
    border: none;
    outline: none;
}

/* Arrows */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #FFD300;
    color: #FFD300;
    font-size: 2vw;
    width: 3.5vw;
    height: 3.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: #FFD300;
    color: #000;
}

.carousel-btn.prev {
    left: 1vw;
}

.carousel-btn.next {
    right: 1vw;
}

/* Responsive */
@media (max-width: 768px) {
    .video-carousel {
        border-width: 3px;
    }

    .carousel-btn {
        padding: 1vw 1.8vw;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-image img {
        width: 130vw;
        margin-left: -35vw;
        height: auto;
        object-fit: contain;
        display: block;
        margin-bottom: 0;
        z-index: 12;
        position: sticky;
        max-width: unset;
    }

    .hero-section {
        padding-right: 0;
    }

    .hero-text {
        max-width: unset;
        padding-right: 0.75rem;
        padding-left: 0.75rem;
        width: 100%;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-text h1 br {
        display: none;
    }

    .hero-text p {
        font-size: inherit;
    }

}