/* =========================
   BASIC SETTINGS
========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #fdf3ed;
    color: #000;
    font-family: "Zen Kaku Gothic New", Arial, sans-serif;
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3 {
    font-family: "Shippori Mincho", Georgia, serif;
}

section,
footer {
    padding-left: 6%;
    padding-right: 6%;
}


/* =========================
   HEADER / NAVIGATION
========================= */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 22px 6%;
    background-color: #fdf3ed;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */

header h2 {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.2;
}

header p {
    font-size: 10px;
    color: #4a443c;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Navigation */

nav {
    display: flex;
    gap: 38px;
}

nav a {
    font-size: 13px;
    position: relative;
    padding-bottom: 5px;
}

nav a:hover {
    color: #8f5b26;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #b4763a;
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}


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

.hero {
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 80px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border-bottom: 1px solid rgba(38, 34, 30, 0.18);
}

.hero > div:first-child {
    width: 55%;
}

.hero > div:last-child {
    width: 35%;
    text-align: center;
}

/* Small title */

.hero > div:first-child > p:first-child {
    color: #8f5b26;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Main heading */

.hero h1 {
    font-size: 55px;
    line-height: 1.08;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero h1 i {
    color: #8f5b26;
    font-style: normal;
}

/* Description */

.hero > div:first-child > p:nth-of-type(2) {
    max-width: 550px;
    color: #4a443c;
    font-size: 16px;
    margin-bottom: 30px;
}

/* Buttons */

.hero a {
    display: inline-block;
    padding: 13px 25px;
    margin-right: 12px;
    background-color: #000;
    color: #fdf3ed;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero a:hover {
    background-color: #8f5b26;
}

/* Find Us button */

.hero a[href="#visit"] {
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
}

.hero a[href="#visit"]:hover {
    background-color: #000;
    color: #fdf3ed;
}


/* Coffee illustration */

.hero > div:last-child h2 {
    font-size: 130px;
    font-family: Arial, sans-serif;
    font-weight: normal;
}

.hero > div:last-child p {
    color: #8f5b26;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 12px;
}


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

#menu {
    padding-top: 130px;
    padding-bottom: 130px;

    border-bottom: 1px solid rgba(38, 34, 30, 0.18);
}

/* Section label */

#menu > h2 {
    color: #8f5b26;
    font-family: Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Section title */

#menu > h1 {
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 18px;
}

/* Introduction */

#menu > p:first-of-type {
    max-width: 600px;
    color: #4a443c;
    margin-bottom: 55px;
}


/* Menu items */

#menu > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
}

/* Each menu item */

#menu > div h3 {
    font-size: 18px;
    font-weight: 500;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed rgba(38, 34, 30, 0.18);
}

/* Menu descriptions */

#menu > div p {
    color: #4a443c;
    font-size: 13px;
    margin-top: 5px;
}

/* Prices */

#menu > div strong {
    display: block;
    color: #8f5b26;
    font-family: Georgia, serif;
    font-size: 16px;
    text-align: right;
    margin-top: -28px;
}

/* Menu note */

#menu > p:last-child {
    margin-top: 45px;
    padding-left: 16px;
    border-left: 2px solid #b4763a;

    color: #4a443c;
    font-size: 13px;
    max-width: 800px;
}


/* =========================
   PHILOSOPHY
========================= */

#philosophy {
    background-color: #000;
    color: #fdf3ed;

    padding-top: 130px;
    padding-bottom: 130px;

    display: grid;
    grid-template-columns: 40% 60%;
    column-gap: 60px;
}

/* Title */

#philosophy > h2 {
    color: #b4763a;
    font-family: Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

#philosophy > h1 {
    color: #fdf3ed;
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 50px;
}


/* Philosophy content */

#philosophy > h3 {
    color: #fdf3ed;
    font-size: 17px;
    margin-top: 30px;
    margin-bottom: 5px;
}

#philosophy > p {
    color: rgba(237, 230, 211, 0.68);
    font-size: 14px;
    max-width: 550px;
}


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

#visit {
    padding-top: 130px;
    padding-bottom: 130px;

    border-bottom: 1px solid rgba(38, 34, 30, 0.18);
}

/* Label */

#visit > h2 {
    color: #8f5b26;
    font-family: Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Title */

#visit > h1 {
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 55px;
}


/* Opening hours */

#visit > h3 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
}

#visit > p {
    color: #4a443c;
    font-size: 14px;
}


/* Address */

#visit > p strong {
    color: #000;
    font-family: Georgia, serif;
    font-size: 17px;
}


/* =========================
   FOOTER
========================= */

footer {
    padding-top: 60px;
    padding-bottom: 40px;
}

footer h2 {
    font-size: 22px;
    display: inline-block;
    margin-right: 40px;
}

footer a {
    margin-right: 25px;
    color: #4a443c;
    font-size: 13px;
}

footer a:hover {
    color: #8f5b26;
}

footer p {
    margin-top: 35px;
    color: #777;
    font-size: 12px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 760px) {

    header {
        padding: 18px 5%;
        display: block;
    }

    header p {
        margin-bottom: 10px;
    }

    nav {
        gap: 20px;
    }

    nav a {
        font-size: 12px;
    }


    /* Hero */

    .hero {
        padding-top: 160px;
        display: block;
    }

    .hero > div:first-child,
    .hero > div:last-child {
        width: 100%;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero > div:last-child {
        margin-top: 50px;
    }

    .hero > div:last-child h2 {
        font-size: 90px;
    }


    /* Menu */

    #menu > div {
        grid-template-columns: 1fr;
    }

    #menu > h1 {
        font-size: 34px;
    }


    /* Philosophy */

    #philosophy {
        display: block;
    }

    #philosophy > h1 {
        font-size: 34px;
        margin-bottom: 40px;
    }


    /* Visit */

    #visit > h1 {
        font-size: 34px;
    }


    /* Footer */

    footer h2 {
        display: block;
        margin-bottom: 20px;
    }
}