/* ====================================================================================================== */
/* SECTION 1: HERO SECTION WITH VIDEOOOOO */
/* ====================================================================================================== */

/* Background Gradient Overlay innit */
main section:first-of-type::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;

    background: linear-gradient(to top,
            color-mix(in srgb, var(--secondary-color) 90%, transparent) 0%,
            color-mix(in srgb, var(--secondary-color) 0%, transparent) 100%);

    z-index: 2;
    pointer-events: none;
}

main section:first-of-type {
    position: relative;
    display: flex;
    width: 100%;
    height: 83vh;
    overflow: hidden;
}

main section:first-of-type video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Orange Decorative Roster */
main section:first-of-type>div:first-of-type {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 1.6em;
    z-index: 2;
    background-image: url('../images/biznus/orangeroster.svg');
}

/* Content Overlay Container */
main section:first-of-type>div:nth-of-type(2) {
    z-index: 3;
    display: grid;
    grid-template-rows: auto auto auto auto;
    padding: 3em 1.5em;
    align-content: end;
    gap: 2vw;
}

/* SnowWorld Brand Button */
main section:first-of-type>div:nth-of-type(2)>a:nth-of-type(1) {
    display: flex;
    align-items: center;
    gap: 0.3em;
    justify-self: start;

    padding: 0.5em;
    font-size: 0.7em;
    background-color: var(--secondary-color);
    font-family: SuperMolot;
    font-weight: 1;
    border-radius: 1em;
}

main section:first-of-type>div:nth-of-type(2)>a:nth-of-type(1):hover {
    text-decoration: underline;
}

main section:first-of-type>div:nth-of-type(2)>a:nth-of-type(1)>svg {
    width: 1.3em;
    height: auto;
}

/* Main Heading */
main section:first-of-type h3 {
    font-family: SuperMolot;
    font-size: 10vw;
    color: var(--white);
    text-transform: uppercase;
    line-height: 0.9em;
    letter-spacing: 1px;
    margin: 0;
    font-weight: 1;
}

/* CTA and Video Controls Container */
main section:first-of-type>div:nth-of-type(2)>div {
    display: flex;
    gap: 0.2em;
}

/* Primary CTA Button */
main section:first-of-type>div:nth-of-type(2)>div>a {
    justify-self: start;
    font-family: SuperMolot;
    font-weight: 1;
    gap: 0.5em;
    padding: 0.7em 1em;
    font-size: 1em;
    border-radius: 0;
    display: flex;
    align-items: center;


    clip-path: polygon(0 0,
            100% 0,
            100% calc(100% - 0.6em),
            calc(100% - 0.6em) 100%,
            0 100%);
}

main section:first-of-type>div:nth-of-type(2)>div>a>svg {
    height: 1.5em;
    width: auto;
    stroke: var(--white);
}

/* Video Play/Pause Button */
main section:first-of-type>div:nth-of-type(2)>div>button {
    background-color: transparent;
    color: transparent;
    border-color: transparent;

}

main section:first-of-type>div:nth-of-type(2)>div>button>img {
    width: 2.5em;
    height: 2.5em;
}

/* ====================================================================================================== */
/* SECTION 2: INTRODUCTION CONTENT WITH EXPANDABLE DETAILS */
/* ====================================================================================================== */

/* Section ccontainer */
main section:nth-of-type(2) {
    background-color: var(--new-background-color);
    display: flex;
    flex-direction: column;
    padding: 2em 2vw;
    gap: 1.2em;
}

main section:nth-of-type(2)>div:nth-of-type(1) {
    display: flex;
    flex-direction: column;
    gap: 1.2em;
}

/* Orange triangle overlay */
main section:nth-of-type(2)>div:nth-of-type(1)>svg:nth-of-type(1) {
    fill: var(--button-color);
    width: 1.8em;
    height: auto;
    stroke: none;
}

/* Section heading */
main section:nth-of-type(2)>div:nth-of-type(1)>h4 {
    font-family: SuperMolot;
    font-size: 2em;
    text-transform: uppercase;
    font-weight: 1;
    margin: 0;
}

