@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins";
}

body {
    background: #f5f5f7;
    overflow-x: hidden;
}

/* Navbar */
#nav-bar {
     width: 100vw;  /* Ensures full width */
    height: 10vmin;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 0 20px;
    margin: 0;
}

#nav-logo {
    width: 30%;
    font-size: 5vmin;
    text-transform: uppercase;
    color: white;
    letter-spacing: 0.1vmin;
}

#nav-list {
    width: 50%;
}

#nav-list ul {
    width: 100%;
    list-style-type: none;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

#nav-list ul li a {
    text-decoration: none;
    color: white;
    font-size: calc(0.5vmin + 1vw);
    letter-spacing: 0.1vmin;
    transition: color 0.3s ease-in-out;
}

/* Hover Effect - Smooth Underline */
#nav-list ul li a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background-color: #E88D67;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease-in-out;
}

#nav-list ul li a:hover::after {
    width: 100%;
}

#nav-list ul li a:hover {
    border-bottom: 0.2vmin solid #E88D67;
}

#nav-list span {
    display: none;
}

#nav-list span i {
    font-size: 4vmin;
    color: white;
}


/* General Styling for Carousel Sections */
.carousel-section {
    text-align: center; /* Centers the heading and subheading */
    padding: 10px 10px;
}

/* Styling for Carousel Headings */
.carousel-heading {
    font-size: 28px; /* Adjust font size */
    font-weight: bold;
    color: #333; /* Dark color for visibility */
    margin-bottom: 10px; /* Space below the heading */
    text-transform: uppercase;
    margin-top: 70px;
}

/* Styling for Carousel Subheadings */
.carousel-subheading {
    font-size: 18px; /* Slightly smaller than heading */
    color: #666; /* Light gray color */
    margin-bottom: 20px;
    font-style: italic;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .carousel-heading {
        font-size: 22px; /* Smaller font size on mobile */
    }

    .carousel-subheading {
        font-size: 16px;
    }
}


/* Responsive Navbar */
@media only screen and (max-width: 450px) {
    #nav-list span {
        display: flex;
        justify-content: end;
        align-items: center;
        color: white;
    }

    #nav-list ul {
        position: absolute;
        width: 100%;
        height: 100vh;
        background-color: rgba(13, 13, 13, 0.9);
        top: 10vmin;
        left: -100%;
        transition: all 0.5s;
        display: block;
        text-align: center;
        z-index: 999999;
    }

    #nav-list ul li {
        line-height: 30px;
        margin: 4vmin 0.3vmin;
    }

    #nav-list ul li a {
        font-size: 20px;
        padding: 1vmin;
        display: inline-block;
        width: 90vw;
        border-bottom: 0.8px solid rgb(109, 108, 108);
    }

    #nav-list ul.show {
        left: 0;
    }
}

/* Carousel */
.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px;
    margin-top: 20px;
}

.carousel {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
    scroll-behavior: smooth;
    white-space: nowrap;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.card {
    flex: 0 0 auto;
    width: 250px;
    height: 444px; /* 9:16 Aspect Ratio */
    scroll-snap-align: start;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

@media (max-width: 768px) {
    .carousel-container {
        padding: 0;
    }

    .card {
        width: 80vw;
        height: calc(80vw * 16 / 9);
    }
}
.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px;
    margin-top: 20px;
}

.carousel {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
    scroll-behavior: smooth;
    white-space: nowrap;
}

.carousel::-webkit-scrollbar {
    display: none;
}
/* =========================================================
   LAPTOP + 4K PROPORTIONAL RESPONSIVE SYSTEM
   Base design: 1920 × 1080
   4K design:   3840 × 2160 (approximately 2×)
   Mobile rules above remain unchanged.
   ========================================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    min-height: 100%;
}

main,
section,
header {
    width: 100%;
    max-width: 100%;
}

img,
video,
svg {
    max-width: 100%;
}

/* Standard laptop / desktop */
@media (min-width: 769px) {
    #nav-bar {
        width: 100%;
        height: clamp(82px, 10vmin, 108px);
        padding-inline: clamp(24px, 2.1vw, 40px);
    }

    #nav-logo {
        width: 30%;
        font-size: clamp(42px, 5vmin, 54px);
        letter-spacing: clamp(1px, 0.1vmin, 1.2px);
    }

    #nav-list {
        width: 50%;
    }

    #nav-list ul li a {
        position: relative;
        font-size: clamp(18px, calc(0.5vmin + 1vw), 25px);
        letter-spacing: clamp(1px, 0.1vmin, 1.2px);
    }

    .carousel-section {
        width: 100%;
        padding:
            clamp(70px, 5vw, 96px)
            clamp(28px, 2.5vw, 48px)
            clamp(30px, 3vw, 58px);
    }

    .carousel-heading {
        margin-top: clamp(45px, 4vw, 70px);
        margin-bottom: clamp(10px, 0.8vw, 16px);
        font-size: clamp(28px, 2.1vw, 40px);
        line-height: 1.15;
    }

    .carousel-subheading {
        max-width: 900px;
        margin:
            0 auto
            clamp(20px, 1.5vw, 30px);
        font-size: clamp(18px, 1.15vw, 22px);
        line-height: 1.55;
    }

    .carousel-container {
        width: 100%;
        max-width: 1840px;
        margin: clamp(20px, 1.5vw, 30px) auto 0;
        padding: clamp(10px, 0.8vw, 16px);
        overflow: hidden;
    }

    .carousel {
        width: 100%;
        gap: clamp(10px, 0.85vw, 16px);
        padding-bottom: clamp(10px, 0.8vw, 16px);
        overflow-x: auto;
        overflow-y: hidden;
    }

    .card {
        width: clamp(250px, 15.625vw, 300px);
        height: auto;
        aspect-ratio: 9 / 16;
        border-radius: clamp(10px, 0.65vw, 14px);
        box-shadow: 0 clamp(4px, 0.35vw, 7px)
                    clamp(10px, 0.8vw, 16px)
                    rgba(0, 0, 0, 0.1);
    }
}

