/* =========================================================
   ENDE HOLIDAYS — GLOBAL CSS
   GLOBAL TYPOGRAPHY + SHARED COMPONENTS
========================================================= */

/* =========================================================
   LOCAL FONTS
========================================================= */

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter/Inter-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter/Inter-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter/Inter-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter/Inter-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/* =========================================================
   PLUS JAKARTA SANS
========================================================= */

@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../fonts/PlusJakartaSans/PlusJakartaSans-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../fonts/PlusJakartaSans/PlusJakartaSans-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../fonts/PlusJakartaSans/PlusJakartaSans-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../fonts/PlusJakartaSans/PlusJakartaSans-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


:root {

    /* =====================================================
       COLORS
    ===================================================== */

    --color-orange: #E99F24;
    --color-orange-dark: #B8860B;
    --color-orange-light: #F4BE62;

    --color-dark: #17202A;
    --color-text: #303840;
    --color-muted: #7A838B;

    --color-white: #FFFFFF;
    --color-bg: #F7F7F5;
    --color-border: #E7E7E4;


    /* =====================================================
       TYPOGRAPHY
    ===================================================== */

    --font-body: "Plus Jakarta Sans", sans-serif;
    --font-heading: "Plus Jakarta Sans", sans-serif;


    /* =====================================================
       CONTAINER
    ===================================================== */

    --container-width: 1180px;
}


/* =========================================================
   GLOBAL RESET
========================================================= */

html,
body {

    margin: 0;
    padding: 0;

    font-family: var(--font-body);

    font-size: 16px;

    font-weight: 400;

    line-height: 1.7;

    color: var(--color-text);

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


*,
*::before,
*::after {
    box-sizing: border-box;
}


/* =========================================================
   GLOBAL HEADINGS
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {

    margin-top: 0;

    font-family: var(--font-heading);

    color: var(--color-dark);

    font-weight: 700;

    line-height: 1.25;

    letter-spacing: -.4px;
}


h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 1rem;
}


/* =========================================================
   GLOBAL TEXT
========================================================= */

p {

    margin-top: 0;

    margin-bottom: 1rem;

    font-family: var(--font-body);

    font-size: 1.1rem;

    font-weight: 400;

    line-height: 1.75;
}


ul,
ol {

    font-family: var(--font-body);

    font-size: 1rem;

    font-weight: 400;

    line-height: 1.7;
}


/* =========================================================
   LINKS
========================================================= */

a {

    font-family: inherit;

    color: inherit;
}


/* =========================================================
   TABLE
========================================================= */

table td {

    font-family: var(--font-body);

    font-size: 1rem;

    font-weight: 400;

    line-height: 1.6;
}


table th {

    font-family: var(--font-body);

    font-size: 1rem;

    font-weight: 600;

    line-height: 1.6;
}