/* =========================================
   CHRISTMAS HERO
========================================= */

.christmas-hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(212, 175, 55, 0.18),
            transparent 35%
        ),
        radial-gradient(
            circle at 15% 80%,
            rgba(0, 160, 80, 0.15),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(190, 20, 45, 0.16),
            transparent 30%
        ),
        #07130f;

    color: #ffffff;
    isolation: isolate;
}


/* =========================================
   CHRISTMAS GLOW
========================================= */

.christmas-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: -1;
}

.glow-one {
    width: 350px;
    height: 350px;
    background: rgba(220, 30, 50, 0.15);
    top: 10%;
    left: -100px;
}

.glow-two {
    width: 400px;
    height: 400px;
    background: rgba(218, 170, 45, 0.12);
    bottom: -150px;
    right: -100px;
}


/* =========================================
   HERO CONTENT
========================================= */

.hero-content {
    position: relative;
    z-index: 5;

    width: min(1100px, 92%);
    text-align: center;

    padding: 120px 20px 70px;

    display: flex;
    flex-direction: column;
    align-items: center;
}


/* =========================================
   CHRISTMAS BADGE
========================================= */

.christmas-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    padding: 11px 24px;

    border: 1px solid rgba(239, 190, 67, 0.7);
    border-radius: 50px;

    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(15px);

    color: #f4c54f;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;

    box-shadow:
        0 0 25px rgba(239, 190, 67, 0.12);
}

.christmas-badge span {
    color: #ffffff;
}


/* =========================================
   COMPANY BRAND
========================================= */

.event-brand {
    margin-top: 35px;
    margin-bottom: 10px;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 5px;

    color: #e8bd55;
}


/* =========================================
   EVENT TITLE
========================================= */

.hero-content h1 {
    margin: 0;

    font-size: clamp(75px, 12vw, 150px);

    line-height: 0.82;

    font-weight: 800;

    letter-spacing: -6px;

    background: linear-gradient(
        120deg,
        #ffffff,
        #f3c34d,
        #ffffff,
        #d92b45
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    text-shadow:
        0 0 35px rgba(244, 195, 77, 0.15);
}

.hero-content h1 span {
    color: #d9a936;
}


/* =========================================
   ADVENTURES
========================================= */

.hero-content h2 {
    margin: 28px 0 0;

    font-size: clamp(35px, 6vw, 75px);

    letter-spacing: 12px;

    font-weight: 800;

    color: #ffffff;

    text-shadow:
        0 0 25px rgba(255, 255, 255, 0.18);
}


/* =========================================
   TAGLINE
========================================= */

.hero-tagline {
    margin: 25px 0 0;

    font-size: clamp(17px, 2vw, 23px);

    font-weight: 600;

    color: #f1c95c;

    letter-spacing: 2px;
}


/* =========================================
   DESCRIPTION
========================================= */

.hero-description {
    max-width: 720px;

    margin: 20px auto 0;

    color: rgba(255, 255, 255, 0.78);

    font-size: 17px;

    line-height: 1.8;
}

.hero-description strong {
    color: #ffffff;
}


/* =========================================
   EVENT DETAILS
========================================= */

.hero-details {
    width: 100%;
    max-width: 850px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

    margin-top: 40px;
}

.detail-card {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 18px 22px;

    text-align: left;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.055);

    backdrop-filter: blur(18px);

    transition: 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);

    border-color: rgba(239, 190, 67, 0.5);

    background: rgba(255, 255, 255, 0.09);
}

.detail-card i {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(216, 172, 55, 0.14);

    color: #e7b941;

    font-size: 17px;
}

.detail-card small {
    display: block;

    margin-bottom: 4px;

    color: rgba(255, 255, 255, 0.5);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.detail-card strong {
    display: block;

    color: #ffffff;

    font-size: 14px;
}


/* =========================================
   BUTTONS
========================================= */

.hero-buttons {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    margin-top: 38px;
}

.christmas-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-width: 210px;

    padding: 16px 28px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 700;

    transition: all 0.3s ease;
}

.primary-btn {
    background: linear-gradient(
        135deg,
        #d9aa38,
        #f2c552
    );

    color: #07130f;

    box-shadow:
        0 10px 35px rgba(218, 171, 57, 0.2);
}

.primary-btn:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 40px rgba(218, 171, 57, 0.35);
}

.secondary-btn {
    border: 1px solid rgba(255, 255, 255, 0.35);

    background: rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(15px);

    color: #ffffff;
}

.secondary-btn:hover {
    transform: translateY(-4px);

    border-color: #25d366;

    color: #25d366;
}


/* =========================================
   SNOW PARTICLES
========================================= */

.snow-container {
    position: absolute;

    inset: 0;

    overflow: hidden;

    pointer-events: none;

    z-index: 2;
}

.snow-container span {
    position: absolute;

    top: -50px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 14px;

    animation: snowfall linear infinite;

    user-select: none;
}


/* Individual particles */

.snow-container span:nth-child(1) {
    left: 4%;
    animation-duration: 11s;
    animation-delay: -2s;
    font-size: 13px;
}

