:root {
    --primary: #003a16;
    --primaryLight: #ffba43;
    --secondary: #ffba43;
    --secondaryLight: #ffba43;
    --headerColor: #013f04;
    --bodyTextColor: #4e4b66;
    --bodyTextColorWhite: #fafbfc;
    /* 13px - 16px */
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    /* 31px - 49px */
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1rem;
    /* 60px - 100px top and bottom */
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

body {
    margin: 0;
    padding: 0;
}

*, *:before, *:after {
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
}

.cs-topper {
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: .1em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    display: block;
}

.cs-title {
    font-size: var(--headerFontSize);
    font-weight: 600;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
}

.cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: var(--bodyTextColor);
}

/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #hero-1618 {
        padding: var(--sectionPadding);
        /* 200px - 300px - leaving extra space for the navigation */
        padding-top: clamp(12.5rem, 31.95vw, 18.75rem);
        position: relative;
        z-index: 1;
    }
    #hero-1618 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        /* 60px - 180px */
        gap: clamp(3.75rem, 13vw, 11.25rem);
    }
    #hero-1618 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        max-width: 48.75rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }
    #hero-1618 .cs-topper {
        /* 13px - 16px */
        font-size: clamp(0.8125rem, 1.5vw, 1rem);
        line-height: 1.2em;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-align: center;
        text-transform: uppercase;
        margin-bottom: 0.25rem;
        color: var(--secondaryLight);
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        position: relative;
    }
    #hero-1618 .cs-chevron {
        --chevronColor: var(--secondaryLight);
        width: 3rem;
        height: auto;
    }
    #hero-1618 .cs-title {
        /* 39px - 61px */
        font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
        font-weight: 500;
        line-height: 1.2em;
        text-align: inherit;
        max-width: 100%;
        margin: 0 0 2.5rem 0;
        color: #fff;
        position: relative;
    }
    #hero-1618 .cs-text {
        /* 16px - 20px */
        font-size: clamp(1rem, 1.95vw, 1.25rem);
        line-height: 1.5em;
        text-align: inherit;
        width: 100%;
        /* 464px - 622px */
        max-width: clamp(29rem, 60vw, 38.785rem);
        margin: 0 0 2.5rem 0;
        color: #fff;
    }
    #hero-1618 .cs-button-solid {
        font-size: 1rem;
        /* 46px - 56px */
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        text-decoration: none;
        font-weight: 700;
        margin: 0;
        color: #fff;
        padding: 0 1.5rem;
        background-color: var(--secondaryLight);
        display: inline-block;
        position: relative;
        z-index: 1;
    }
    #hero-1618 .cs-button-solid:before {
        content: '';
        position: absolute;
        display: block;
        height: 100%;
        width: 0%;
        background: var(--secondaryLight);
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width .3s;
    }
    #hero-1618 .cs-button-solid:hover:before {
        width: 100%;
    }
    #hero-1618 .cs-card-group {
        margin: 0;
        padding: 0;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        /* 16px - 20px */
        gap: clamp(1rem, 2.3vw, 1.25rem);
    }
    #hero-1618 .cs-item {
        width: 100%;
        text-align: left;
        list-style: none;
        margin: 0;
        /* 24px - 32px */
        padding: clamp(1.5rem, 3vw, 2rem);
        background-color: #fff;
        box-shadow: 0px 12px 80px 0px rgba(26, 26, 26, 0.08);
        /* prevents padding from affecting height and width */
        box-sizing: border-box;
        grid-column: span 12;
        grid-row: span 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        position: relative;
        z-index: 1;
    }
    #hero-1618 .cs-icon {
        width: 3rem;
        height: auto;
        margin: 0 0 1.5rem 0;
    }
    #hero-1618 .cs-h3 {
        /* 20px - 25px */
        font-size: clamp(0.7rem, 1.7vw, 1rem);
        line-height: 1.2em;
        font-weight: 400;
        text-align: inherit;
        margin: 0 0 1rem 0;
        color: var(--headerColor);
    }
    #hero-1618 .cs-item-text {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        max-width: 28.125rem;
        margin: 0;
        padding: 0;
        color: var(--bodyTextColor);
    }
    #hero-1618 .cs-background {
        width: 100%;
        height: 55%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -2;
    }
    #hero-1618 .cs-background:before {
        /* Overlay */
        content: '';
        width: 100%;
        height: 100%;
        background: #014901;
        opacity: .8;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        z-index: 1;
        /* prevents the cursor from interacting with it */
        pointer-events: none;
    }
    #hero-1618 .cs-background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: top;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #hero-1618 {
        padding-bottom: 0;
    }
    #hero-1618 .cs-container {
        align-items: flex-start;
    }
    #hero-1618 .cs-content {
        text-align: left;
        margin-left: 0;
        align-items: flex-start;
    }
    #hero-1618 .cs-item {
        grid-column: span 4;
    }
    #hero-1618 .cs-background {
        height: 87%;
    }
    #hero-1618 .cs-background:before {
        background: linear-gradient(90deg, #00552a 21.41%, rgba(17, 25, 38, 0.72) 34.98%, rgba(17, 25, 38, 0) 62.53%);
        opacity: 1;
    }
}
/* Large Desktop Parallax Effect - 100px */
@media only screen and (min-width: 100rem) {
    #hero-1618 .cs-background {
        background: url("https://images.unsplash.com/photo-1709402606682-400133d92ab2?q=80&w=870&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        /* creates the parallax effect */
        background-attachment: fixed;
    }
    #hero-1618 .cs-background img {
        display: none;
    }
}

