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

body{
    background: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

a{
    text-decoration: none;
    color: #333;
}

/** Header Section **/
header{
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
}

.logo a{
    font-size: 1.8rem;
    font-weight: bold;
}

.logo span{
    color: #ff6b6b;
}

.nav-links{
    display: flex;
    list-style: none;
}

.nav-links li{
    margin-left: 2rem;
}

.nav-links a:hover{
    color: #ff6b6b;
}

.burger{
    display: none;
    cursor: pointer;
}

/** Home Section **/
.hero{
    background-image: url("../images/bg/1.jpg");
    height: 100vh;
    background-size: cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 30%;
}

.hero-content{
    position: absolute;
    width: 65%;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.hero-content .hero-title{
    font-size: 3rem;
    word-spacing: 10px;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.hero-content .hero-desc{
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.btn{
    background: #ff6b6b;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    border: none;
    transition: background 0.3s;
    cursor: pointer;
}

.btn:hover{
    background: #ff5252;
}

/** Menu Section **/
.menu{
    padding: 5rem 5%;
    text-align: center;
}

.menu .menu-title{
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.menu-items{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.item{
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    width: 300px;
    transition: transform 0.3s;
}

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

.item-img{
    width: 100%;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.menu-item-title{
    margin-bottom: 0.5rem;
}

.menu-item-desc{
    color: #ff6b6b;
    font-weight: bold;
}

.order-btn {
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    background: #4CAF50; 
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
}

.order-btn:hover {
    background: #45a049;
}

.btn-more-full-menu {
    margin-top: 4rem;
    display: inline-block;
}

#showBulkOrderBtn {
    margin-top: 3rem;
    display: block;
    width: 100%;
    max-width: 970px;
    margin-left: auto;
    margin-right: auto;
}

/** About & Contact-Us Section **/
.about{
    height: 300px;
    background-image: url("../images/bg/4.jpg");
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    position: relative;
    padding: 10rem 5%;
    text-align: center;
}

.overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-title{
    word-spacing: 10px;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.about-desc{
    font-size: 1.2rem;
    letter-spacing: 2px;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}


.contact{
    padding: 10rem 5%;
    text-align: center;
}

.about-title, .contact-title{
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact form{
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact input, .contact textarea{
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/** Footer Section **/
footer{
    background: #333;
    color: #fff;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

.social{
    margin-top: 1rem;
}

.social a{
    color: #fff;
    margin: 0 0.5rem;
    font-size: 1.2rem;
    transition: all 0.2s;
}

.social a:hover{
    color: #ff5252;
}


/* Modal Styles */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1001; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.4); 
    justify-content: center; 
    align-items: center;     
}

.modal-content {
    background-color: #fefefe;
    margin: auto; 
    padding: 2.5rem;
    border: 1px solid #888;
    width: 90%; 
    max-width: 500px; 
    border-radius: 10px;
    position: relative; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: right; 
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center; 
}

#orderModal{
    display: none;
}

.close-button {
    color: #aaa;
    float: left; 
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    left: 20px;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-content label {
    font-weight: bold;
    margin-bottom: 0.2rem;
    display: block; 
}

.modal-content input[type="text"],
.modal-content input[type="tel"],
.modal-content textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; 
}

.modal-content .btn {
    background: #ff6b6b;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
    margin-top: 1rem;
}

.modal-content .btn:hover {
    background: #ff5252;
}

/* Multi Order Section */

#bulkOrderSection{
    display: none;
}

.bulk-order-section {
    display: none; 
    padding: 5rem 5%;
    text-align: center;
}

.bulk-order-section form {
    max-width: 800px; 
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem; 
}

.bulk-order-section form input[type="text"],
.bulk-order-section form input[type="tel"],
.bulk-order-section form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; 
    font-size: 1rem;
}


.bulk-menu-items {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.bulk-menu-item {
    display: flex;
    align-items: center;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 0.8rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    text-align: right; 
    gap: 0.8rem; 
}

#showBulkOrderBtn{
    margin-top: 3rem;
}

.bulk-menu-item img {
    width: 60px; 
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0; 
}

.bulk-item-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
}

.bulk-item-details h4 {
    margin: 0 0 0.3rem 0;
    font-size: 1.1rem;
    color: #333;
}

.bulk-item-details p {
    margin: 0;
    color: #ff6b6b;
    font-weight: bold;
    font-size: 0.9rem;
}

.bulk-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0; 
}

.bulk-item-controls input[type="checkbox"] {
    transform: scale(1.3); 
    margin-left: 0.5rem; 
    cursor: pointer;
}

.bulk-item-controls input[type="number"] {
    width: 60px; 
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
    -moz-appearance: textfield; 
}

.bulk-item-controls input[type="number"]::-webkit-outer-spin-button,
.bulk-item-controls input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


.bulk-order-summary {
    background: #eef;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    display: flex;
    justify-content: center; 
}

.back-btn {
    background: #555; 
}

.back-btn:hover {
    background: #333;
}


/** Responsive Design */
@media (max-width:768px){
    .nav-links{
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 50px;
        left: 0;
        background: #fff;
        padding: 1rem;
    }

    .nav-links.active{
        display: flex;
    }

    .burger{
        display: block;
    }

    .hero{
        background-image: url("../images/bg/6.jpg");
    }

    .hero-content{
        top: 50%;
    }
    
    .menu-items{
        flex-direction: column;
        align-items: center;
    }

    .hero-content .hero-title{
        font-size: 2rem;
    }

    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }

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

    .bulk-menu-item {
        flex-direction: row; 
        align-items: center;
        text-align: right;
    }
}