.snow-container span:nth-child(2) {
    left: 10%;
    animation-duration: 15s;
    animation-delay: -7s;
    font-size: 9px;
}

.snow-container span:nth-child(3) {
    left: 17%;
    animation-duration: 10s;
    animation-delay: -4s;
    font-size: 18px;
}

.snow-container span:nth-child(4) {
    left: 24%;
    animation-duration: 14s;
    animation-delay: -9s;
    font-size: 8px;
}

.snow-container span:nth-child(5) {
    left: 31%;
    animation-duration: 12s;
    animation-delay: -3s;
    font-size: 12px;
}

.snow-container span:nth-child(6) {
    left: 39%;
    animation-duration: 17s;
    animation-delay: -10s;
    font-size: 10px;
}

.snow-container span:nth-child(7) {
    left: 46%;
    animation-duration: 11s;
    animation-delay: -5s;
    font-size: 16px;
}

.snow-container span:nth-child(8) {
    left: 53%;
    animation-duration: 15s;
    animation-delay: -8s;
    font-size: 8px;
}

.snow-container span:nth-child(9) {
    left: 60%;
    animation-duration: 13s;
    animation-delay: -1s;
    font-size: 17px;
}

.snow-container span:nth-child(10) {
    left: 67%;
    animation-duration: 16s;
    animation-delay: -6s;
    font-size: 11px;
}

.snow-container span:nth-child(11) {
    left: 73%;
    animation-duration: 12s;
    animation-delay: -4s;
    font-size: 15px;
}

.snow-container span:nth-child(12) {
    left: 79%;
    animation-duration: 18s;
    animation-delay: -12s;
    font-size: 8px;
}

.snow-container span:nth-child(13) {
    left: 85%;
    animation-duration: 11s;
    animation-delay: -2s;
    font-size: 17px;
}

.snow-container span:nth-child(14) {
    left: 90%;
    animation-duration: 14s;
    animation-delay: -7s;
    font-size: 10px;
}

.snow-container span:nth-child(15) {
    left: 95%;
    animation-duration: 12s;
    animation-delay: -5s;
    font-size: 15px;
}

.snow-container span:nth-child(16) {
    left: 27%;
    animation-duration: 16s;
    animation-delay: -11s;
    font-size: 7px;
}

.snow-container span:nth-child(17) {
    left: 57%;
    animation-duration: 13s;
    animation-delay: -9s;
    font-size: 12px;
}

.snow-container span:nth-child(18) {
    left: 82%;
    animation-duration: 17s;
    animation-delay: -3s;
    font-size: 9px;
}


/* =========================================
   SNOW ANIMATION
========================================= */

@keyframes snowfall {

    0% {
        transform:
            translate3d(0, -50px, 0)
            rotate(0deg);

        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        transform:
            translate3d(80px, 50vh, 0)
            rotate(180deg);
    }

    100% {
        transform:
            translate3d(-60px, 110vh, 0)
            rotate(360deg);

        opacity: 0;
    }
}


/* =========================================
   SCROLL INDICATOR
========================================= */

