/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background-color: #0f0f0f;
    color: white;
    padding: 20px;
}

/* Logo & Top Section */
body > div:first-of-type {
    text-align: center;
    margin-bottom: 40px;
}

body > div:first-of-type img {
    width: 140px;
    margin-bottom: 10px;
}

body > div:first-of-type p {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}

body > div:first-of-type input {
    padding: 10px 20px;
    border-radius: 30px;
    border: none;
    font-size: 16px;
    width: 300px;
    max-width: 90%;
    text-align: center;
}

/* Heading */
body > div:nth-of-type(2) h1 {
    text-align: center;
    font-size: 28px;
    color: #fff;
    margin-bottom: 30px;
}

/* Food Grid Section */
span {
    display: inline-block;
    width: 150px;
    margin: 10px 15px;
    text-align: center;
    vertical-align: top;
    background-color: #1a1a1a;
    padding: 15px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

span:hover {
    transform: scale(1.05);
}

span img {
    border-radius: 10px;
    margin-bottom: 10px;
}

span h2 {
    font-size: 16px;
    color: #eee;
}
/* Animation styles */
.hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}
