@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    padding-bottom: 1rem;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center */
    align-items: center; /* Horizontally center */
    height: 100vh;
    text-align: center; /* Center text */
}

.hero img {
    max-width: 25%;
    display: block;
}

.hero .info {
    font-family: "Roboto Mono", Arial, Helvetica, sans-serif;
}

.hero .info .address {
    padding: 2rem 0;
}

.hero .info .hours {
    padding: 0 0 2rem 0;
}

.hero .info .hours p {
    line-height: 1.5;
}

.hero .info .contact {
    padding-bottom: 2rem;
}

.container {
    width: 60%;
    margin: 0 auto;
}

.menu {
    font-family: "Bebas Neue", Arial, Helvetica, sans-serif;
}

.menu-section {
    font-size: 2rem;
    text-align: center;
    padding-top: 5rem;
}

.padding-top-2rem {
    padding-top: 2rem;
}

.menu img {
    max-width: 50%;
    display: block;
    margin: 2rem auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    border-radius: .5rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px dashed #aaa;
    font-size: 1.5rem;
}

.remove-border {
    border: none;
}

.dish-details {
    flex: 1;
}

.dish-name {
    padding-bottom: 0.625rem;
}

.dish-description {
    font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
    font-size: 1.125rem;
    line-height: 1.3;
    color: #666;
}

.price {
    text-align: right;
    min-width: 50px;
}

.dry-aged {
    border: 2px solid #ccc;
    padding: 2rem;
}

.dry-aged .dish-description {
    text-align: center;
    padding-bottom: 1rem;
}

.dry-aged .menu-item,
.dry-aged .dish-details,
.dry-aged .dish-name,
.dry-aged .price {
    padding: 0;
    margin: 0;
}

.dry-aged .menu-item {
    padding-bottom: 1rem;
}

.remove-padding {
    padding: 0;
}

.light-black {
    color: #888;
}

.menu-section {
    color: crimson;
}

/* Media Query for Mobile Devices */
@media (max-width: 768px) {
    .hero img {
        max-width: 70%;
    }

    .menu img {
        max-width: 100%;
    }

    .container {
        width: 90%;
    }
}