.scroll-indicator {
    margin-top: 45px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

    color: rgba(255, 255, 255, 0.45);

    font-size: 11px;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.scroll-indicator i {
    color: #e7b941;

    animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(7px);
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .christmas-hero {
        min-height: 100svh;
    }

    .hero-content {
        padding: 110px 15px 50px;
    }

    .event-brand {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .hero-content h1 {
        font-size: clamp(65px, 20vw, 100px);
        letter-spacing: -4px;
    }

    .hero-content h2 {
        font-size: 32px;
        letter-spacing: 6px;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-details {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .christmas-btn {
        width: min(100%, 330px);
    }

    .scroll-indicator {
        margin-top: 35px;
    }
}

/* =========================================
   CHRISTMAS EXPERIENCE SECTION
========================================= */

.christmas-experience {
    position: relative;

    padding: 120px 20px;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(190, 25, 45, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(20, 150, 80, 0.08),
            transparent 30%
        ),
        #07130f;

    overflow: hidden;
}


/* =========================================
   CONTAINER
========================================= */

.experience-container {
    width: min(1150px, 92%);

    margin: auto;
}


/* =========================================
   SECTION HEADING
========================================= */

.section-heading {
    max-width: 780px;

    margin: 0 auto 70px;

    text-align: center;
}

.section-label {
    display: inline-block;

    margin-bottom: 18px;

    color: #e8bb4d;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 4px;
}

.section-heading h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(38px, 5vw, 64px);

    line-height: 1.05;

    letter-spacing: -2px;
}

.section-heading h2 span {
    display: block;

    margin-top: 8px;

    background: linear-gradient(
        90deg,
        #d7a932,
        #f6d36b,
        #d7a932
    );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.section-heading p {
    max-width: 680px;

    margin: 25px auto 0;

    color: rgba(255, 255, 255, 0.65);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================
   EXPERIENCE GRID
========================================= */

.experience-grid {
    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    gap: 60px;

    align-items: center;
}


/* =========================================
   STORY
========================================= */

.experience-story {
    position: relative;

    display: flex;

    gap: 25px;

    padding: 45px;

    border: 1px solid rgba(255, 255, 255, 0.09);

    border-radius: 28px;

    background: rgba(255, 255, 255, 0.045);

    backdrop-filter: blur(20px);

    box-shadow:
        0 20px 70px rgba(0, 0, 0, 0.18);
}

.story-number {
    flex-shrink: 0;

    font-size: 14px;

    font-weight: 800;

    color: #dcae3b;

    letter-spacing: 2px;
}

.story-content h3 {
    margin: 0 0 22px;

    color: #ffffff;

    font-size: 30px;
}

.story-content p {
    margin: 0 0 18px;

    color: rgba(255, 255, 255, 0.66);

    font-size: 15px;

    line-height: 1.85;
}

.story-content p:last-child {
    margin-bottom: 0;
}

.story-content strong {
    color: #e6bb50;
}


/* =========================================
   HIGHLIGHTS
========================================= */

.experience-highlights {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}


/* =========================================
   EXPERIENCE CARD
========================================= */

.experience-card {
    min-height: 190px;

    padding: 28px 24px;

    border: 1px solid rgba(255, 255, 255, 0.09);

    border-radius: 22px;

    background: rgba(255, 255, 255, 0.045);

    backdrop-filter: blur(18px);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-7px);

    border-color: rgba(224, 179, 62, 0.4);

    background: rgba(255, 255, 255, 0.07);
}


/* =========================================
   ICON
========================================= */

.experience-icon {
    width: 50px;
    height: 50px;

    margin-bottom: 22px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            rgba(215, 169, 49, 0.18),
            rgba(215, 169, 49, 0.04)
        );

    border: 1px solid rgba(224, 179, 62, 0.25);

    color: #e6b93f;

    font-size: 18px;
}

.experience-card h4 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: 17px;
}

.experience-card p {
    margin: 0;

    color: rgba(255, 255, 255, 0.55);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================
   BOTTOM STATEMENT
========================================= */

.experience-statement {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    margin-top: 70px;
}

.statement-line {
    width: 100px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(224, 179, 62, 0.5),
            transparent
        );
}

.experience-statement p {
    margin: 0;

    color: rgba(255, 255, 255, 0.55);

    font-size: 13px;

    letter-spacing: 1px;

    white-space: nowrap;
}

.experience-statement i {
    color: #e4b43d;

    margin-right: 6px;
}

.experience-statement strong {
    color: #e7bb4c;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 850px) {

    .christmas-experience {
        padding: 90px 15px;
    }

    .experience-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .experience-story {
        padding: 32px 25px;
    }

    .experience-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 520px) {

    .section-heading {
        margin-bottom: 45px;
    }

    .section-heading h2 {
        font-size: 38px;
    }

    .experience-story {
        display: block;

        padding: 30px 22px;
    }

    .story-number {
        margin-bottom: 15px;
    }

    .story-content h3 {
        font-size: 25px;
    }

    .experience-highlights {
        grid-template-columns: 1fr;
    }

    .experience-card {
        min-height: auto;
    }

    .experience-statement {
        gap: 10px;
    }

    .statement-line {
        width: 35px;
    }

    .experience-statement p {
        font-size: 10px;

        white-space: normal;

        text-align: center;
    }
}

/* =========================================
   CHRISTMAS ITINERARY
========================================= */

.christmas-itinerary {
    position: relative;
    padding: 110px 7%;
    background:
        radial-gradient(circle at 20% 20%, rgba(220, 30, 60, 0.10), transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(20, 180, 90, 0.10), transparent 30%),
        #07150f;
    overflow: hidden;
}


/* HEADER */

.itinerary-header {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

.christmas-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: #f4c542;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
}

.itinerary-header h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.05;
}

.itinerary-header h2 span {
    color: #e63946;
}

.itinerary-header p {
    max-width: 650px;
    margin: 25px auto 0;
    color: rgba(255,255,255,0.72);
    font-size: 17px;
    line-height: 1.8;
}


/* TIMELINE */

.itinerary-timeline {
    position: relative;
    max-width: 1100px;
    margin: auto;
}

.itinerary-timeline::before {
    content: "";
    position: absolute;
    left: 38px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        #e63946,
        #f4c542,
        #168a4a,
        #e63946
    );
}


/* DAY */

.itinerary-day {
    position: relative;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 35px;
    margin-bottom: 70px;
}


/* NUMBER */

.day-number {
    width: 78px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(
        145deg,
        #e63946,
        #b91c2b
    );

    border: 4px solid #f4c542;

    box-shadow:
        0 0 25px rgba(230,57,70,0.35);

    z-index: 2;
}

.day-number span {
    color: white;
    font-size: 20px;
    font-weight: 800;
}


/* CARD */

.day-card {
    padding: 38px;

    background: rgba(255,255,255,0.055);

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 28px;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 25px 70px rgba(0,0,0,0.25);

    transition: 0.4s ease;
}

.day-card:hover {
    transform: translateY(-5px);

    border-color: rgba(244,197,66,0.45);

    box-shadow:
        0 30px 80px rgba(0,0,0,0.35);
}


/* DAY TOP */

