/* =========================================
   WESTERFUN - GLOBAL DESIGN
========================================= */

:root {
    --green-dark: #0b4f2d;
    --green: #4fae24;
    --green-light: #83c51f;

    --orange: #ff7a00;
    --orange-dark: #e86700;

    --pink: #e83e76;
    --purple: #7650b5;
    --blue: #1598d4;

    --cream: #fffdf8;
    --light: #f7f7f2;

    --text: #183326;
    --text-light: #657168;

    --white: #ffffff;

    --shadow-small:
        0 8px 25px rgba(19, 53, 34, 0.08);

    --shadow:
        0 18px 50px rgba(19, 53, 34, 0.12);

    --radius-small: 14px;
    --radius: 22px;
    --radius-large: 32px;

    --container: 1280px;
}


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}


/* =========================================
   CONTAINER
========================================= */

.container {
    width: min(92%, var(--container));
    margin-left: auto;
    margin-right: auto;
}


/* =========================================
   TYPOGRAPHY
========================================= */

h1,
h2,
h3,
h4 {
    line-height: 1.15;
    font-weight: 800;
}

h1 {
    letter-spacing: -2px;
}

h2 {
    letter-spacing: -1.2px;
}

p {
    line-height: 1.75;
}


/* =========================================
   SECTION
========================================= */

section {
    position: relative;
}

.section-header {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-header h2 {
    font-size: clamp(34px, 4vw, 52px);
    margin: 14px 0 18px;
}

.section-header p {
    color: var(--text-light);
    font-size: 17px;
}


/* =========================================
   SECTION TAG
========================================= */

.section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 9px 18px;

    background: #edf8e8;
    color: var(--green);

    border-radius: 50px;

    font-size: 13px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.7px;
}


/* =========================================
   BUTTONS
========================================= */

.btn,
.btn-primary,
.ticket-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 52px;
    padding: 0 26px;

    border: 0;
    border-radius: 12px;

    font-size: 14px;
    font-weight: 800;

    text-decoration: none;
    cursor: pointer;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.btn:hover,
.btn-primary:hover,
.ticket-button:hover {
    transform: translateY(-3px);
}


/* ORANJE */

.btn-primary,
.ticket-button {
    background: var(--orange);
    color: var(--white);

    box-shadow:
        0 10px 25px rgba(255, 122, 0, .25);
}

.btn-primary:hover,
.ticket-button:hover {
    background: var(--orange-dark);

    box-shadow:
        0 14px 32px rgba(255, 122, 0, .32);
}


/* GROEN */

.btn-green {
    background: var(--green);
    color: var(--white);

    box-shadow:
        0 10px 25px rgba(79, 174, 36, .24);
}

.btn-green:hover {
    background: #439b1d;
}


/* WIT */

.btn-white {
    background: var(--white);
    color: var(--text);

    box-shadow: var(--shadow-small);
}


/* =========================================
   CARDS
========================================= */

.card {
    background: var(--white);

    border: 1px solid rgba(15, 70, 40, .07);
    border-radius: var(--radius);

    box-shadow: var(--shadow-small);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}


/* =========================================
   IMAGE STYLE
========================================= */

.rounded-image {
    overflow: hidden;
    border-radius: var(--radius);
}

.rounded-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform .5s ease;
}

.rounded-image:hover img {
    transform: scale(1.05);
}


/* =========================================
   GREEN TEXT
========================================= */

.text-green {
    color: var(--green);
}

.text-orange {
    color: var(--orange);
}


/* =========================================
   SELECTION
========================================= */

::selection {
    background: var(--green);
    color: white;
}


/* =========================================
   SCROLLBAR
========================================= */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1ed;
}

::-webkit-scrollbar-thumb {
    background: var(--green);
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--green-dark);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    :root {
        --radius: 18px;
        --radius-large: 24px;
    }

    .container {
        width: min(90%, var(--container));
    }

    .section-header {
        margin-bottom: 40px;
    }

}


@media (max-width: 600px) {

    h1 {
        letter-spacing: -1px;
    }

    h2 {
        letter-spacing: -.6px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .section-header p {
        font-size: 15px;
    }

    .btn,
    .btn-primary,
    .ticket-button {
        min-height: 50px;
        padding: 0 20px;
    }

}