/* Introduction paragraph */
main section:nth-of-type(2) p {
    color: var(--secondary-text);
    font-size: 1em;
    line-height: 1.6em;
    margin: 0;
    text-align: left;
    max-width: 50em;
}

/* Expandable Details Section */
main section:nth-of-type(2)>div:nth-of-type(1)>details {
    display: flex;
    flex-direction: column-reverse;
}

main section:nth-of-type(2)>div:nth-of-type(1)>details[open] {
    gap: 0.3em;
}

/* Summary styling */
main section:nth-of-type(2)>div:nth-of-type(1)>details summary {
    display: flex;
    align-items: center;
    gap: 0.6em;
    cursor: pointer;
    font-size: 0.9em;
    text-transform: uppercase;
}

/* Plus/Minus icon */
main section:nth-of-type(2)>div:nth-of-type(1)>details summary svg {
    width: 1.8em;
    height: 1.8em;
    stroke: var(--secondary-text);
}

/* default state */
main section:nth-of-type(2) summary span:nth-of-type(2) {
    display: none;
}

/* open state */
main section:nth-of-type(2) details[open] summary span:nth-of-type(1) {
    display: none;
}

main section:nth-of-type(2) details[open] summary span:nth-of-type(2) {
    display: inline;
}

/* Plus sign turns into minus */
main section:nth-of-type(2) details[open] summary svg line:first-of-type {
    opacity: 0;
}

/* Paragraph Text in Expandable Section */
main section:nth-of-type(2) details div p {
    padding-bottom: 0.7vw;
}

/* Bold Paragraph Text */
main section:nth-of-type(2)>div:nth-of-type(1)>details>div>p:nth-of-type(1),
main section:nth-of-type(2)>div:nth-of-type(1)>details>div>p:nth-of-type(3) {
    font-weight: bold;
    color: black;
}

/* Feature Icons Grid */
main section:nth-of-type(2)>ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2em 3em;
}

/* Feature Item */
main section:nth-of-type(2)>ul>li {
    display: flex;
    flex-direction: column;
    gap: 0.4em;
}

/* Feature Label */
main section:nth-of-type(2)>ul>li>span {
    font-size: 0.8em;
    text-transform: uppercase;
}

/* Icon and Text Container */
main section:nth-of-type(2)>ul>li>div {
    display: flex;
    align-items: center;
    gap: 0.8em;
}

/* Feature icon */
main section:nth-of-type(2)>ul>li>div svg {
    width: 1.5em;
    height: 1.5em;
    stroke: var(--button-color);
    align-self: start;

}

/* Feature Description Text */
main section:nth-of-type(2)>ul p {
    margin: 0;
    font-size: 0.9em;
    padding-right: 2vw;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-family: supermolot;
}


/* ====================================================================================================== */
/* SECTION 3: PACKAGES CAROUSEL */
/* ====================================================================================================== */
/* NOTE: This section contains global styling shared by all 3 carousels (sections 3, 5, and 7) */

/* Section Container Spacing */
main section:nth-of-type(3),
main section:nth-of-type(5),
main section:nth-of-type(7) {
    padding: 2em 1em;
}

/* Section Heading */
main section:nth-of-type(3)>h4,
main section:nth-of-type(5)>h4,
main section:nth-of-type(7)>div>h4 {
    font-family: SuperMolot;
    font-size: 1.5em;
    color: var(--secondary-color);
    font-weight: 1;
    margin: 0 0 0.5em 0;
    padding-left: 0.77vw;
}

/* Carousel List Container */
main section:nth-of-type(3)>ul,
main section:nth-of-type(5)>ul,
main section:nth-of-type(7)>ul {
    margin: 0;
    display: flex;
    gap: 1.5em;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 1em;
}


/* Carousel Item Card */
main section:nth-of-type(3)>ul>li,
main section:nth-of-type(5)>ul>li,
main section:nth-of-type(7)>ul>li {
    scroll-snap-align: start;
    flex: 0 0 85%;
    scroll-margin-left: 1vw;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
    margin-bottom: 0.5em;
    border-bottom-right-radius: 2em;
    max-width: 18.125em;
}