.day-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.day-label {
    color: #f4c542;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}

.day-top h3 {
    margin: 8px 0 0;
    color: #ffffff;
    font-size: clamp(25px, 3vw, 36px);
}


/* ICON */

.day-icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: rgba(230,57,70,0.12);

    font-size: 30px;
}


/* INTRO */

.day-intro {
    margin: 25px 0 30px;

    color: rgba(255,255,255,0.72);

    font-size: 16px;
    line-height: 1.8;
}


/* ACTIVITIES */

.activity-list {
    display: grid;
    gap: 20px;
}

.activity {
    display: flex;
    gap: 18px;

    padding: 18px;

    border-radius: 18px;

    background: rgba(255,255,255,0.035);

    border: 1px solid rgba(255,255,255,0.07);
}

.activity-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 14px;

    background: rgba(244,197,66,0.10);

    font-size: 21px;
}

.activity h4 {
    margin: 0 0 5px;

    color: #ffffff;

    font-size: 16px;
}

.activity p {
    margin: 0;

    color: rgba(255,255,255,0.60);

    font-size: 14px;

    line-height: 1.65;
}


/* FEATURED DAY */

.featured-day .day-number {
    background: linear-gradient(
        145deg,
        #168a4a,
        #075d30
    );
}

.featured-day .day-card {
    border-color: rgba(244,197,66,0.30);

    background:
        linear-gradient(
            145deg,
            rgba(244,197,66,0.08),
            rgba(255,255,255,0.04)
        );
}


/* NOTE */

.itinerary-note {
    max-width: 900px;

    margin: 30px auto 0;

    display: flex;
    gap: 20px;
    align-items: flex-start;

    padding: 25px 30px;

    border-radius: 20px;

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(244,197,66,0.20);
}

.itinerary-note > span {
    font-size: 25px;
}

.itinerary-note strong {
    color: #f4c542;
}

.itinerary-note p {
    margin: 7px 0 0;

    color: rgba(255,255,255,0.60);

    font-size: 14px;

    line-height: 1.7;
}


/* MOBILE */

@media (max-width: 768px) {

    .christmas-itinerary {
        padding: 80px 20px;
    }

    .itinerary-header {
        margin-bottom: 55px;
    }

    .itinerary-timeline::before {
        left: 27px;
    }

    .itinerary-day {
        grid-template-columns: 55px 1fr;
        gap: 15px;
        margin-bottom: 45px;
    }

    .day-number {
        width: 55px;
        height: 55px;
        border-width: 3px;
    }

    .day-number span {
        font-size: 15px;
    }

    .day-card {
        padding: 23px 18px;
        border-radius: 22px;
    }

    .day-top h3 {
        font-size: 23px;
    }

    .day-icon {
        width: 48px;
        height: 48px;
        font-size: 23px;
    }

    .activity {
        padding: 15px;
        gap: 12px;
    }

    .activity-icon {
        width: 38px;
        height: 38px;
        font-size: 17px;
    }

    .itinerary-note {
        padding: 20px;
    }

}

/* =========================================
   CHRISTMAS CAMP GALLERY
========================================= */

.camp-gallery {
    position: relative;

    padding: 110px 7%;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(190, 25, 50, 0.10),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(20, 140, 70, 0.10),
            transparent 30%
        ),
        #07150f;

    overflow: hidden;
}


/* HEADER */

.camp-gallery-header {
    max-width: 760px;

    margin: 0 auto 65px;

    text-align: center;
}

.camp-gallery-header h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(40px, 5vw, 68px);

    line-height: 1.05;
}

.camp-gallery-header h2 span {
    color: #e63946;
}

.camp-gallery-header p {
    max-width: 650px;

    margin: 25px auto 0;

    color: rgba(255,255,255,0.68);

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================
   GALLERY GRID
========================================= */

.camp-gallery-grid {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1.35fr
        1fr
        1fr;

    grid-auto-rows: 300px;

    gap: 18px;
}


/* IMAGE */

.camp-image {

    position: relative;

    overflow: hidden;

    border-radius: 24px;

    border: 1px solid rgba(255,255,255,0.12);

    background: #10251b;

    cursor: pointer;

    box-shadow:
        0 20px 60px rgba(0,0,0,0.25);
}


/* LARGE IMAGE */

.camp-large {

    grid-row: span 2;
}


/* IMAGE */

.camp-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.7s ease,
        filter 0.7s ease;
}


/* HOVER */

.camp-image:hover img {

    transform: scale(1.07);

    filter: brightness(0.75);
}


/* DARK OVERLAY */

.camp-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.75),
            rgba(0,0,0,0.05) 65%
        );

    pointer-events: none;
}


/* IMAGE TEXT */

.camp-image-overlay {

    position: absolute;

    z-index: 2;

    left: 25px;

    right: 25px;

    bottom: 24px;
}

