body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #222;
    color: #fff;
    line-height: 1.6;
}

header {
    background-color: transparent;
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #FFDB58;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    transition: transform 0.3s ease-in-out;
    height: 80px;
    padding: 10px 20px;
}

header.hidden {
    transform: translateY(-100%);
}

header.show {
    transform: translateY(0);
}

.logo {
    max-width: 100px;
    height: auto;
    margin-right: 20px;
    border-radius: 50%;
    overflow: hidden;
}

.logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


#small-header {
    position: fixed;
    top: -60px;
    left: 0;
    width: 100%;
    background-color: #222;
    padding: 10px;
    text-align: center;
    transition: top 0.3s ease-in-out;
    border-bottom: 3px solid #FFDB58;
    z-index: 999;
}



.main-title {
    color: #FFDB58;
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    font-family: 'Arial Black', sans-serif;
    letter-spacing: 2px;
}



nav ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 24px;
    padding: 8px 16px;
    border-radius: 5px;
    font-family: 'Arial Black', sans-serif;
    justify-items: right;
}

nav ul li a:hover {
    background-color: #FFDB58;
    color: #222;
}

main {
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 150px;
}

.section {
    margin-bottom: 30px;
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 2px solid #FFDB58;
}

.section-title {
    color: #FFDB58;
    margin-bottom: 20px;
    font-size: 36px;
    text-align: center;
    font-weight: 700;
    font-family: 'Arial Black', sans-serif;
    letter-spacing: 2px;
}

.section-title:hover {
    transform: scale(1.03);
}

.intro-text {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    color: #eee;
    font-family: 'Arial Black', sans-serif;
    font-weight: bold;
    letter-spacing: 5px;
    word-spacing: 10px;
}

@keyframes wave {

    0%,
    100% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(5px);
    }

    75% {
        transform: translateY(-5px);
    }
}

.intro-text span {
    display: inline-block;
    font-size: 50px;
    font-weight: bold;
    color: #FFDB58;
    text-shadow: 2px 2px 10px #FF8C00;
    animation: wave 2s infinite ease-in-out;
}

.intro-text span:nth-child(2) {
    animation-delay: 0.2s;
}

.intro-text span:nth-child(3) {
    animation-delay: 0.4s;
}

.qr-code {
    max-width: 200px;
    display: block;
    margin: 0 auto;
    border: 2px solid #FFDB58;
    padding: 5px;
    border-radius: 5px;
    background-color: #fff;
}

.menu-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.menu-page {
    max-width: 45%;
    height: auto;
    border: 1px solid #555;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.menu-page:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease-in-out;
}

.social-links {
    list-style: none;
    padding: 0;
    text-align: center;
    margin-top: 20px;
}

.social-links li {
    display: inline;
    margin: 0 15px;
}

.social-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    font-family: 'Arial Black', sans-serif;
}

.social-links li a:hover {
    color: #FFDB58;
}

footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
    border-top: 2px solid #FFDB58;
}

@media (max-width: 768px) {
    header {
        flex-direction: row;
        padding-bottom: 0%;
    }

    .logo {
        margin-bottom: 10px;
        margin-right: 0;
        max-width: 80px;
    }
}

nav ul li {
    display: block;
    margin: 10px 0;
}

.section-title {
    font-size: 28px;
}

.intro-text {
    font-size: 16px;
}

.menu-page {
    max-width: 90%;
}

.social-links li a {
    font-size: 18px;
}

.main-footer {
    padding: 20px;
    text-align: center;
    font-family: sans-serif;
    font-size: 0.9em;
    color: #555;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.copyright {
    margin-bottom: 0px;
    font-weight: 300;
    color: #d3d3d3;
    font-size: 0.85em;
}

.signature {
    font-weight: 200;
    color: #888;
    font-size: 0.8em;
    margin-top: 2px;
    margin-bottom: 0;
}

.heart {
    color: red;
    font-size: 1em;

}

.copyright::after {
    content: "";
    display: block;
    width: 25px;
    height: 1px;
    background-color: #bbb0b0;
    margin: 10px auto;
    margin-top: 5px;
}