/* Carousel Item Image Container */
main section:nth-of-type(3)>ul>li>div:first-of-type,
main section:nth-of-type(5)>ul>li>div:first-of-type,
main section:nth-of-type(7)>ul>li>div:first-of-type {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 1em;
}

/* Carousel Item Image */
main section:nth-of-type(3)>ul>li>div:first-of-type>img,
main section:nth-of-type(5)>ul>li>div:first-of-type>img,
main section:nth-of-type(7)>ul>li>div:first-of-type>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Package Labels Container (overlay on image) */
main section:nth-of-type(3)>ul>li>div:first-of-type>div,
main section:nth-of-type(5)>ul>li>div:first-of-type>div,
main section:nth-of-type(7)>ul>li>div:first-of-type>div {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 0.5em;
    padding: 0.8em;
}

/* Package Label Styling */
main section:nth-of-type(3)>ul>li>div:first-of-type>div>span,
main section:nth-of-type(5)>ul>li>div:first-of-type>div>span,
main section:nth-of-type(7)>ul>li>div:first-of-type>div>span {
    padding: 0.4em 0.8em;
    font-size: 0.6em;
    border-radius: 1em;
    text-transform: uppercase;
    font-family: SuperMolot;
    font-weight: 1;
}

/* First Label (Orange) */
main section:nth-of-type(3)>ul>li>div:first-of-type>div>span:first-of-type,
main section:nth-of-type(5)>ul>li>div:first-of-type>div>span:first-of-type {
    background-color: var(--button-color);
    color: var(--white);
}

/* Second Label (White) */
main section:nth-of-type(3)>ul>li>div:first-of-type>div>span:nth-of-type(2),
main section:nth-of-type(5)>ul>li>div:first-of-type>div>span:nth-of-type(2) {
    background-color: var(--white);
    color: var(--secondary-color);
}

/* Carousel Item Title */
main section:nth-of-type(3)>ul>li>h5,
main section:nth-of-type(5)>ul>li>h5,
main section:nth-of-type(7)>ul>li>h5 {
    font-family: SuperMolot;
    font-size: 1.5em;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin: 0 0 0.1em 0.3em;
    font-weight: 1;
}

/* Location Paragraph */
main section:nth-of-type(3)>ul>li>p:first-of-type,
main section:nth-of-type(5)>ul>li>p:first-of-type {
    font-size: 0.8em;
    color: var(--super-secondary);
    line-height: 1.5em;
    margin: 0 0.5em 1em 0.75em;
    text-align: left;
    font-family: helvetica;
}

/* Description Paragraph */
main section:nth-of-type(3)>ul>li>p:nth-of-type(2),
main section:nth-of-type(5)>ul>li>p:nth-of-type(2),
main section:nth-of-type(7)>ul>li p {
    text-align: left;
    font-size: 0.9em;
    color: var(--super-secondary);
    margin: 0 0.5em 0.5em 0.7em;
    font-family: helvetica;
    line-height: 1.5em;
    flex: 1;
}

/* Carousel Item CTA Button */
main section:nth-of-type(3)>ul>li>a,
main section:nth-of-type(5)>ul>li>a,
main section:nth-of-type(7)>ul>li>a,
main section:nth-of-type(7) a {
    align-self: start;
    border-radius: 0;
    margin: 1em 0 0.5em 0.75em;
    padding: 0.8em 5em;
    font-size: 1em;
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-weight: 1;
    background-color: var(--secondary-color);

    clip-path: polygon(0 0,
            100% 0,
            100% calc(100% - 0.6em),
            calc(100% - 0.6em) 100%,
            0 100%);
}

main section:nth-of-type(3)>ul>li>a:hover,
main section:nth-of-type(5)>ul>li>a:hover,
main section:nth-of-type(7) a:hover,
main section:nth-of-type(7)>div:first-of-type>a.mobile-hidden:hover {
    background-color: var(--secondary-secondary-color);
}

/* CTA Button Arrow Icon */
main section:nth-of-type(3)>ul>li>a>svg,
main section:nth-of-type(5)>ul>li>a>svg,
main section:nth-of-type(7)>ul>li>a>svg {
    width: 1.2em;
    height: 1.2em;
    stroke: var(--white);
}