.camp-image-overlay span {

    display: inline-block;

    margin-bottom: 8px;

    color: #f4c542;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}

.camp-image-overlay h3 {

    margin: 0;

    color: #ffffff;

    font-size: 23px;
}

.camp-image-overlay p {

    margin: 6px 0 0;

    color: rgba(255,255,255,0.72);

    font-size: 13px;
}


/* =========================================
   FEATURES
========================================= */

.camp-gallery-footer {

    max-width: 1000px;

    margin: 45px auto 0;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


.camp-feature {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 20px 22px;

    border-radius: 18px;

    background: rgba(255,255,255,0.045);

    border: 1px solid rgba(255,255,255,0.09);

    backdrop-filter: blur(15px);

    -webkit-backdrop-filter: blur(15px);
}


.camp-feature > span {

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: rgba(244,197,66,0.12);

    font-size: 20px;
}


.camp-feature strong {

    display: block;

    color: #ffffff;

    font-size: 14px;
}


.camp-feature small {

    display: block;

    margin-top: 3px;

    color: rgba(255,255,255,0.55);

    font-size: 12px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 850px) {

    .camp-gallery {

        padding: 80px 20px;

    }


    .camp-gallery-grid {

        grid-template-columns: 1fr 1fr;

        grid-auto-rows: 240px;

    }


    .camp-large {

        grid-column: span 2;

        grid-row: span 1;

    }


    .camp-gallery-footer {

        grid-template-columns: 1fr;

    }

}


@media (max-width: 550px) {

    .camp-gallery-grid {

        grid-template-columns: 1fr;

        grid-auto-rows: 280px;

    }


    .camp-large {

        grid-column: span 1;

    }


    .camp-image-overlay h3 {

        font-size: 20px;

    }

}

/* =========================================
   WHAT'S INCLUDED
========================================= */

.whats-included {
    position: relative;

    padding: 120px 7%;

    background:
        radial-gradient(
            circle at 15% 30%,
            rgba(230, 57, 70, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(20, 140, 70, 0.08),
            transparent 30%
        ),
        #07150f;

    overflow: hidden;
}


/* =========================================
   CONTAINER
========================================= */

.included-container {
    width: min(1150px, 100%);

    margin: auto;
}


/* =========================================
   HEADER
========================================= */

.included-header {
    max-width: 760px;

    margin: 0 auto 65px;

    text-align: center;
}

.included-header h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.05;

    letter-spacing: -2px;
}

.included-header h2 span {
    color: #e63946;
}

.included-header p {
    max-width: 650px;

    margin: 25px auto 0;

    color: rgba(255,255,255,0.67);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================
   INCLUDED GRID
========================================= */

.included-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}


/* =========================================
   INCLUDED CARD
========================================= */

.included-card {
    position: relative;

    min-height: 265px;

    padding: 30px 25px;

    border-radius: 24px;

    background: rgba(255,255,255,0.045);

    border: 1px solid rgba(255,255,255,0.09);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.included-card:hover {
    transform: translateY(-8px);

    background: rgba(255,255,255,0.065);

    border-color: rgba(244,197,66,0.40);
}


/* =========================================
   FEATURED CARD
========================================= */

.included-card.featured {

    background:
        linear-gradient(
            145deg,
            rgba(230,57,70,0.14),
            rgba(255,255,255,0.045)
        );

    border-color: rgba(230,57,70,0.30);
}

.included-card.featured::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            #e63946,
            #f4c542
        );
}


/* =========================================
   ICON
========================================= */

.included-icon {

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    border-radius: 16px;

    background:
        rgba(244,197,66,0.11);

    border: 1px solid
        rgba(244,197,66,0.20);

    color: #f4c542;

    font-size: 18px;
}


/* =========================================
   NUMBER
========================================= */

.included-number {

    position: absolute;

    top: 25px;
    right: 25px;

    color: rgba(255,255,255,0.12);

    font-size: 28px;

    font-weight: 800;
}


/* =========================================
   CARD TEXT
========================================= */

.included-card h3 {

    margin: 0 0 12px;

    color: #ffffff;

    font-size: 18px;

    line-height: 1.3;
}

.included-card p {

    margin: 0;

    color: rgba(255,255,255,0.57);

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================
   SUMMARY
========================================= */

.included-summary {

    max-width: 900px;

    margin: 55px auto 0;

    padding: 30px 35px;

    display: flex;

    align-items: center;

    gap: 25px;

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            rgba(244,197,66,0.09),
            rgba(255,255,255,0.035)
        );

    border: 1px solid
        rgba(244,197,66,0.22);

    backdrop-filter: blur(18px);
}


/* SUMMARY ICON */

.summary-icon {

    width: 65px;
    height: 65px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #e63946,
            #b91c2b
        );

    color: #ffffff;

    font-size: 24px;

    box-shadow:
        0 10px 30px
        rgba(230,57,70,0.20);
}


/* SUMMARY TEXT */

.summary-content span {

    color: #f4c542;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;
}

.summary-content h3 {

    margin: 6px 0 6px;

    color: #ffffff;

    font-size: 22px;
}

