* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}


header {
    background-color: #2c3e50;
    color: #fff;
    padding: 15px 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.8em;
    font-weight: 600;
    color: #f39c12; 
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: #f39c12;
}

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('./images/background.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    height: 500px; 
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero-section h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-section p {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 700px;
}

.cta-button {
    background-color: #f39c12;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #e67e22; 
    transform: translateY(-2px);
}

section {
    padding: 60px 0;
    text-align: center;
}

section:nth-of-type(even) {
    background-color: #e9e9e9;
}

section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #2c3e50;
    position: relative;
    display: inline-block;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #f39c12;
    border-radius: 2px;
}

.menu-categories {
    margin-bottom: 30px;
}

.category-btn {
    background-color: #ddd;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
    background-color: #f39c12;
    color: #fff;
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding-top: 20px;
}

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

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

.menu-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.menu-item h3 {
    font-size: 1.4em;
    margin: 15px 15px 5px;
    color: #2c3e50;
}

.menu-item p {
    font-size: 0.9em;
    color: #666;
    margin: 0 15px 15px;
    min-height: 40px; 
}

.menu-item .price {
    display: block;
    font-size: 1.3em;
    font-weight: 600;
    color: #f39c12;
    margin: 0 15px 15px;
}

.specials-section .special-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 25px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.specials-section .special-item h3 {
    color: #f39c12;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.specials-section .special-item p {
    color: #555;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.specials-section .special-item img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-top: 20px;
}

.specials-section .special-item .price {
    font-size: 1.5em;
    font-weight: 600;
    color: #2c3e50;
}

.contact-section p {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.contact-section .map-placeholder {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-section iframe {
    width: 100%;
    height: 400px;
    border: none;
}

footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 5px 10px;
    }

    .hero-section h1 {
        font-size: 2.5em;
    }

    .hero-section p {
        font-size: 1em;
    }

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

@media (max-width: 480px) {
    .logo {
        font-size: 1.5em;
    }

    .hero-section h1 {
        font-size: 2em;
    }

    .hero-section p {
        font-size: 0.9em;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    section h2 {
        font-size: 2em;
    }

    .category-btn {
        padding: 8px 15px;
        font-size: 0.9em;
    }
}

.order-form-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.order-form-section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #2c3e50;
    position: relative;
    display: inline-block;
}

.order-form-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #f39c12;
    border-radius: 2px;
}

.order-form-section form {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.order-form-section form h3 {
    font-size: 1.8em;
    color: #2c3e50;
    margin-bottom: 25px;
    border-bottom: 2px solid #f39c12;
    padding-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus {
    border-color: #f39c12;
    outline: none;
}

.form-group small {
    color: #888;
    font-size: 0.85em;
    margin-top: 5px;
    display: block;
}

.item-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 10px;
    padding: 15px;
    background-color: #f0f0f0;
    border-radius: 5px;
}

.item-checkbox {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.item-checkbox input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.item-checkbox label {
    margin-bottom: 0;
    flex-grow: 1;
    cursor: pointer;
}

.item-checkbox input[type="number"] {
    width: 60px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
    text-align: center;
    margin-left: 10px;
}

.item-checkbox input[type="number"]:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.order-form-section .cta-button {
    width: 100%;
    padding: 15px;
    font-size: 1.2em;
    margin-top: 30px;
}

@media (max-width: 600px) {
    .order-form-section form {
        padding: 25px;
    }
    .item-selection-grid {
        grid-template-columns: 1fr;
    }
    .item-checkbox {
        flex-direction: column;
        align-items: flex-start;
    }
    .item-checkbox label {
        margin-bottom: 8px;
    }
    .item-checkbox input[type="number"] {
        width: 100%;
        margin-left: 0;
        margin-top: 8px;
    }
}