/* ====================================================================================================== */
/* SECTION 4: CUSTOMIZATION VIDEO SECTION */
/* ====================================================================================================== */

/* Section Container */
main section:nth-of-type(4) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 4em 0em;
    width: 100%;
    background-color: var(--new-background-color);
}

/* Overlay Card Container */
main section:nth-of-type(4)>div:first-of-type {
    position: relative;
    z-index: 2;
    margin-right: -2em;


    background-color: color-mix(in srgb, var(--secondary-color) 85%, transparent);
    backdrop-filter: blur(0.625em);
    padding: 2em 1.5em;
    clip-path: polygon(0 0,
            100% 0,
            100% calc(100% - 1.5em),
            calc(100% - 1.5em) 100%,
            0 100%);
    max-height: 20em;

    display: flex;
    flex-direction: column;
}

/* Card Labels Container */
main section:nth-of-type(4)>div:first-of-type>div:first-of-type {
    display: flex;
    flex-direction: row;
    gap: 0.5em;
    align-items: flex-start;
    padding-bottom: 0.2em;
}

/* Card Label Styling */
main section:nth-of-type(4)>div:first-of-type>div:first-of-type>span {
    padding: 0.4em 0.8em;
    font-size: 0.7em;
    text-transform: uppercase;
    font-family: SuperMolot;
    font-weight: 1;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 1em;
    display: inline-block;
}

/* Second Label (Green) */
main section:nth-of-type(4)>div:first-of-type>div:first-of-type>span:nth-of-type(2) {
    background-color: var(--vomit-green);
    color: var(--black)
}

/* Card Heading */
main section:nth-of-type(4)>div:first-of-type h4 {
    font-family: SuperMolot;
    font-size: 2.5em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0;
    font-weight: 1;
    padding-bottom: 0.8em;
}

/* Card Description Paragraph */
main section:nth-of-type(4)>div:first-of-type>p {
    color: var(--white);
    font-family: helvetica;
    font-size: 0.95em;
    line-height: 1.6em;
    margin: 0;
    text-align: left;
    padding-bottom: 2em;
}

/* Price and CTA Container */
main section:nth-of-type(4)>div:first-of-type>div:nth-of-type(2) {
    display: flex;
    justify-content: space-between;
}

/* Price Display Container */
main section:nth-of-type(4)>div:first-of-type>div:nth-of-type(2)>div:nth-of-type(1) {
    display: flex;
    align-items: baseline;
    gap: 0.3em;
    flex-wrap: wrap;
}

/* Price Label ("Vanaf") */
main section:nth-of-type(4)>div:first-of-type>div:nth-of-type(2)>div:nth-of-type(1)>span:first-of-type {
    color: var(--white);
    font-family: helvetica;
    font-size: 0.9em;
}

/* Price Amount */
main section:nth-of-type(4)>div:first-of-type>div:nth-of-type(2)>div:nth-of-type(1)>span:nth-of-type(2) {
    color: var(--white);
    font-family: SuperMolot;
    font-size: 2em;
    font-weight: 1;
}

/* Price Unit ("p.p") */
main section:nth-of-type(4)>div:first-of-type>div:nth-of-type(2)>div:nth-of-type(1)>span:nth-of-type(3) {
    color: var(--white);
    font-family: helvetica;
    font-size: 0.8em;
}

/* CTA Button */
main section:nth-of-type(4)>div:first-of-type>div:nth-of-type(2) a {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 0.5em;

    padding: 0.7em 0.9em;
    border-radius: 0;
    font-size: 1.05em;
    font-weight: 1;

    clip-path: polygon(0 0,
            100% 0,
            100% calc(100% - 0.8em),
            calc(100% - 0.8em) 100%,
            0 100%);
}

/* CTA Button Arrow Icon */
main section:nth-of-type(4)>div:first-of-type>div:nth-of-type(2) a>svg {
    width: 1.5em;
    height: 1.5em;
    stroke: var(--white);
}