.summary-content p {

    margin: 0;

    color: rgba(255,255,255,0.58);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================
   NOTE
========================================= */

.included-note {

    max-width: 900px;

    margin: 25px auto 0;

    display: flex;

    gap: 12px;

    align-items: flex-start;

    color: rgba(255,255,255,0.48);

    font-size: 12px;

    line-height: 1.7;
}

.included-note i {

    margin-top: 3px;

    color: #f4c542;

}

.included-note p {

    margin: 0;

}

.included-note strong {

    color: rgba(255,255,255,0.75);

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .included-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .whats-included {

        padding: 85px 20px;

    }

    .included-grid {

        grid-template-columns: 1fr;

    }

    .included-card {

        min-height: auto;

    }

    .included-summary {

        flex-direction: column;

        align-items: flex-start;

        padding: 25px;

    }

    .included-note {

        font-size: 11px;

    }

}

/* =========================
   WHAT TO CARRY
========================= */

.what-to-carry {
    position: relative;
    padding: 110px 7%;
    background:
        radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.08), transparent 30%),
        radial-gradient(circle at 85% 80%, rgba(120, 20, 30, 0.10), transparent 30%),
        #07140f;
    overflow: hidden;
}

.carry-container {
    max-width: 1250px;
    margin: auto;
}

/* Heading */

.what-to-carry .section-heading {
    max-width: 720px;
    margin: 0 auto 60px;
    text-align: center;
}

.what-to-carry .section-kicker {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #d4af37;
}

.what-to-carry .section-heading h2 {
    margin: 0 0 18px;
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: #fff;
    line-height: 1.1;
}

.what-to-carry .section-heading h2 span {
    color: #d4af37;
}

.what-to-carry .section-heading p {
    margin: 0;
    color: rgba(255,255,255,0.68);
    line-height: 1.8;
    font-size: 1rem;
}

/* Grid */

.carry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Cards */

.carry-card {
    position: relative;
    padding: 30px 24px;
    min-height: 220px;

    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 20px;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    transition: transform 0.35s ease,
                border-color 0.35s ease,
                background 0.35s ease;
}

.carry-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212,175,55,0.45);
    background: rgba(255,255,255,0.07);
}

/* Icon */

.carry-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 15px;

    background: rgba(212,175,55,0.10);
    border: 1px solid rgba(212,175,55,0.25);

    color: #d4af37;
    font-size: 1.25rem;
}

.carry-content h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 1.05rem;
}

.carry-content p {
    margin: 0;
    color: rgba(255,255,255,0.62);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* Packing Reminder */

.packing-reminder {
    display: flex;
    align-items: center;
    gap: 25px;

    margin-top: 45px;
    padding: 30px 35px;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            rgba(212,175,55,0.10),
            rgba(120,20,30,0.10)
        );

    border: 1px solid rgba(212,175,55,0.22);
    backdrop-filter: blur(15px);
}

.reminder-icon {
    flex-shrink: 0;

    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(212,175,55,0.12);
    color: #d4af37;
    font-size: 1.4rem;
}

.reminder-content span {
    display: block;
    margin-bottom: 7px;

    color: #d4af37;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.reminder-content h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 1.2rem;
}

.reminder-content p {
    margin: 0;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    font-size: 0.9rem;
}

/* Responsive */

@media (max-width: 1000px) {
    .carry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .what-to-carry {
        padding: 80px 5%;
    }

    .what-to-carry .section-heading {
        margin-bottom: 40px;
    }

    .carry-grid {
        grid-template-columns: 1fr;
    }

    .carry-card {
        min-height: auto;
        padding: 25px;
    }

    .packing-reminder {
        align-items: flex-start;
        flex-direction: column;
        padding: 28px 24px;
    }

}

/* =========================
   PACKAGE PRICE & BOOKING
========================= */

.package-booking {
    position: relative;
    padding: 120px 7%;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(212, 175, 55, 0.10),
            transparent 38%
        ),
        radial-gradient(
            circle at 10% 80%,
            rgba(120, 20, 30, 0.10),
            transparent 30%
        ),
        #06120d;
}

.booking-container {
    max-width: 1100px;
    margin: auto;
}


/* =========================
   HEADING
========================= */

.booking-heading {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.booking-kicker {
    display: inline-block;
    margin-bottom: 15px;

    color: #d4af37;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
}

.booking-heading h2 {
    margin: 0 0 18px;

    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.1;
}

.booking-heading h2 span {
    color: #d4af37;
}

.booking-heading p {
    margin: 0;

    color: rgba(255,255,255,0.65);
    line-height: 1.8;
}


/* =========================
   MAIN PRICE CARD
========================= */

.premium-price-card {
    position: relative;

    max-width: 780px;
    margin: auto;

    padding: 2px;

    border-radius: 32px;

    background:
        linear-gradient(
            135deg,
            rgba(212,175,55,0.75),
            rgba(255,255,255,0.12),
            rgba(120,20,30,0.65)
        );

    box-shadow:
        0 30px 80px rgba(0,0,0,0.45);
}

.price-content {
    position: relative;

    padding: 60px 55px;

    text-align: center;

    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(10,30,21,0.98),
            rgba(5,15,11,0.98)
        );

    overflow: hidden;
}


/* Decorative glow */

.price-glow {
    position: absolute;

    width: 250px;
    height: 250px;

    top: -120px;
    right: -100px;

    border-radius: 50%;

    background: rgba(212,175,55,0.14);

    filter: blur(50px);
}


