:root {
    --Primary-Blue: #3DDBEC;
    --Primary-Orange: #FF890A;
    --Primary-Gradient: linear-gradient(100deg, var(--Primary-Orange) 0%, red 100%);
    --White: #FFFCF3;
    --Black: #302A26;
    --Mid-Black: #302a26c3;
    --Light-Black: #302a269d;
    --Light-Grey: rgba(0, 0, 0, 0.12);
    --Dark-Blue: #00808F;
}

html, body {
    scroll-behavior: smooth;
}

body {
    font-family: newnord, sans-serif;
    font-feature-settings: 'ss01' on;
    margin: 0;
    padding: 0;
    background-color: var(--White);
}

h1 {
    font-family: "newnord-wide", sans-serif;
    font-size: 40px;
    font-style: italic;
    font-weight: 900;
    line-height: normal;
    letter-spacing: -1.6px;
    margin: 0;
    text-shadow: 2px 2px 0px var(--Primary-Orange, #FF890A);
}

h2 {
    font-family: newnord, sans-serif;
    font-size: 32px;
    font-style: italic;
    font-weight: 800;
    line-height: normal;
    letter-spacing: -1.28px;
    margin: 0;
}

h3, .booking .status span {
    font-family: newnord, sans-serif;
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.8px;
    margin: 0;
}

h4 {
    font-family: newnord, sans-serif;
    font-size: 20px;
    font-style: italic;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.6px;
    margin: 0;
}

legend {
    font-family: newnord, sans-serif;
    margin-bottom: 8px;
    padding: 0;
}

p, span, ul {
    margin: 0;
    font-family: "Inclusive Sans";
    color: var(--Mid-Black);
}

strong {
    color: var(--Black);
    font-weight: 600;
}

.btn .material-symbols-rounded {
    color: var(--Black);
    
}

.logo {
    font-family: newnord-wide, sans-serif;
    font-weight: 800;
    font-style: italic;
    letter-spacing: -0.6px;
    font-size: 20px;
    color: var(--Black);
}

section {
    padding: 64px 80px;
}

.primary.btn {
    background-color: var(--Primary-Blue);
}

.primary.btn:hover {
    background-color: #16c0d2;
}

.btn, button, #file-upload-button {
    background: var(--White);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    color: var(--Black);
    padding: 16px 20px;
    border-radius: 8px;
    text-decoration: none;
    width: auto;
    max-width: max-content;
    border: 1px solid var(--Light-Grey);
    font-family: "Inclusive Sans";
    cursor: pointer;
    gap: 4px;
    transition: all 0.1s ease-out;
}

.btn:hover {
    background: #e7e3df;
}

.btn.dark {
    background: var(--Black);
    color: var(--White);
}

.btn.unavailable, .btn.unavailable span {
    color: var(--Mid-Black);
    cursor: not-allowed;
}

a {
    text-decoration: none;
    color: var(--Dark-Blue);
    transition: all 0.1s ease-out;
}

a:hover {
    color: var(--Black);
}

fieldset label {
    font-family: "Inclusive Sans";
}

input, select, textarea {
    font-family: "Inclusive Sans";
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid var(--Neutral-Light-Grey, rgba(0, 0, 0, 0.12));
    background: #FFF;
}

form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: 8px; 
}