/* Video Container */
main section:nth-of-type(4)>div:nth-of-type(2) {
    position: relative;
    width: 100%;
    height: 20.25em;
    z-index: 1;
    transform: translateY(-2em);
}


/* Background Video */
main section:nth-of-type(4)>div:nth-of-type(2)>video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 10;
}


/* Video Play/Pause Button */
main section:nth-of-type(4)>div:nth-of-type(2)>button {
    position: absolute;
    bottom: 1.5em;
    left: 10%;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 3;
}

/* Play/Pause Button Icon */
main section:nth-of-type(4)>div:nth-of-type(2)>button>img {
    width: 3em;
    height: 3em;
}

/* Mobile Small Screen Adjustments */
@media (max-width: 600px) {
    main section:nth-of-type(4) {
        grid-template-rows: 1fr 1fr;
        grid-template-columns: none;
    }

    main section:nth-of-type(4)>div:first-of-type {
        margin-right: 2em;
    }

    main section:nth-of-type(4)>div:nth-of-type(2) {
        height: 15.625em;
        transform: translateY(-4em);
    }
}


/* ====================================================================================================== */
/* SECTION 5: PACKAGES OFF-PISTE CAROUSEL */
/* ====================================================================================================== */
/* NOTE: Most styling is shared with Section 3 carousel above */

/* Section Container */
main section:nth-of-type(5) {
    background-color: var(--new-background-color);
}



/* ====================================================================================================== */
/* SECTION 6: HOTEL STAY PACKAGE SECTION */
/* ====================================================================================================== */

/* Section Container */
main section:nth-of-type(6) {
    display: flex;
    flex-direction: column;
    padding: 2em 1vw;
    gap: 2em;
}

/* Hotel Image Container */
main section:nth-of-type(6)>div:first-of-type {
    width: 100%;
}

/* Hotel Image */
main section:nth-of-type(6)>div:first-of-type>img {
    width: 100%;
    height: auto;
    display: block;
    clip-path: polygon(0 0,
            100% 0,
            100% calc(100% - 2em),
            calc(100% - 2em) 100%,
            0 100%);
}

/* Content Container */
main section:nth-of-type(6)>div:nth-of-type(2) {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}

/* Section Heading */
main section:nth-of-type(6)>div:nth-of-type(2)>h4 {
    font-family: SuperMolot;
    font-size: 1.8em;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin: 0;
    font-weight: 1;
}

main section:nth-of-type(6)>div:nth-of-type(2)>p {
    color: var(--super-secondary);
    font-family: helvetica;
    font-size: 0.95em;
    line-height: 1.6em;
    margin: 0;
    text-align: left;
}

/* CTA Buttons Container */
main section:nth-of-type(6)>div:nth-of-type(2)>div {
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
}

/* Primary CTA Button */
main section:nth-of-type(6)>div:nth-of-type(2)>div>a:first-of-type {
    font-weight: 1;
    background-color: var(--button-color);
    color: var(--white);
    padding: 0.7em 1.2em;
    font-size: 0.9em;
    border-radius: 0;
    clip-path: polygon(0 0,
            100% 0,
            100% calc(100% - 0.6em),
            calc(100% - 0.6em) 100%,
            0 100%);
}


/* Secondary CTA Button */
main section:nth-of-type(6)>div:nth-of-type(2)>div>a:nth-of-type(2) {
    background: none;
    font-weight: 1;
    color: var(--secondary-color);
    padding: 0.7em 0.8em;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 0.5em;
    border-radius: 0;
    clip-path: polygon(0 0,
            100% 0,
            100% calc(100% - 0.6em),
            calc(100% - 0.6em) 100%,
            0 100%);
}

main section:nth-of-type(6)>div:nth-of-type(2)>div>a:nth-of-type(2):hover {
    background-color: color-mix(in srgb, var(--button-color) 20%, transparent);

}

main section:nth-of-type(6)>div:nth-of-type(2)>div>a:nth-of-type(2)>svg {
    width: 1em;
    height: 1em;
    stroke: var(--secondary-color);
}

/* ====================================================================================================== */
/* SECTION 7: ALPINE HOTEL PACKAGES CAROUSEL */
/* ====================================================================================================== */
/* NOTE: Most styling is shared with Sections 3 and 5 carousels above */

