html {
	scroll-behavior: smooth;
	scroll-padding-top: 10rem;
}

body {
    background-color: #1a1a1a;
    color: #ddd;
    font-size: 1rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
}

h1,
h2 {
    color: #ddd;
    font-family: 'Orbitron', serif;
    text-transform: uppercase;
    text-shadow: 0px 0px 8px #fff;
    text-align: center;
}

h2,
span {
    text-shadow: 2px 2px 3px red;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
}

a,
a:visited {
    color: #ddd;
    font-weight: 700;
    text-decoration: none;
}

a:hover,
a:focus,
a:active {
	text-decoration: underline;
}

a:focus {
	outline: 2px red;
}


/* ----- NAVIGATION MENU ----- */
.navigation-bar {
    position: relative;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 999;
    height: 5rem;
}

.logo {
    position: absolute;
    top: 1rem;
    left: 1rem;
    height: 3rem;
    width: 3rem;
}

button {
    position: absolute;
    top: 0.4rem;
    right: 0;
    border: none;
    background-color: transparent;
    color: #ddd;
    font-size: 2rem;
    text-shadow: 0px 0px 5px #fff;
    cursor: pointer;
    padding: 1rem;
}

#menu-list {
    height: 0;
    overflow: hidden;
    transition: height .7s ease;
    width: 100vw;
}

#menu-list.toggled {
    height: 100vh;
    opacity: 0.95;
}

.menu ul {
    padding: 0;
    margin-top: 5rem;
    background-color: #1a1a1a;
    text-align: center;
    width: 100%;
}

.menu li {
    display: block;
    padding: 1rem;
}

.menu a {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.5rem;
    letter-spacing: 3px;
    padding: 1rem 3rem;
}


/* ----- FOOTER ----- */
footer {
    background-color: #252525;
    padding: 1rem;
    margin-top: 2rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}


/* ----- CUISINE/PLACES PAGES ----- */
.page-title h1 {
    margin: 0 0 1rem 0;
    text-align: center;
    font-size: 3rem;
}

.cuisine,
.attractions {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 40rem;
    margin: 0 auto;
}

.container-image {
    display: none;
}

.container {
    background-color: #252525;
    width: 15rem;
}

.overlay p {
    padding: 0.5rem 1rem 1rem;
}

.overlay h2 {
    padding-top: 0.75rem;
    font-size: 1rem;
    letter-spacing: 2px;
}


@media (min-width: 68em) {

    .logo {
        left: 2rem;
    }

    button {
        right: 2rem;
    }

    .menu a {
        font-size: 2rem;
    }

    .menu a:hover {
        text-decoration: underline overline #9a0000;
        text-decoration-thickness: 5px;
        text-underline-offset: 0.3rem;
        letter-spacing: 5px;
        transition: 0.7s;
    }

    .menu button:hover { 
        text-shadow: 0px 0px 20px #9a0000;
        transition: 0.7s;
    }

    .logo a:hover {
        opacity: 70%;
        transition: 0.7s;
    }


    /* ----- CUISINE/PLACES MEDIA QUERY ----- */
    .page-title h1 {
        font-size: 5rem;
        letter-spacing: 15px;
    }
    
    .overlay {
        background-color: #1a1a1a;
        position: absolute;
        top: 0;
        height: 100%;
        width: 100%;
        opacity: 0;
        transition: .7s;
    }

    .container:hover .overlay {
        opacity: 0.9;
    }

    .container-image {
        display: block;
        object-fit: cover;
        width: 100%;
        height: 100%;
        -webkit-filter: grayscale(1);
        filter: grayscale(1);
    }

}