/* =========================
   VOO! CAFE
========================= */

:root {
    --brand: #0D383C;
    --cream: #F5F1E8;
    --white: #FFFFFF;
    --black: #111111;
}


/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: var(--cream);
    color: var(--black);
}

a {
    text-decoration: none;
    color: inherit;
}


/* =========================
   HEADER
========================= */

.header {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 90px;

    padding: 0 5%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    z-index: 100;

    color: var(--white);
}

.logo {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 3px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    font-size: 13px;
    color: var(--white);
    transition: opacity 0.3s ease;
}

.nav a:hover {
    opacity: 0.55;
}

.header-button {
    padding: 13px 22px;

    border: 1px solid rgba(255, 255, 255, 0.8);

    color: var(--white);

    font-size: 13px;

    transition: all 0.3s ease;
}

.header-button:hover {
    background: var(--white);
    color: var(--brand);
}

.menu-toggle {
    display: none;

    background: none;
    border: none;

    color: var(--white);

    font-size: 28px;

    cursor: pointer;
}


/* =========================
   HERO
========================= */

.hero {
    position: relative;

    width: 100%;
    height: 100vh;
    min-height: 650px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    color: var(--white);

    background-image: url("images/hero.webp");
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.42);
}

.hero-content {
    position: relative;

    z-index: 2;

    max-width: 800px;

    padding: 20px;

    color: var(--white);
}

.hero-small {
    margin-bottom: 25px;

    color: var(--white);

    font-size: 12px;

    letter-spacing: 4px;

    opacity: 0.9;
}

.hero h1 {
    margin-bottom: 20px;

    color: var(--white);

    font-size: clamp(80px, 12vw, 170px);

    font-weight: 400;

    line-height: 0.9;

    letter-spacing: -6px;
}

.hero-description {
    max-width: 500px;

    margin: 0 auto 35px;

    color: var(--white);

    font-size: 18px;

    line-height: 1.6;
}


/* =========================
   HERO BUTTONS
========================= */

.hero-buttons {
    display: flex;

    justify-content: center;

    gap: 15px;
}

.button {
    display: inline-block;

    padding: 16px 28px;

    font-size: 13px;

    transition: all 0.3s ease;
}

.button-light {
    background: var(--white);

    color: var(--brand);
}

.button-light:hover {
    background: var(--brand);

    color: var(--white);
}

.button-outline {
    border: 1px solid var(--white);

    color: var(--white);
}

.button-outline:hover {
    background: var(--white);

    color: var(--brand);
}


/* =========================
   SCROLL
========================= */

.hero-scroll {
    position: absolute;

    bottom: 30px;
    left: 50%;

    transform: translateX(-50%);

    z-index: 2;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 10px;

    color: var(--white);

    font-size: 9px;

    letter-spacing: 3px;
}

.scroll-line {
    width: 1px;

    height: 45px;

    background: var(--white);

    opacity: 0.7;
}


/* =========================
   ABOUT
========================= */

.about {
    min-height: 850px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    background: var(--cream);

    color: var(--brand);
}

.about-content {
    padding: 100px 9%;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.section-label {
    margin-bottom: 25px;

    color: var(--brand);

    font-size: 11px;

    letter-spacing: 4px;

    font-weight: 600;
}

.about h2 {
    margin-bottom: 35px;

    color: var(--brand);

    font-size: clamp(55px, 6vw, 85px);

    font-weight: 400;

    line-height: 0.95;

    letter-spacing: -3px;
}

.about h2 span {
    opacity: 0.5;
}

.about-intro {
    max-width: 560px;

    margin-bottom: 25px;

    color: var(--brand);

    font-size: 20px;

    line-height: 1.6;
}

.about-text {
    max-width: 560px;

    margin-bottom: 18px;

    color: var(--brand);

    font-size: 15px;

    line-height: 1.8;

    opacity: 0.75;
}


/* =========================
   ABOUT FEATURES
========================= */

.about-features {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

    margin-top: 40px;
}

.feature {
    padding-top: 20px;

    border-top: 1px solid rgba(13, 56, 60, 0.25);
}

.feature-number {
    display: block;

    margin-bottom: 20px;

    color: var(--brand);

    font-size: 11px;

    letter-spacing: 2px;

    opacity: 0.5;
}

.feature h3 {
    margin-bottom: 10px;

    color: var(--brand);

    font-size: 15px;

    font-weight: 600;
}

.feature p {
    color: var(--brand);

    font-size: 13px;

    line-height: 1.6;

    opacity: 0.65;
}


/* =========================
   ABOUT IMAGE
========================= */

.about-image {
    min-height: 850px;

    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 1s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}


/* =========================
   TEMPORARY SECTIONS
========================= */

.placeholder {
    min-height: 500px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--cream);

    color: var(--brand);
}

.placeholder:nth-child(even) {
    background: var(--brand);

    color: var(--white);
}

.placeholder h2 {
    color: inherit;

    font-size: 60px;

    font-weight: 400;
}


/* =========================
   TABLET / MOBILE
========================= */