/* 2K screens: scale smoothly beyond 1920 */
@media (min-width: 1921px) and (max-width: 3839px) {
    #nav-bar {
        height: clamp(108px, 5.625vw, 180px);
        padding-inline: clamp(40px, 2.1vw, 80px);
    }

    #nav-logo {
        font-size: clamp(54px, 2.8125vw, 90px);
    }

    #nav-list ul li a {
        font-size: clamp(25px, 1.302vw, 42px);
    }

    .carousel-section {
        padding:
            clamp(96px, 5vw, 180px)
            clamp(48px, 2.5vw, 96px)
            clamp(58px, 3vw, 110px);
    }

    .carousel-heading {
        margin-top: clamp(70px, 3.65vw, 130px);
        margin-bottom: clamp(16px, 0.83vw, 30px);
        font-size: clamp(40px, 2.083vw, 72px);
    }

    .carousel-subheading {
        max-width: 1600px;
        margin-bottom: clamp(30px, 1.56vw, 58px);
        font-size: clamp(22px, 1.146vw, 40px);
    }

    .carousel-container {
        max-width: calc(100% - clamp(96px, 5vw, 192px));
        margin-top: clamp(30px, 1.56vw, 58px);
        padding: clamp(16px, 0.83vw, 30px);
    }

    .carousel {
        gap: clamp(16px, 0.83vw, 30px);
        padding-bottom: clamp(16px, 0.83vw, 30px);
    }

    .card {
        width: clamp(300px, 15.625vw, 560px);
        border-radius: clamp(14px, 0.73vw, 26px);
    }
}

/* True 4K: exactly about 2× the 1920 design */
@media (min-width: 3840px) {
    #nav-bar {
        width: 100%;
        height: 216px;
        padding-inline: 80px;
    }

    #nav-logo {
        width: 30%;
        font-size: 108px;
        letter-spacing: 2.4px;
    }

    #nav-list {
        width: 50%;
    }

    #nav-list ul li a {
        font-size: 50px;
        letter-spacing: 2.4px;
    }

    #nav-list ul li a::after {
        height: 4px;
    }

    #nav-list ul li a:hover {
        border-bottom-width: 4px;
    }

    .carousel-section {
        width: 100%;
        padding: 192px 96px 116px;
    }

    .carousel-heading {
        margin-top: 140px;
        margin-bottom: 32px;
        font-size: 80px;
        line-height: 1.15;
    }

    .carousel-subheading {
        max-width: 1800px;
        margin-bottom: 60px;
        font-size: 44px;
        line-height: 1.55;
    }

    .carousel-container {
        width: 100%;
        max-width: none;
        margin-top: 60px;
        padding: 32px;
        overflow: hidden;
    }

    .carousel {
        width: 100%;
        gap: 32px;
        padding-bottom: 32px;
    }

    .card {
        width: 500px;
        height: 888px;
        aspect-ratio: auto;
        border-radius: 20px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
}