:root {
    --primary-color: #1176f1;
    --secondary-color: #2AB12A;
    --accent-color: #1176f1;
    --dark-color: #333;
    --light-color: #f4f4f4;
    --success-color:  #2AB12A;
    --danger-color: #d62020;
    --gray-color: #666;
    --header-bg: #113281;
    --header-text: #ffffff;
    --footer-bg: #113281;
    --footer-text: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: var(--dark-color);
    line-height: 1.6;
}
 
        
.container {
    width: 100%;
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 15px;
}
.i_icon{
    color: #28a745;
    display: inline;
    
}
.container1 {
    width: 100%;
    background-image: url("WhatsApp\ Image\ 2025-08-18\ at\ 10.09.34\ AM.jpeg");
     /* max-width: 1200px;  */
    margin: 0 auto;
    padding: 0 15px;
    color: white;
}
 
/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 2rem;
}

.logo h2 {
    font-size: 1.2rem;
    color: var(--gray-color);
    font-weight: normal;
}
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
}

/* nav ul li a {
    text-decoration: none;
    color:black;
    font-weight:500;
    transition: color 0.3s;
    padding: 0.5rem 0;
    position: relative;
} */

nav ul li a:hover {
    
    color:rgb(42, 177, 42);
}

nav ul li a.active {
    color:rgb(42, 177, 42);
}
.nav-link:hover{
     color:rgb(42, 177, 42);
}
nav ul li a.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

/* Button Styles */


.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}
.paid-btn {
    background-color: #37b71a;
    color: white;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 4px;
}

.not-paid-btn {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 4px;
}
.remove-item{
    background-color: #dc3545;
    color: #ccc;
    border-radius: 4px;
}
.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn-secondary {
    background-color: rgb(212, 108, 108);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
} 

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.menu-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 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 {
    padding: 1rem;
    font-size: 1.3rem;
}

.menu-item p {
    padding: 0 1rem 1rem;
    color: var(--primary-color);
    font-weight: bold;
}




/* Order Page Styles */
.order-section {
    padding: 3rem 0;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 2rem; */
}

.menu-header h2 {
    color:rgb(21, 72, 198);
    font-weight: bold;
}

.menu-categories {
    display: flex;
    justify-content: center;
    /* margin-bottom: 2rem; */
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category-btn {
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 1rem;
    color: var(--dark-color);
    transition: all 0.3s;
    border-radius: 20px;
}

.category-btn.active, .category-btn:hover {
    background-color: var(--primary-color);
    color: white;
}
.btn{
    background-attachment: var(--primary-color);
    border: 1px solid black ;
    color:black;
}
.btn:hover{
  background-color: #3d5bd0;
}
.menu-items {
    width: 100%;
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    overflow: scroll;
    gap: 2rem;
}

.menu-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.menu-card:hover {
    transform: translateY(-5px);
}

.menu-card-img {
    height: 200px;
    overflow: hidden;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.menu-card:hover .menu-card-img img {
    transform: scale(1.1);
}

.menu-card-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.menu-card-header h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.menu-card-header p {
    color: #666;
    font-size: 0.9rem;
}

/* .menu-card-body {
     padding: 1.5rem; 
} */

.menu-card-body p {
    /* margin-bottom: 1rem; */
    color: #555;
}

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.price {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.add-to-cart {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.add-to-cart:hover {
    background-color: var(--secondary-color);
}

.tag {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    background-color: #eee;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    color: #555;
}

.tag.protein {
    background-color: #e3f2fd;
    color: #1976d2;
}

.tag.vegetarian {
    background-color: #e8f5e9;
    color: #1976d2;
}

/* Product card enhancements */
.menu-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.menu-card-img img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.menu-card-img img:hover {
    transform: scale(1.05);
}

/* Sub-category styling */
.sub-categories {
    margin: 2rem 0;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.sub-categories .menu-categories {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.sub-categories .category-btn {
    background-color: white;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    margin: 0.25rem;
}

.sub-categories .category-btn.active,
.sub-categories .category-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Toast notification */
.toast-notification {
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Footer link fixes */
.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

/* Cart Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    background-color: #f8f9fa;
    border-radius: 8px 8px 0 0;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #dc3545;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    padding: 0.3rem;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background-color: transparent;
    border: none;
}

.close-btn:hover {
    color: #b02a37;
    background-color: #f8d7da;
    transform: scale(1.1);
}

/* Cart Button */
.cart-btn {
    /* position: fixed;
    /* bottom: 2rem;
    right: 2rem; */
    background-color: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 90;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color:#1976d2 ;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}
#search-input{
border: 1px solid black;
padding: 3px;
}


.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eee;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.cart-item-info h4 {
    margin-bottom: 0.3rem;
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: bold;
}

.cart-total {
    margin-top: 1.5rem;
    text-align: right;
    font-weight: bold;
    font-size: 1.2rem;
}

.checkout-btn {
    width: 100%;
    padding: 0.8rem;
    background-color: var(--success-color);
    color: white;
    border: none;
    border-radius: 4px;
    margin-top: 1rem;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.checkout-btn:hover {
    background-color: #1976d2;
}

/* Payment Methods Styling */
.payment-methods-section {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.payment-methods-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-option {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.payment-option input[type="radio"] {
    margin-right: 0.5rem;
}

.payment-option label {
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-details {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 4px;
    display: none;
}

.card-details.active {
    display: block;
}

.card-row {
    display: flex;
    /* gap: 1rem; */
}

.card-row input {
    flex: 1;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    margin: 0.5rem 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Updated Button Colors */
.btn-remove {
    background-color: #dc3545 !important;
    color: white !important;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-remove:hover {
    background-color: #c82333 !important;
}

.btn-add {
    background-color: #28a745 !important;
    color: white !important;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-add:hover {
    background-color: #218838 !important;
}

.btn-increment {
    background-color: #28a745 !important;
    color: white !important;
    border: none;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-decrement {
    background-color: #ff3d07 !important;
    color: black !important;
    border: none;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-decrement:hover {
    background-color: #e00000 !important;
}
/* Footer Styles */
footer {
    background-color:rgb(34, 33, 33);
    color: var(--footer-text);
    padding: 50px 0;
    margin-top: 3rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: white;
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.subscribe-form input {
    padding: 10px;
    width: 100%;
    margin-bottom: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--footer-text);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.subscribe-form input:focus {
    outline: none;
    border-color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.15);
}

.subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.subscribe-form button {
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: var(--footer-text);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.subscribe-form button:hover {
    background-color: var(--header-bg);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }
    .bg-body-tertiary{
    position: relative;
    left: 0;
    bottom: 0;
}
    nav ul {
        margin-top: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    nav ul li {
        margin-left: 0;
        margin-bottom: 0.5rem;
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        width: 100%;
        padding: 0.5rem 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .branch-cards{
        flex-direction: column;
        width: 100%;
        /* margin-bottom: 0.5rem; */
    }
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .about-content .container {
        flex-direction: column;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .menu-items {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
}
/*  */
/* Fix for featured products display */
/* ./* Fix for featured products display */
.category-products {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 0;
    justify-content: space-between;
}

.product-card {
    /* flex: 0 0 calc(33.333% - 1rem); */
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    font-size: 1.2rem;
    margin: 1rem;
    color: var(--dark-color);
}

.product-card p {
    font-size: 0.9rem;
    margin: 0 1rem 1rem;
    color: #666;
}

@media (max-width: 1800px) {
    .product-card {
        flex: 0 0 100%;
        margin-bottom: 1rem;
    }
    .menu-items {
        overflow-x: hidden;
        justify-content: center;
    }
}
