* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    font-family: 'Poppins', sans-serif !important;
    background-color: #fffaf3;
    color: #333;
    position: relative;
    z-index: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    background-color: #4b2e05;
    color: #fff;
}

header h1 {
    font-size: 1.8rem;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffd47f;
}

img {
    max-width: 250px;
    max-height: 200px;
    min-width: 200px;
    min-height: 200px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.hero {
    background: url('Jeff.gif') center/cover no-repeat;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 8rem 2rem;
}

.hero-content h2 {
    font-size: 3rem;
}

.hero-content p {
    margin-top: 0.5rem;
    font-size: 1.2rem;
}

#order-btn {
    background-color: #ffd47f;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1.5rem;
}

#order-btn:hover {
    background-color: #ffb84d;
    transform: scale(1.1);
}

.menu {
    padding: 4rem 2rem;
    text-align: center;
}

.menu h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #4b2e05;
}

.menu-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.menu .item {
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    padding: 1rem;
    width: 260px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.menu .item {
    position: relative;
    overflow: hidden;
}

.menu .item img {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.menu .item:hover img {
    transform: scale(1.05);
    filter: brightness(70%);
}


.order-btn {
    background-color: #ffd47f;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    opacity: 0;
    visibility: hidden;
}

.menu .item:hover .order-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.order-btn:hover {
    background-color: #ffb84d;
    transform: scale(1.05);
}

footer {
    background-color: #4b2e05;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .menu-items {
        flex-direction: column;
        align-items: center;
    }

    .menu .item {
        width: 80%;
    }
}
