* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: #2E2E2E;
    background-color: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #FF6F61;
}

.nav {
    display: flex;
    align-items: center;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav a {
    text-decoration: none;
    color: #2E2E2E;
    font-weight: 600;
    transition: color 0.3s;
}

.nav a:hover {
    color: #FF6F61;
}

.cta-button {
    background-color: #FF6F61;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #F4A261;
}

/* Order Button */
.order-button {
    background-color: #FF6F61;
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 5px;
    border: none;
    font-weight: 600;
    margin: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.order-button:hover {
    background-color: #F4A261;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2E2E2E;
    transition: all 0.3s;
}

.nav.active ul {
    display: flex;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero-food.jpg') center/cover no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
    padding: 20px;
}

.hero-content {
    max-width: 800px;
    margin: 0 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
}

/* Menu Section */
.menu {
    padding: 80px 0;
    background-color: #F9F9F9;
}

.menu h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.menu-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-item h3 {
    font-size: 20px;
    margin: 15px;
}

.menu-item p {
    margin: 0 15px 10px;
    color: #666;
}

.menu-item span {
    display: block;
    margin: 15px;
    font-weight: 600;
    color: #FF6F61;
}

/* Skeleton Loaders */
.skeleton {
    background-color: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.skeleton-img {
    width: 100%;
    height: 200px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.skeleton-text {
    width: 80%;
    height: 20px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    margin: 15px;
    border-radius: 4px;
}

.skeleton-text.short {
    width: 60%;
    height: 15px;
}

.skeleton-text.price {
    width: 40%;
    height: 18px;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* About Section */
.about {
    padding: 80px 0;
    text-align: center;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #F9F9F9;
}

.contact h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact input,
.contact textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact textarea {
    resize: vertical;
    min-height: 150px;
}

.contact button {
    align-self: center;
}

/* Popup Styles */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 3000;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #FFFFFF;
    max-width: 400px;
    width: 90%;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #FF6F61;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: popupFadeIn 0.3s ease-in-out;
}

.popup-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.popup-content form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.popup-content input[readonly] {
    background-color: #f0f0f0;
    cursor: not-allowed;
}

.popup-content p {
    font-size: 16px;
    color: #2E2E2E;
    margin: 15px 0 0;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #2E2E2E;
    cursor: pointer;
    transition: color 0.3s;
}

.popup-close:hover {
    color: #FF6F61;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Footer */
.footer {
    background-color: #2E2E2E;
    color: #FFFFFF;
    padding: 20px 0;
    text-align: center;
}

.footer .social-links a {
    color: #FFFFFF;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer .social-links a:hover {
    color: #FF6F61;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap;
        gap: 10px;
    }

    .hamburger {
        display: flex;
    }

    .nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #FFFFFF;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav.active ul {
        display: flex;
    }

    .nav a {
        font-size: 18px;
        padding: 10px 0;
    }

    .cta-button {
        padding: 8px 16px;
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .hero-content {
        margin: 0 15px;
        padding: 20px;
    }

    .hero-content .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-item img,
    .skeleton-img {
        height: 180px;
    }

    .menu h2,
    .about h2,
    .contact h2 {
        font-size: 28px;
    }

    .about p {
        font-size: 16px;
    }

    .contact form {
        max-width: 100%;
    }

    .contact input,
    .contact textarea {
        font-size: 14px;
    }

    .popup-content {
        width: 95%;
        padding: 15px;
    }

    .popup-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .hero-content {
        margin: 0 10px;
        padding: 15px;
    }

    .hero-content .cta-button {
        padding: 8px 16px;
        font-size: 12px;
    }

    .menu h2,
    .about h2,
    .contact h2 {
        font-size: 24px;
    }

    .order-button {
        padding: 6px 12px;
        font-size: 12px;
    }
}