/* =========================
   PRICE CONTENT
========================= */

.price-label {
    position: relative;

    display: inline-block;
    margin-bottom: 18px;

    color: #d4af37;

    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
}

.price-content h3 {
    position: relative;

    margin: 0 0 15px;

    color: #fff;

    font-size: clamp(2rem, 4vw, 3rem);
}

.price-content h3 span {
    color: #d4af37;
}

.price-description {
    position: relative;

    max-width: 600px;
    margin: 0 auto 35px;

    color: rgba(255,255,255,0.63);

    line-height: 1.8;
}


/* =========================
   PRICE
========================= */

.price-display {
    position: relative;

    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;

    margin: 30px 0 5px;
}

.price-prefix {
    color: #d4af37;

    font-size: 1rem;
    font-weight: 700;
}

.price-amount {
    color: #fff;

    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;

    line-height: 1;
    letter-spacing: -2px;
}

.price-person {
    color: rgba(255,255,255,0.55);

    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.price-note {
    margin: 15px 0 35px;

    color: rgba(255,255,255,0.42);

    font-size: 0.75rem;
}


/* =========================
   DETAILS
========================= */

.booking-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin: 35px 0;

    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.booking-detail {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 22px 15px;
}

.booking-detail + .booking-detail {
    border-left: 1px solid rgba(255,255,255,0.08);
}

.booking-detail i {
    color: #d4af37;
    font-size: 1.1rem;
}

.booking-detail div {
    text-align: left;
}

.booking-detail strong {
    display: block;

    margin-bottom: 4px;

    color: #fff;
    font-size: 0.8rem;
}

.booking-detail span {
    display: block;

    color: rgba(255,255,255,0.5);
    font-size: 0.72rem;
}


/* =========================
   WHATSAPP BUTTON
========================= */

.booking-whatsapp {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    min-width: 260px;

    padding: 17px 30px;

    border-radius: 50px;

    background: linear-gradient(
        135deg,
        #d4af37,
        #f0d675
    );

    color: #07140f;

    text-decoration: none;

    font-size: 0.95rem;
    font-weight: 800;

    box-shadow:
        0 12px 35px rgba(212,175,55,0.20);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.booking-whatsapp i {
    font-size: 1.2rem;
}

.booking-whatsapp:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 45px rgba(212,175,55,0.35);
}


/* =========================
   CONFIRMATION NOTE
========================= */

.booking-confirmation {
    margin: 18px 0 0;

    color: rgba(255,255,255,0.42);

    font-size: 0.72rem;
}

.booking-confirmation i {
    margin-right: 5px;
    color: #d4af37;
}


/* =========================
   TRUST ITEMS
========================= */

.booking-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    max-width: 850px;

    margin: 45px auto 0;

    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;

    background: rgba(255,255,255,0.025);

    backdrop-filter: blur(10px);
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 18px 12px;

    color: rgba(255,255,255,0.55);

    font-size: 0.72rem;
}

.trust-item i {
    color: #d4af37;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 800px) {

    .package-booking {
        padding: 90px 5%;
    }

    .price-content {
        padding: 45px 25px;
    }

    .booking-details {
        grid-template-columns: 1fr;
    }

    .booking-detail + .booking-detail {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .booking-detail {
        justify-content: flex-start;
        padding: 18px 10px;
    }

    .booking-bottom {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 500px) {

    .booking-heading h2 {
        font-size: 2.3rem;
    }

    .price-content {
        padding: 40px 20px;
    }

    .price-display {
        gap: 5px;
    }

    .price-amount {
        font-size: 3.8rem;
    }

    .booking-whatsapp {
        width: 100%;
        min-width: unset;
    }

    .booking-bottom {
        grid-template-columns: 1fr 1fr;
    }

    .trust-item {
        font-size: 0.65rem;
    }

}

/* ========================= */
/* FOOTER */
/* ========================= */

.footer{

background:#030d17;

padding-top:100px;

color:white;
}

.footer-container{

width:90%;

max-width:1400px;

margin:auto;

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));

gap:50px;

padding-bottom:60px;
}

.footer-logo{

width:140px;

margin-bottom:20px;
}

.footer-column p{

line-height:1.9;

color:
rgba(255,255,255,.75);
}

.footer-column h3{

margin-bottom:25px;

color:#D4A537;
}

.footer-column ul{

list-style:none;
}

.footer-column ul li{

margin-bottom:12px;
}

.footer-column ul li a{

text-decoration:none;

color:
rgba(255,255,255,.75);

transition:.3s;
}

.footer-column ul li a:hover{

color:#D4A537;

padding-left:5px;
}

.footer-column i{

color:#D4A537;

margin-right:10px;
}

/* MAP */

.footer-map{

width:90%;

max-width:1400px;

margin:0 auto 50px;
}

.footer-map iframe{

width:100%;

height:300px;

border:none;

border-radius:25px;
}

/* SOCIALS */

.footer-social{

display:flex;

justify-content:center;

gap:20px;

margin-bottom:40px;
}

