:root {
  --text: 'Geist';
  --heading: 'Playfair Display';
  --blue: #1C3E56;
  --lightblue: #4C6C83;
  --orange: #BE4B26;
  --lightorange: #EC5F35;
  --white: #fff;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    min-height: 100vh;
}

html {
    background: var(--white);
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    background: var(--white);
    font-family: var(--text);
    /*margin: 0 48px;*/
    margin: 0;
    color: var(--blue);
    font-size: 16px;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: var(--orange);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading);
    font-weight: 500;
    margin: 0;
}

h2 {
    font-size: 48px;
    line-height: 64px;
    margin-bottom: 32px;
}

h3 {
    font-size: 18px;
    line-height: 24px;
    font-family: var(--text);
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--lightblue);
    margin: 0;
    margin-bottom: 8px;
}

h4 {
    font-size: 32px;
    line-height: 26px;
    margin-top: 32px;
    margin-bottom: 24px;
}

p {
    font-size: 18px;
    line-height: 29px;
    font-weight: 400;
    margin: 0;
}

.btn {
    padding: 8px 16px;
    border: 1px solid var(--orange);
    font-weight: 500;
    min-height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;

    &:hover {
        background: var(--orange);
        color: var(--white);
    }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 48px;
    padding: 0 48px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;

    .logo {
        width: 30px;
        height: auto;
    }

    ul {
        list-style: none;
        padding: 0;
        margin: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);

        li {
            display: inline-block;
            margin-right: 48px;

            a {
                text-decoration: none;
                text-transform: uppercase;
                color: var(--blue);
                font-size: 16px;
                line-height: 24px;
                font-weight: 500;
            }
        }

        li:last-child {
            margin-right: 0;
        }
    }

    .socials {
        height: 24px;

        a {
            display: inline-block;
            height: 24px;
            width: 24px;
        }

        a:first-child {
            margin-right: 8px;
        }
    }
}

.today {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 48px;
    padding: 0 48px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;

    span {
        font-weight: 500;
        display: inline-block;
        margin: 0 8px;
    }

    a {
        margin-left: 4px;
    }
}

section {
    min-height: 100vh;
    padding: 80px;
}

section.alt {
    background: #F3F3F3;
}

.welcome {
    background: var(--blue);
    background-image: url('../imgs/bg-pattern.png');
    background-size: contain;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    p {
        color: var(--white);
        font-size: 22px;
        line-height: 26px;
        margin: 0;
    }

    p.coming-soon {
        font-size: 24px;
        margin-top: 60px;
    }

    h1 {
        color: var(--lightorange);
        font-size: 80px;
        line-height: 80px;
        margin: 0;
        text-align: center;
        font-family: 'Kaushan Script';
        font-weight: 400;

        span {
            color: var(--white);
            font-size: 32px;
            line-height: 28px;
            font-family: var(--text);
            font-weight: bold;
            letter-spacing: 3px;
            text-transform: uppercase;
            display: block;
            margin-top: 40px;
        }
    }
}

@media screen and (min-width: 720px) {
    .welcome {
        p {
            color: var(--white);
            font-size: 22px;
            line-height: 26px;
            margin: 0;
        }

        p.coming-soon {
            font-size: 32px;
            margin-top: 80px;
        }

        h1 {
            color: var(--lightorange);
            font-size: 112px;
            line-height: 112px;
            margin: 0;
            text-align: center;
            font-family: 'Kaushan Script';
            font-weight: 400;

            span {
                color: var(--white);
                font-size: 40px;
                line-height: 48px;
                font-family: var(--text);
                font-weight: bold;
                letter-spacing: 3px;
                text-transform: uppercase;
                display: block;
                margin-top: 40px;
            }
        }
    }
}

.hero {
    background: var(--blue);
    background-image: url('../imgs/bg-pattern.png');
    background-size: contain;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    p {
        color: var(--white);
        font-size: 22px;
        line-height: 26px;
        margin: 0;
    }

    p.coming-soon {
        font-size: 44px;
        margin-top: 80px;
    }

    h1 {
        color: var(--lightorange);
        font-size: 112px;
        line-height: 112px;
        margin: 0;
        margin-top: 32px;
        text-align: center;
        font-family: 'Kaushan Script';
        font-weight: 400;

        span {
            color: var(--white);
            font-size: 40px;
            line-height: 48px;
            font-family: var(--text);
            font-weight: bold;
            letter-spacing: 3px;
            text-transform: uppercase;
            display: block;
            margin-top: 40px;
        }
    }

    .hero-cta {
        display: flex;
        flex-direction: row;
        margin-top: 48px;
        gap: 16px;

        .btn {
            color: var(--white);
            font-size: 18px;
            line-height: 24px;
            min-width: 200px;
            padding: 4px 0;
        }
    }
}

.intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 80px;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding: 0 80px;

    .intro-left {
        max-width: 600px;

        p {
            color: var(--lightblue);
        }
    }

    .intro-cta {
        display: flex;
        flex-direction: row;
        margin-top: 32px;
        gap: 16px;

        .btn {
            color: var(--orange);
            font-size: 18px;
            line-height: 24px;
            min-width: 200px;
            padding: 4px 0;

            &:hover {
                color: var(--white);
            }
        }
    }

    .intro-right img {
        width: 550px;
        height: auto;
    }
}

.menu {
    padding: 80px;

    .menu-cta {
        display: flex;
        flex-direction: row;
        margin-top: 32px;
        margin-bottom: 32px;
        gap: 16px;

        .btn {
            color: var(--orange);
            font-size: 16px;
            line-height: 24px;
            min-width: 120px;
            padding: 4px 8px;

            &:hover {
                color: var(--white);
            }
        }
    }

    .menu-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 24px 80px;

        .menu-item {
            p {
                color: var(--lightblue);
                margin-bottom: 4px;
            }

            p:first-of-type {
                font-size: 18px;
                line-height: 24px;
                color: var(--blue);
            }
        }
    }
}

.visit {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 80px;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding: 80px;

    .visit-left {
        max-width: 600px;

        p {
            color: var(--lightblue);
        }
    }

    .visit-cta {
        display: flex;
        flex-direction: row;
        margin-top: 32px;
        gap: 16px;

        .btn {
            color: var(--orange);
            font-size: 18px;
            line-height: 24px;
            min-width: 200px;
            padding: 4px 0;

            &:hover {
                color: var(--white);
            }
        }
    }

    .opening-time {
        margin-bottom: 16px;
    }

    .opening-times .day {
        font-size: 18px;
        line-height: 24px;
        color: var(--blue);
        margin-bottom: 4px;
    }

    /* .location p {
        color: var(--blue);
    } */

    .location a {
        display: block;
        margin-top: 8px;
    }
}

.contact {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 80px;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding: 80px;

    .contact-left {
        max-width: 600px;

        p {
            color: var(--lightblue);
        }
    }

    .contact-right img {
        width: 85%;
        height: auto;
        float: right;
    }
}