/* grill-styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fefaf5;
    color: #2d2a24;
    line-height: 1.5;
}

:root {
    --red: #b33a2c;
    --maroon: #7d2e24;
    --terracotta: #c96e4b;
    --wood: #a57c5c;
    --grey-dark: #2f2e2b;
    --grey-soft: #5c5a53;
    --bg-light: #fdf7f0;
    --shadow: 0 20px 30px -10px rgba(0,0,0,0.15);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header Styles */
header {
    background: var(--grey-dark);
    color: white;
    padding: 0.8rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1280px;
    margin: 0 auto;
}

.logo h1 {
    font-size: 1.9rem;
    color: white;
    line-height: 1.1;
}

.logo span {
    color: var(--red);
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 3px;
    display: block;
}

.nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    flex-wrap: wrap;
}

.nav a {
    color: #eee;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.2s;
    padding: 0.4rem 0;
    border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a.active {
    border-bottom-color: var(--red);
    color: white;
}

.page-hero {
    background: linear-gradient(135deg, var(--maroon) 0%, var(--red) 100%);
    color: white;
    text-align: center;
    padding: 5rem 0;
    margin-bottom: 3rem;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.3);
}

.badge i {
    margin-right: 0.5rem;
    color: var(--red);
}

/* Category Title */
.category-title {
    font-size: 2.2rem;
    margin: 3rem 0 2rem;
    color: var(--maroon);
    border-left: 8px solid var(--red);
    padding-left: 1.5rem;
}

.category-title i {
    margin-right: 1rem;
    color: var(--red);
}

/* Menu Grid */
.menu-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.menu-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: white;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-5px);
}

.menu-card.left {
    direction: ltr;
}

.menu-card.right {
    direction: rtl;
}

.menu-card.right .card-content {
    direction: ltr;
}

.card-image {
    height: 100%;
    min-height: 350px;
    position: relative;
    overflow: hidden;
}

/* Slideshow Styles */
.slideshow-container {
    width: 100%;
    height: 100%;
    position: relative;
    min-height: 350px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid white;
}

.dot.active {
    background: var(--red);
    transform: scale(1.2);
    border-color: var(--red);
}

.card-content {
    padding: 2.5rem;
    direction: ltr;
}

.card-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--grey-dark);
}

.price-tag {
    font-size: 1.3rem;
    color: var(--red);
    font-weight: 700;
    display: inline-block;
    margin-left: 1rem;
}

.dish-description {
    color: var(--grey-soft);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.dish-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.dish-features span {
    font-size: 0.95rem;
    color: var(--wood);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dish-features i {
    color: var(--red);
}

.card-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-order {
    background: var(--red);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-order:hover {
    background: var(--maroon);
    transform: scale(1.05);
}

.btn-details {
    color: var(--maroon);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.btn-details:hover {
    color: var(--red);
    text-decoration: underline;
}

/* More Dishes Grid */
.more-dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0 4rem;
}

.more-dish-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0e0d0;
}

.more-dish-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(179,58,44,0.15);
    border-color: var(--terracotta);
}

.more-dish-card i {
    font-size: 2.5rem;
    color: var(--red);
    margin-bottom: 1rem;
}

.more-dish-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--grey-dark);
}

.more-dish-card .price {
    color: var(--maroon);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #f5e8dc 0%, #f0ddd0 100%);
    padding: 5rem 0;
    margin: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--maroon);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--grey-soft);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.testimonial-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 1rem;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    background: white;
    padding: 2rem;
    border-radius: 2rem;
    box-shadow: var(--shadow);
    min-width: 300px;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    margin-right: 0.2rem;
}

.testimonial-text {
    color: var(--grey-dark);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--terracotta);
}

.testimonial-author h4 {
    color: var(--grey-dark);
    margin-bottom: 0.2rem;
}