.footer-social a{

width:55px;
height:55px;

display:flex;

justify-content:center;
align-items:center;

border-radius:50%;

background:
rgba(255,255,255,.05);

color:white;

font-size:20px;

transition:.4s;
}

.footer-social a:hover{

background:#D4A537;

transform:translateY(-5px);
}

/* COPYRIGHT */

.footer-bottom{

text-align:center;

padding:30px;

border-top:
1px solid rgba(255,255,255,.08);

color:
rgba(255,255,255,.6);
}

/* BACK TO TOP */

.back-to-top{

position:fixed;

bottom:110px;
right:25px;

width:55px;
height:55px;

display:flex;

justify-content:center;
align-items:center;

border-radius:50%;

background:#D4A537;

color:white;

text-decoration:none;

font-size:18px;

z-index:999;

opacity:0;

visibility:hidden;

transition:.4s;
}

.back-to-top.show{

opacity:1;

visibility:visible;
}

.back-to-top:hover{

transform:translateY(-5px);
}

/* =========================
   GLOBAL CHRISTMAS SNOW
========================= */

.global-snow {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100%;

    pointer-events: none;

    overflow: hidden;

    z-index: 9999;
}

/* Individual snowflakes */

.global-snow span {
    position: absolute;

    top: -50px;
    left: 0;

    color: rgba(255, 255, 255, 0.75);

    font-size: 16px;

    user-select: none;

    filter: blur(0.2px);

    animation-name: globalSnowFall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}


/* Different positions */

.global-snow span:nth-child(1) {
    left: 3%;
    animation-duration: 13s;
    animation-delay: -2s;
    font-size: 12px;
}

.global-snow span:nth-child(2) {
    left: 9%;
    animation-duration: 18s;
    animation-delay: -7s;
    font-size: 20px;
}

.global-snow span:nth-child(3) {
    left: 15%;
    animation-duration: 11s;
    animation-delay: -5s;
    font-size: 14px;
}

.global-snow span:nth-child(4) {
    left: 21%;
    animation-duration: 16s;
    animation-delay: -10s;
    font-size: 10px;
}

.global-snow span:nth-child(5) {
    left: 28%;
    animation-duration: 14s;
    animation-delay: -4s;
    font-size: 18px;
}

.global-snow span:nth-child(6) {
    left: 34%;
    animation-duration: 20s;
    animation-delay: -12s;
    font-size: 13px;
}

.global-snow span:nth-child(7) {
    left: 40%;
    animation-duration: 12s;
    animation-delay: -3s;
    font-size: 22px;
}

.global-snow span:nth-child(8) {
    left: 46%;
    animation-duration: 17s;
    animation-delay: -8s;
    font-size: 11px;
}

.global-snow span:nth-child(9) {
    left: 52%;
    animation-duration: 15s;
    animation-delay: -6s;
    font-size: 17px;
}

.global-snow span:nth-child(10) {
    left: 58%;
    animation-duration: 19s;
    animation-delay: -11s;
    font-size: 13px;
}

.global-snow span:nth-child(11) {
    left: 64%;
    animation-duration: 13s;
    animation-delay: -1s;
    font-size: 21px;
}

.global-snow span:nth-child(12) {
    left: 70%;
    animation-duration: 16s;
    animation-delay: -9s;
    font-size: 12px;
}

.global-snow span:nth-child(13) {
    left: 76%;
    animation-duration: 11s;
    animation-delay: -4s;
    font-size: 18px;
}

.global-snow span:nth-child(14) {
    left: 81%;
    animation-duration: 18s;
    animation-delay: -13s;
    font-size: 14px;
}

.global-snow span:nth-child(15) {
    left: 86%;
    animation-duration: 14s;
    animation-delay: -6s;
    font-size: 23px;
}

.global-snow span:nth-child(16) {
    left: 91%;
    animation-duration: 20s;
    animation-delay: -10s;
    font-size: 11px;
}

.global-snow span:nth-child(17) {
    left: 95%;
    animation-duration: 12s;
    animation-delay: -3s;
    font-size: 16px;
}

.global-snow span:nth-child(18) {
    left: 12%;
    animation-duration: 21s;
    animation-delay: -15s;
    font-size: 9px;
}

.global-snow span:nth-child(19) {
    left: 73%;
    animation-duration: 15s;
    animation-delay: -8s;
    font-size: 19px;
}

.global-snow span:nth-child(20) {
    left: 55%;
    animation-duration: 18s;
    animation-delay: -5s;
    font-size: 10px;
}


/* =========================
   SNOW FALL ANIMATION
========================= */

@keyframes globalSnowFall {

    0% {
        transform:
            translate3d(0, -60px, 0)
            rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    25% {
        transform:
            translate3d(35px, 25vh, 0)
            rotate(90deg);
    }

    50% {
        transform:
            translate3d(-30px, 50vh, 0)
            rotate(180deg);
    }

    75% {
        transform:
            translate3d(40px, 75vh, 0)
            rotate(270deg);
    }

    90% {
        opacity: 0.7;
    }

    100% {
        transform:
            translate3d(-20px, 110vh, 0)
            rotate(360deg);
        opacity: 0;
    }

}