@import url('https://fonts.googleapis.com/css2?family=Kanit&family=Noto+Sans&family=Quicksand&family=Montserrat&display=swap');

:root {
    --sanbaka-red: #E00500;
    --sanbaka-light-red: #F22722;
    --sanbaka-gold: #F9CB0F;
    --gray-white: #D0D0D0;
    --montserrat: "Montserrat", Arial, Helvetica, sans-serif;
    --noto-sans: "Noto Sans", Arial, Helvetica, sans-serif;
    --quick-sand: "Quicksand", Arial, Helvetica, sans-serif;
    --kanit: "Kanit", Arial, Helvetica, sans-serif;
}

html,
body {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    background-color: #000000;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--noto-sans);
}

h1 {
    font-size: 42px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 24px;
}

p {
    font-family: var(--montserrat);
    line-height: 1.4;
    font-size: 20px;
}

a {
    text-decoration: none;
}

section {
    padding: 64px 0;
}

.button {
    text-align: center;
}

.button a {
    color: #FFFFFF;
    background-color: var(--sanbaka-red);
    border-radius: 12px;
    transition: 0.3s background-color;
    display: inline-block;
    font-family: var(--noto-sans);
    font-size: 24px;
    cursor: pointer;
    padding: 24px 32px;
    margin: 32px auto;
}

.button a:hover {
    background-color: var(--sanbaka-light-red);
    transition: 0.3s background-color;
}

.social-media a {
    color: var(--gray-white);
    font-size: 32px;
    text-decoration: none;
}

.social-media a:hover {
    color: #FFFFFF;
}

/* Navigation Bar Section */
nav {
    background-color: #000000;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

nav #logo {
    width: calc(150px + 2em);
    height: calc(30px + 2em);
    display: block;
}

nav #logo a {
    padding: 1em;
    display: block;
}

nav img {
    width: 150px;
    height: 30px;
    display: block;
}

nav ul {
    margin: auto;
    padding: 0;
    align-self: center;
}

nav li {
    list-style-type: none;
    display: inline-block;
    text-align: center;
}

nav li a {
    color: var(--gray-white);
    transition: 0.3s color;
    font-family: var(--quick-sand);
    font-size: 22px;
    margin: 0 8px;
    padding: 4px 4px;
}

nav li a:hover {
    color: #FFFFFF;
    transition: 0.3s color
}

nav .social-media {
    padding: 16px;
    width: 150px;
    height: 30px;
    align-self: center;
    text-align: right;
}

nav #hamburger {
    color: var(--gray-white);
    transition: 0.3s color;
    font-size: 32px;
    display: none;
    align-self: center;
    height: 34px;
    padding: 16px;
}

nav #hamburger:hover {
    color: #FFFFFF;
    transition: 0.3s color;
    cursor: pointer;
}

nav #close-hamburger {
    color: var(--gray-white);
    transition: 0.3s color;
    font-size: 32px;
    display: none;
    align-self: center;
    margin-right: 16px;
}

nav #close-hamburger:hover {
    color: #FFFFFF;
    transition: 0.3s color;
    cursor: pointer;
}

@media screen and (max-width: 800px) {
    nav ul {
        display: none;
    }

    nav #hamburger {
        display: inline-block;
    }

    nav .social-media {
        display: none;
    }

    /* Hamburger is active */
    .hamburger ul {
        background-color: #1f1f1f;
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0;
    }

    .hamburger li {
        display: block;
    }

    .hamburger li a {
        display: block;
        margin: 0;
        padding: 18px;
    }

    .hamburger #hamburger {
        display: none;
    }

    .hamburger #close-hamburger {
        display: flex;
    }
}

/* Hero Section */
#hero {
    color: #FFFFFF;
    height: 90%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: linear-gradient(#000000FF, #FFFFFF00), url("images/2024-05/garlic_edamame_full.jpg");
    text-align: center;
    margin-top: 64px;
    padding: 4vw 1em;
    animation: fadein ease-in 0.5s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#hero h1 {
    font-family: var(--kanit);
    font-size: 64px;
    margin: 0;
}

#hero h2 {
    font-size: 26px;
}

#countdown {
    margin: calc(3vw + 32px) 0 0 0;
}

#countdown h1 {
    font-family: var(--kanit);
    font-size: calc(2vw + 28px);
    margin: 0;
}

/* Venue Information Section */
#venue-info {
    background-color: #000000;
    color: #FFFFFF;
    text-align: center;
}

hr {
    border: 1px var(--sanbaka-gold) solid;
    width: 60%;
}

/* About Menu Section */
#about-menu {
    background-color: #F0F0F0;
}

#drinks,
#food {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    max-width: 1400px;
    margin: auto;
    padding: 0 24px;
}

#drinks .image-box,
#food .image-box {
    position: relative;
    top: 0;
    left: 0;
    width: 720px;
    height: 640px;
    max-width: 100%;
    padding: 32px;
}

#drinks img:nth-child(1),
#food img:nth-child(1) {
    border-radius: 12px;
    box-shadow: #000000 0px 5px 15px;
    position: relative;
    top: 0;
    left: 0;
    width: 400px;
}