.testimonial-author p {
    color: var(--grey-soft);
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.prev-testimonial,
.next-testimonial {
    background: var(--red);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-testimonial:hover,
.next-testimonial:hover {
    background: var(--maroon);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(0,0,0,0.2);
    border: none;
}

.testimonial-dots .dot.active {
    background: var(--red);
}

/* CTA Section */
.cta-section {
    background: var(--grey-dark);
    color: white;
    text-align: center;
    padding: 4rem 0;
    margin: 4rem 0 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--red);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: white;
    color: var(--red);
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid white;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: white;
    color: var(--grey-dark);
    border-color: white;
}

/* Footer */
footer {
    background: var(--grey-dark);
    color: #aaa;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--red);
}

.social-icons {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
}

.social-icons a {
    color: #aaa;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--red);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

/* WhatsApp Float */
.wa-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 20px #00000044;
    z-index: 99;
    transition: 0.2s;
    text-decoration: none;
}

.wa-float:hover {
    transform: scale(1.1);
    background: #20b859;
}

/* Responsive Design */
@media (max-width: 900px) {
    .menu-card {
        grid-template-columns: 1fr;
    }
    
    .menu-card.right {
        direction: ltr;
    }
    
    .card-image {
        min-height: 300px;
    }
    
    .testimonial-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 700px) {
    .header-flex {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav ul {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .card-content h3 {
        font-size: 1.6rem;
    }
    
    .price-tag {
        display: block;
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .card-content {
        padding: 1.5rem;
    }
    
    .dish-features {
        gap: 1rem;
        flex-direction: column;
    }
    
    .more-dishes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}	
/* View Menu Button */
.btn-view-menu {
    background: var(--maroon);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    border: 2px solid var(--maroon);
    font-size: 1rem;
}

.btn-view-menu i {
    font-size: 1.2rem;
}

.btn-view-menu:hover {
    background: white;
    color: var(--maroon);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(125, 46, 36, 0.3);
}

/* Mobile responsive */
@media (max-width: 700px) {
    div[style*="display: flex"] {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start !important;
    }
    
    .btn-view-menu {
        width: 100%;
        justify-content: center;
        margin-bottom: 1rem;
    }
}/* Modal/Popup Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 2rem;
    width: 90%;
    max-width: 800px;
    border-radius: 2rem;
    position: relative;
    animation: slideDown 0.4s ease;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--grey-soft);
    transition: color 0.3s ease;
    line-height: 1;
}

.close-modal:hover {
    color: var(--red);
}

.modal-header {
    border-bottom: 3px solid var(--red);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-header i {
    font-size: 2.5rem;
    color: var(--red);
}

.modal-header h2 {
    color: var(--maroon);
    font-size: 2rem;
    margin: 0;
    border-left: none;
    padding-left: 0;
}

/* Menu Table Styles */
.menu-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.menu-table th {
    text-align: left;
    padding: 1rem 0.5rem;
    background: var(--red);
    color: white;
    font-weight: 600;
}

.menu-table td {
    padding: 0.8rem 0.5rem;
    border-bottom: 1px solid #f0e0d0;
}

.menu-table tr:hover {
    background: #fdf7f0;
}

.dish-category {
    background: var(--terracotta);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dish-name {
    font-weight: 600;
    color: var(--grey-dark);
}

.dish-price {
    font-weight: 700;
    color: var(--red);
    text-align: right;
}

.dish-desc {
    color: var(--grey-soft);
    font-size: 0.9rem;
    font-style: italic;
}

/* Modal Footer */
.modal-footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px dashed var(--terracotta);
    text-align: center;
    color: var(--grey-soft);
}

.modal-footer i {
    color: var(--red);
    margin: 0 0.2rem;
}
/* Extra mobile optimizations */
@media (max-width: 500px) {
    .modal-content {
        padding: 1rem;
        margin: 1% auto;
        border-radius: 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.2rem;
    }
    
    .modal-header i {
        font-size: 2rem;
    }
    
    .close-modal {
        right: 1rem;
        top: 0.5rem;
        font-size: 2rem;
    }
    
    /* Stack table cells on very small screens */
    .menu-table,
    .menu-table tbody,
    .menu-table tr,
    .menu-table td {
        display: block;
        width: 100%;
    }
    
    .menu-table tr {
        margin-bottom: 1rem;
        border: 1px solid #f0e0d0;
        border-radius: 1rem;
        padding: 0.5rem;
    }
    
    .menu-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px dashed #f0e0d0;
        padding: 0.5rem;
    }
    
    .menu-table td:last-child {
        border-bottom: none;
    }
    
    .dish-name {
        font-weight: 600;
    }
    
    .dish-desc {
        display: none; /* Hide description on very small screens to save space */
    }
    
    .dish-price {
        font-weight: 700;
        color: var(--red);
    }
}
/* Order Modal Styles */
.order-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.order-modal-content {
    background: white;
    margin: 3% auto;
    padding: 2rem;
    width: 90%;
    max-width: 900px;
    border-radius: 2rem;
    position: relative;
    animation: slideDown 0.4s ease;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.close-order-modal {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--grey-soft);
    transition: color 0.3s ease;
    z-index: 10;
}

.close-order-modal:hover {
    color: var(--red);
}

.order-modal-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--red);
}

.order-modal-header i {
    font-size: 3rem;
    color: var(--red);
    margin-bottom: 0.5rem;
}

.order-modal-header h2 {
    color: var(--maroon);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: var(--grey-soft);
    font-size: 1rem;
}

.order-menu-items h3 {
    color: var(--maroon);
    margin: 1.5rem 0 1rem;
    font-size: 1.5rem;
    border-left: 5px solid var(--red);
    padding-left: 1rem;
}

.order-menu-items h3 i {
    color: var(--red);
    margin-right: 0.5rem;
}

.order-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1rem;
}

.order-menu-item {
    background: #fdf7f0;
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid #f0e0d0;
}

.order-menu-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.item-info h4 {
    color: var(--maroon);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.item-info p {
    color: var(--grey-soft);
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
}

.item-price {
    display: inline-block;
    background: var(--red);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.whatsapp-order-btn {
    background: #25D366;
    color: white;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-order-btn:hover {
    background: #20b859;
    transform: scale(1.05);
}

.whatsapp-order-btn::before {
    content: "\f232";
    font-family: "Font Awesome 6 Brands";
    font-size: 1rem;
}

.order-modal-footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px dashed var(--terracotta);
    text-align: center;
}

.whatsapp-order-summary {
    background: #e8f5e9;
    padding: 1rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.whatsapp-order-summary i {
    font-size: 2rem;
    color: #25D366;
}

.whatsapp-order-summary p {
    color: #2e7d32;
    margin: 0;
    font-size: 0.9rem;
}

.delivery-info {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.delivery-info span {
    color: var(--grey-soft);
    font-size: 0.85rem;
}

.delivery-info i {
    color: var(--red);
    margin-right: 0.3rem;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 700px) {
    .order-modal-content {
        padding: 1.5rem;
        margin: 5% auto;
        width: 95%;
    }
    
    .order-menu-item {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-order-btn {
        width: 100%;
        justify-content: center;
    }
    
    .order-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .delivery-info {
        flex-direction: column;
        gap: 0.5rem;
    }
}/* Button Styling - Matching Original */
.btn {
    padding: 0.8rem 2rem;
    border-radius: 60px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
    background: var(--red);
    color: white;
    box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

.btn i {
    font-size: 1rem;
}

.btn:hover {
    transform: scale(1.05);
    background: var(--maroon);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Outline Button Style */
.btn-outline {
    background: transparent;
    border-color: white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--maroon);
    border-color: white;
}