/*-- -------------------------- -->
<---        Destinations        -->
<--- -------------------------- -*/

/* Destinations Section Container */
.cs-destinations-section {
    padding: 80px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Destinations Section Header */
.cs-destinations-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 15px;
}

.cs-destinations-header .cs-topper {
    color: var(--primary);
}

.cs-destinations-header .cs-chevron {
    --chevronColor: var(--primary);
    width: 2.5rem;
    height: auto;
}

.cs-destinations-title {
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 700;
    color: var(--headerColor);
    margin: 0;
}

.cs-destinations-subtitle {
    color: var(--bodyTextColor);
    max-width: 600px;
    margin: 10px auto 0;
    font-size: clamp(14px, 1.5vw, 16px);
}

/* Destinations Grid - 4 columns */
.cs-destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Destination Card - Overlay Fade Style with Border Radius */
.cs-destination-card {
    position: relative;
    box-sizing: border-box;
    height: 280px;
    width: 100%;
    overflow: hidden;
    display: block;
    text-decoration: none;
    border-radius: 6px;
    float: left;
}

.cs-destination-card .cs-destination-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
    border-radius: 6px;
}

.cs-destination-card:hover .cs-destination-image {
    transform: scale(1.05);
}

.cs-destination-card .cs-destination-overlay {
    position: absolute;
    box-sizing: border-box;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,61,11,0.85) 100%);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    border-radius: 6px;
}

.cs-destination-card:hover .cs-destination-overlay {
    opacity: 1;
}

.cs-destination-card .cs-destination-content {
    color: white;
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.3s ease-in-out;
}

.cs-destination-card:hover .cs-destination-content {
    transform: translateY(0);
}

.cs-destination-card .cs-destination-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0 0 5px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.cs-destination-card .cs-destination-country {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.cs-destination-card .cs-destination-country span {
    background: rgba(255,255,255,0.2);
    padding: 2px 10px;
    font-size: 11px;
    border-radius: 3px;
}

.cs-destination-card .cs-destination-description {
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
    margin-bottom: 12px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cs-destination-card .cs-destination-btn {
    display: inline-block;
    padding: 8px 20px;
    background: var(--secondaryLight);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    transition: background 0.3s;
    text-align: center;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    text-shadow: none;
}

.cs-destination-card .cs-destination-btn:hover {
    background: var(--primary);
}

/* View All Button */
.cs-view-all-btn {
    display: inline-block;
    padding: 14px 45px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    text-decoration: none;
    font-size: clamp(14px, 1.2vw, 16px);
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
    border-radius: 0;
    width: auto;
    min-width: 220px;
    text-align: center;
    cursor: pointer;
}

.cs-view-all-btn:hover {
    background: var(--primary);
    color: white;
}

/* View All Container */
.cs-view-all-container {
    text-align: center;
    margin-top: 50px;
}

/*-- -------------------------- -->
<---  Destinations Responsive   -->
<--- -------------------------- -*/

/* Tablet - 3 columns */
@media (max-width: 1024px) {
    .cs-destinations-section {
        padding: 70px 20px 50px;
    }
    
    .cs-destinations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .cs-destination-card {
        height: 240px;
    }
}

/* Mobile Large - 2 columns */
@media (max-width: 768px) {
    .cs-destinations-section {
        padding: 60px 15px 40px;
    }
    
    .cs-destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cs-destination-card {
        height: 200px;
    }
    
    .cs-destinations-header .cs-chevron {
        width: 20px !important;
    }
    
    .cs-destination-card .cs-destination-title {
        font-size: 16px;
    }
    
    .cs-destination-card .cs-destination-description {
        font-size: 12px;
        -webkit-line-clamp: 1;
    }
    
    .cs-destination-card .cs-destination-btn {
        font-size: 11px;
        padding: 6px 16px;
    }
}

/* Mobile Small - 1 column */
@media (max-width: 480px) {
    .cs-destinations-section {
        padding: 50px 15px 30px;
        margin: 0 auto !important;
    }
    
    .cs-destinations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cs-destination-card {
        height: 230px;
        max-width: 100%;
    }
    
    .cs-destinations-header .cs-topper {
        font-size: clamp(11px, 2.5vw, 13px) !important;
    }
    
    .cs-destinations-header .cs-chevron {
        width: 18px !important;
    }
    
    .cs-destination-card .cs-destination-overlay {
        padding: 15px;
    }
    
    .cs-destination-card .cs-destination-title {
        font-size: 17px;
    }
    
    .cs-destination-card .cs-destination-description {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }
    
    .cs-destination-card .cs-destination-btn {
        padding: 8px 20px !important;
        font-size: 13px !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    .cs-view-all-btn {
        width: 100% !important;
        min-width: unset !important;
        display: block !important;
        text-align: center !important;
        padding: 16px 20px !important;
        font-size: 16px !important;
    }
    
    .cs-destinations-section {
        margin-top: 30px !important;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .cs-destinations-section {
        padding: 40px 12px 25px;
    }
    
    .cs-destinations-grid {
        gap: 15px !important;
    }
    
    .cs-destination-card {
        height: 200px;
    }
    
    .cs-destination-card .cs-destination-overlay {
        padding: 12px;
    }
    
    .cs-destination-card .cs-destination-title {
        font-size: 15px !important;
    }
    
    .cs-destination-card .cs-destination-description {
        font-size: 12px !important;
        -webkit-line-clamp: 1;
    }
    
    .cs-destination-card .cs-destination-btn {
        padding: 6px 16px !important;
        font-size: 12px !important;
    }
    
    .cs-destinations-header .cs-chevron {
        width: 14px !important;
    }
}