/* Section Container */
main section:nth-of-type(7) {
    display:flex;
    flex-direction:column;
    background-color: var(--new-background-color);
}


/* Section Header Container */
main section:nth-of-type(7)>div:first-of-type {
    align-items:start;
}

/* "ALL ALPINE PACKAGES" Link - Desktop Only (Mobile Hidden) */
main section:nth-of-type(7)>div:first-of-type>a.mobile-hidden {
    display: none;
}


/* Package Label - Single White Label with Black Text */
main section:nth-of-type(7)>ul>li>div:first-of-type>div>span {
    background-color: var(--white);
    color: var(--black);
}

/* Package Title */
main section:nth-of-type(7)>ul>li>h5 {
    margin-bottom: 0.5em;
}

/* Package Features List Container (first 3 cards) */
main section:nth-of-type(7)>ul>li>div:nth-of-type(2) {
    display: flex;
    flex-direction: column;
    gap: 0.8em;
    margin: 0 0 1em 0.3em;
}

main section:nth-of-type(7)>ul>li>div:nth-of-type(2) p {
    margin: 0;
}

main section:nth-of-type(7)>ul>li a {
    padding: 0.8em 4em;
    margin-top: auto;
}

/* Feature Item Row */
main section:nth-of-type(7)>ul>li>div:nth-of-type(2)>div {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

/* Feature Triangle Icon (pointing right) */
main section:nth-of-type(7)>ul>li>div:nth-of-type(2)>div>svg {
     width: 1em;
    height: 1em;
    flex-shrink: 0;
    transform: rotate(-90deg) translateX(0.25em);
    fill: var(--button-color);
}


/* "ALL ALPINE PACKAGES" Link Styling */
main section:nth-of-type(7) > div:nth-of-type(1) > a,
main section:nth-of-type(7) > a {
    padding: 0.6em 1em;
    font-size: 0.9em;
}

main section:nth-of-type(7)>a>svg {
    width: 1em;
    height: 1em;
    stroke: var(--white);
}


/* ====================================================================================================== */
/* DESKTOP STYLES (min-width: 1024px) */
/* ====================================================================================================== */

@media (min-width: 1024px) {
    /* Orange Decorative Roster */
    main section:first-of-type>div:first-of-type {
        width: 5em;
    }

    /* Content Overlay Container */
    main section:first-of-type>div:nth-of-type(2) {
        gap: 1.2em;
    }

    /* Main Heading */
    main section:first-of-type h3 {
        font-size: 6em;
        padding-right: 4em;
    }

    main section:first-of-type>div:nth-of-type(2)>div>a {
        font-size: 1.3em;
    }


    /* Section 2 Heading */
    main section:nth-of-type(2)>div:first-of-type>h4 {
        font-size: 3em;
    }

    /* Section 2 Layout - Side by Side */
    main section:nth-of-type(2) {
        display: flex;
        flex-direction: row;
    }

    main section:nth-of-type(2)>ul {
        list-style: none;
        align-self: start;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 2em 3em;
    }



    /* Carousel Styling */
    /* Section Heading */
    main section:nth-of-type(3)>h4,
    main section:nth-of-type(5)>h4,
    main section:nth-of-type(7)>div:first-of-type>h4 {
        font-size: 2.5em;
    }

    /* Carousel Item Title */
    main section:nth-of-type(3)>ul>li h5,
    main section:nth-of-type(5)>ul>li h5,
    main section:nth-of-type(7)>ul>li h5 {
        font-size: 2em;
    }


    /* Description Paragraph */
    main section:nth-of-type(3)>ul>li p:nth-of-type(2),
    main section:nth-of-type(5)>ul>li p:nth-of-type(2),
    main section:nth-of-type(7)>ul>li p {
        font-size: 1.2em;
    }

    /* Hide native scrollbar on desktop (using custom scrollbar instead) */
    main section:nth-of-type(3)>ul,
    main section:nth-of-type(5)>ul {
        scrollbar-width: none;
    }

    main section:nth-of-type(3)>ul::-webkit-scrollbar,
    main section:nth-of-type(5)>ul::-webkit-scrollbar {
        display: none;
    }

    /* Hide scrollbar for section 7 */
    main section:nth-of-type(7)>ul {
        scrollbar-width: none;
    }

    main section:nth-of-type(7)>ul::-webkit-scrollbar {
        display: none;
    }

    /* Carousel Item Card Size */
    main section:nth-of-type(3)>ul li,
    main section:nth-of-type(5)>ul li,
    main section:nth-of-type(7)>ul li {
        max-width: 20em;
    }


    /* Navigation Controls Container (Scrollbar + Arrows) */
    main section:nth-of-type(3)>div:last-of-type,
    main section:nth-of-type(5)>div:last-of-type {
        display: flex;
        align-items: center;
        gap: 1em;
        margin-top: 1.5em;
        padding-left: 0.77vw;
    }

    /* Progress Bar Container */
    main section:nth-of-type(3)>div:last-of-type>div:first-of-type.mobile-hidden,
    main section:nth-of-type(5)>div:last-of-type>div:first-of-type.mobile-hidden {
        flex: 1;
        height: 0.15em;
        background-color: var(--article-background);
        border-radius: 0.15em;
        position: relative;
    }

    /* Progress Bar Fill */
    main section:nth-of-type(3)>div:last-of-type>div:first-of-type.mobile-hidden>div,
    main section:nth-of-type(5)>div:last-of-type>div:first-of-type.mobile-hidden>div {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 0%;
        background-color: var(--secondary-color);
        border-radius: 0.15em;
    }

    /* Navigation Arrow Buttons */
    main section:nth-of-type(3)>div:last-of-type>button.mobile-hidden,
    main section:nth-of-type(5)>div:last-of-type>button.mobile-hidden {
        border: none;
        background: none;
        cursor: pointer;
        align-items: center;
        justify-content: center;

        width: 2em;
        height: 2em;
        display: flex;
    }

    /* Customization Video Section */
    main section:nth-of-type(4) {
        padding: 4em 3vw;
        width: auto;
        grid-template-columns: 28.125em 1fr;
    }

    /* Hotel Stay Package Section */
    main section:nth-of-type(6) {
        flex-direction: row;
        align-items: center;
        padding: 4em 3vw;
        gap: 3em;
    }

    /* Hotel Image Container */
    main section:nth-of-type(6)>div:first-of-type {
        flex: 0 0 50%;
    }

    main section:nth-of-type(6)>div:nth-of-type(2) {
        flex: 1;
    }

    main section:nth-of-type(6)>div:nth-of-type(2)>h4 {
        font-size: 2.5em;
    }

    main section:nth-of-type(6)>div:nth-of-type(2)>p {
        font-size: 1.1em;
    }

    /* Alpine Packages Carousel */
    main section:nth-of-type(7)>a {
        display:none;
    } 
    main section:nth-of-type(7)>div:first-of-type {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* "ALL ALPINE PACKAGES" link - desktop only */
    main section:nth-of-type(7)>div:first-of-type>a.mobile-hidden {
        background-color: var(--secondary-color);
        color: var(--white);
        padding: 0.6em 1em;
        font-size: 0.9em;
        display: flex;
        align-items: center;
        gap: 0.5em;
        border-radius: 0;
        clip-path: polygon(0 0,
                100% 0,
                100% calc(100% - 0.6em),
                calc(100% - 0.6em) 100%,
                0 100%);
    }

    main section:nth-of-type(7)>div:first-of-type>a.mobile-hidden>svg {
        width: 1em;
        height: 1em;
        stroke: var(--white);
    }
    
}

/* ====================================================================================================== */
/* BIG FUCKING DESKTOP STYLES (min-width: 1500px) */
/* ====================================================================================================== */

@media (min-width: 1500px) {
    main section:nth-of-type(2) {
        padding: 2em 4vw;
    }

    main section:nth-of-type(3) {
        padding: 2em 1em 2em 3vw;
    }

    main section:nth-of-type(4) {
        grid-template-columns: 28.125em 62.375em;
        justify-content: center;
    }
}