#drinks img:nth-child(2),
#food img:nth-child(2) {
    border-radius: 12px;
    box-shadow: #000000 0px 5px 15px;
    position: absolute;
    top: 240px;
    left: 340px;
    width: 400px;
}

#drinks .info,
#food .info {
    max-width: 600px;
}

/* Sake Flight Section */
#sake-flight {
    background-color: #FFFFFF;
}

#sake-flight h1 {
    text-align: center;
}


#sake-flight p {
    max-width: 1400px;
    margin: auto;
    padding: 0 24px;
}

#sake-flight img {
    display: block;
    margin: 64px auto;
    max-width: 100%;
    height: auto;
    text-align: center;
}

@media screen and (max-width: 800px) {

    #drinks,
    #food {
        padding: 16px 0;
    }

    #drinks .image-box,
    #food .image-box {
        position: initial;
        padding: 0;
        max-width: 100%;
        height: auto;
    }

    #drinks img:nth-child(1),
    #food img:nth-child(1) {
        border-radius: 0;
        box-shadow: none;
        position: initial;
        max-width: 100%;
        margin: auto;
        text-align: center;
        display: block;
    }

    #drinks img:nth-child(2),
    #food img:nth-child(2) {
        border-radius: 0;
        box-shadow: none;
        position: initial;
        max-width: 100%;
        margin: auto;
        text-align: center;
        display: block;
    }

    #drinks .info,
    #food .info {
        margin: 0 1em;
    }
}

/* About Us Section */
#about-us {
    background-color: #F0F0F0;
    margin: 0;
}

#about-us #info-flex {
    display: flex;
    margin: auto;
    flex-wrap: wrap;
    justify-content: space-evenly;
    max-width: 1500px;
}

#about-us img {
    width: 720px;
    max-width: 100%;
    margin: 24px 0;
}

#about-us #info {
    margin: 24px 0;
    padding: 0;
}

#about-us h1 {
    margin: 0 24px;
}

#about-us p {
    max-width: 720px;
    margin: 24px 1em;
}

#about-us #team {
    display: flex;
    margin: 32px auto;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1500px;
}

#about-us .member {
    width: 400px;
    max-width: 100%;
    margin: 4px 0;
    padding: 0 0 64px 0;
}

#about-us #team h1 {
    margin: 32px 0;
    text-align: center;
}

#about-us #team img {
    border-radius: 100%;
    display: block;
    width: 300px;
    max-width: 100%;
    margin: auto;
    padding: 0
}

#about-us #team p {
    margin: 24px 1em;
}

@keyframes glow {
    from {
        box-shadow: 0px 0px 32px 1px rgba(249, 218, 15, 0.6);
    }

    to {
        box-shadow: 0px 0px 96px 1px rgba(249, 218, 15, 0.8);
    }
}

.glow {
    animation: glow 0.8s ease-in-out 1s infinite alternate;
    box-shadow: 0px 0px 32px 1px rgba(249, 218, 15, 0.6);
    width: 450px !important;
    max-width: 90% !important;
}

/* Gallery Section */
#gallery {
    background-color: #FFFFFF;
    margin-top: 64px;
    padding: 16px 0 72px 0;
}

#gallery h1,
#gallery h2 {
    text-align: center;
}

#gallery #images {
    width: 1450px;
    max-width: 100%;
    margin: auto;
    padding: 0;
    text-align: center;
}

#gallery img {
    display: inline-block;
    width: 480px;
    height: auto;
    max-width: 100%;
}

#gallery .image-card {
    display: inline-block;
    overflow: hidden;
}

#gallery .image-card h1 {
    color: #FFFFFF;
    margin-top: 85%;
}

#gallery .gradient-overlay {
    max-width: 100%;
    width: 400px;
    height: auto;
    position: absolute;
    transform: translate(0, -100%);
    background: linear-gradient(to top, #000000FF, #FFFFFF00 50%);
}

#gallery .image-card img {
    display: block;
    width: 400px;
    max-width: 100%;
    height: auto;
    transition: 0.3s transform;
}

#gallery .image-card:hover img {
    transform: scale(1.2);
    transition: 0.3s transform;
}

/* Menu Section */
#menu {
    background-color: #FFFFFF;
    margin-top: 64px;
    padding: 16px 0 72px 0;
}

#menu h1 {
    text-align: center;
}

#menu-info {
    max-width: 1200px;
    margin: auto;
}

#menu-info h3 {
    margin-bottom: 4px;
}

#menu-info p {
    margin-top: 4px;
}

#drink-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding-bottom: 48px;
}

#food-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding-top: 48px;
}

.menu-section {
    max-width: 100%;
    width: 400px;
    margin: 0 1em;
}

/* Footer Section */
footer {
    color: #FFFFFF;
    text-align: center;
    margin: 0;
    padding: 64px 1em;
}

footer a {
    color: var(--sanbaka-red);
    transition: 0.3s color;
    text-decoration: underline;
}

footer a:hover {
    color: var(--sanbaka-light-red);
    transition: 0.3s color;
}