@media (max-width: 900px) {

    .nav,
    .header-button {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        min-height: 600px;
    }

    .hero h1 {
        font-size: clamp(75px, 20vw, 120px);

        letter-spacing: -3px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: center;
    }

    .button {
        width: 210px;
    }

    .about {
        grid-template-columns: 1fr;
    }

    .about-content {
        padding: 80px 7%;
    }

    .about h2 {
        font-size: 60px;
    }

    .about-intro {
        font-size: 18px;
    }

    .about-text {
        font-size: 14px;
    }

    .about-features {
        grid-template-columns: 1fr;

        gap: 30px;

        margin-top: 35px;
    }

    .about-image {
        min-height: 500px;
    }

    .placeholder h2 {
        font-size: 42px;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .header {
        height: 75px;

        padding: 0 6%;
    }

    .logo {
        font-size: 27px;
    }

    .hero {
        min-height: 570px;
    }

    .hero-small {
        font-size: 10px;

        letter-spacing: 3px;
    }

    .hero-description {
        padding: 0 20px;
    }

    .about-content {
        padding: 70px 6%;
    }

    .about h2 {
        font-size: 52px;
    }
}/* =========================
   RESERVATION
========================= */

.reservation {

    position: relative;

    min-height: 900px;

    padding: 100px 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    background-image: url("images/reservation.webp");

    background-size: cover;

    background-position: center;

}


/* DARK OVERLAY */

.reservation-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.52);

}


/* WHITE FORM BOX */

.reservation-box {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 850px;

    padding: 50px 55px;

    background: var(--white);

    color: var(--brand);

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.20);

}


/* HEADER */

.reservation-header {

    margin-bottom: 40px;

}

.reservation-header .section-label {

    margin-bottom: 18px;

    color: var(--brand);

}

.reservation-header h2 {

    margin-bottom: 20px;

    color: var(--brand);

    font-size: 42px;

    font-weight: 400;

    letter-spacing: -1px;

}

.reservation-info {

    color: var(--brand);

    font-size: 15px;

    line-height: 1.7;

    opacity: 0.75;

}


/* =========================
   FORM
========================= */

.reservation-form {

    width: 100%;

}


.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;

    margin-bottom: 25px;

}


.form-group {

    margin-bottom: 25px;

}


.form-group label {

    display: block;

    margin-bottom: 9px;

    color: var(--brand);

    font-size: 12px;

    font-weight: 500;

}


.form-group input,
.form-group textarea {

    width: 100%;

    padding: 16px 18px;

    border: 1px solid rgba(13, 56, 60, 0.35);

    border-radius: 0;

    outline: none;

    background: var(--white);

    color: var(--brand);

    font-family: inherit;

    font-size: 14px;

    transition: all 0.3s ease;

}


.form-group input {

    height: 52px;

}


.form-group textarea {

    min-height: 110px;

    resize: vertical;

    line-height: 1.6;

}


.form-group input::placeholder,
.form-group textarea::placeholder {

    color: #888;

}


.form-group input:focus,
.form-group textarea:focus {

    border-color: var(--brand);

    box-shadow: 0 0 0 1px var(--brand);

}


/* =========================
   DATE INPUT
========================= */

.form-group input[type="date"] {

    cursor: pointer;

    color: var(--brand);

}


/* =========================
   GUEST COUNTER
========================= */

.guest-counter {

    height: 52px;

    display: flex;

    align-items: center;

    gap: 0;

}


.counter-button {

    width: 52px;

    height: 52px;

    border: 1px solid rgba(13, 56, 60, 0.35);

    background: var(--white);

    color: var(--brand);

    font-size: 24px;

    font-weight: 300;

    cursor: pointer;

    transition: all 0.25s ease;

}


.counter-button:hover {

    background: var(--brand);

    color: var(--white);

}


#guestCount {

    width: 55px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-top: 1px solid rgba(13, 56, 60, 0.35);

    border-bottom: 1px solid rgba(13, 56, 60, 0.35);

    color: var(--brand);

    font-size: 16px;

}


/* =========================
   SUBMIT
========================= */

.reservation-submit {

    display: flex;

    align-items: center;

    gap: 25px;

    margin-top: 10px;

}


.reservation-button {

    min-width: 200px;

    padding: 16px 28px;

    border: 1px solid var(--brand);

    background: var(--brand);

    color: var(--white);

    font-family: inherit;

    font-size: 14px;

    cursor: pointer;

    transition: all 0.3s ease;

}


.reservation-button:hover {

    background: transparent;

    color: var(--brand);

}


.reservation-note {

    max-width: 350px;

    color: var(--brand);

    font-size: 11px;

    line-height: 1.6;

    opacity: 0.6;

}


/* =========================
   RESERVATION MOBILE
========================= */

@media (max-width: 700px) {

    .reservation {

        min-height: auto;

        padding: 60px 15px;

    }


    .reservation-box {

        padding: 35px 25px;

    }


    .reservation-header h2 {

        font-size: 32px;

    }


    .form-row {

        grid-template-columns: 1fr;

        gap: 0;

        margin-bottom: 0;

    }


    .reservation-submit {

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;

    }


    .reservation-button {

        width: 100%;

    }

}