/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #D35400; /* Orange color for biryani theme */
    --primary-dark: #A04000;
    --secondary-color: #F39C12;
    --accent-color: #E74C3C;
    --dark-color: #2C3E50;
    --light-color: #FDF2E9;
    --text-color: #333;
    --text-light: #777;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(192, 88, 88, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-order {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-order {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 8px 20px;
    font-size: 0.8rem;
}

.btn-order:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 100px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--dark-color);
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--primary-color);
    letter-spacing: 1px;
}

/* Navigation Right Side */
.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary-color);
}

.order-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    white-space: nowrap;
}

.order-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    transition: var(--transition);
}

/* Banner Section */
.banner {
    height: 100vh;
    position: relative;
    color: var(--white);
    margin-top: 0;
    overflow: hidden;
}

.banner-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 73vh;
    padding: 20px;
}

.banner-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease;
}

.banner-title span {
    color: var(--secondary-color);
}

.banner-text {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.3s both;
}

.banner-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s both;
}

.banner-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.banner-scroll a {
    display: block;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.banner-scroll a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.slider-dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Banner Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Section Common Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Welcome Section */
.welcome {
    background-color: var(--white);
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.welcome-text p {
    margin-bottom: 20px;
    color: var(--text-color);
}

.welcome-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.welcome-image {
    position: relative;
}

.image-frame {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--primary-color);
    border-radius: 10px;
    z-index: -1;
}

.image-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.image-frame:hover img {
    transform: scale(1.05);
}

/* Menu Items Section */
.menu-items {
    background-color: var(--light-color);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.menu-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.menu-card-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.1);
}

.menu-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.menu-card-content {
    padding: 25px;
}

.menu-card-content h3 {
    color: var(--dark-color);
}

.menu-card-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.view-all-btn {
    margin-top: 20px;
}


.menu-item {
    display: flex;
    align-items: center;          /* Vertical center */
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee; /* optional separator */
}

.item-icon {
    flex: 0 0 40px;               /* fixed width for icon */
    font-size: 1.8rem;
    color: #e67e22;               /* orange accent - change as per theme */
    text-align: center;
}

.item-details {
    flex: 1;                      /* take remaining space */
    padding: 0 15px;
}

.item-details h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.item-details .price {
    font-size: 1.25rem;
    font-weight: bold;
    color: #c0392b;               /* red for price highlight */
    display: block;               /* or inline-block if you want side-by-side */
    margin-top: 4px;
}

.item-action {
    flex: 0 0 auto;
}

.btn-order {
    white-space: nowrap;
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Optional: Make price & name side-by-side on larger screens */
@media (min-width: 768px) {
    .item-details {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .item-details .price {
        margin-top: 0;
        margin-left: auto;
        padding-left: 15px;
        text-align: right;
    }
}
/* Why Choose Us Section */
.why-choose {
    background-color: var(--white);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.reason-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background-color: var(--light-color);
    transition: var(--transition);
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.reason-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 2rem;
}

.reason-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.reason-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Gallery Section */
.gallery {
    background-color: var(--light-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--white);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-track {
    overflow: hidden;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.testimonial-content {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 5rem;
    color: var(--primary-color);
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--text-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.rating {
    margin-left: auto;
    color: var(--secondary-color);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-prev, .testimonial-next {
    background-color: var(--primary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-prev:hover, .testimonial-next:hover {
    background-color: var(--primary-dark);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

/* Contact Section */
.contact {
    background-color: var(--light-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 5px;
}

.contact-item h4 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.contact-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-form h3 {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
}

.footer-logo .logo-main {
    color: var(--white);
    font-size: 1.3rem;
}

.footer-logo .logo-sub {
    color: var(--secondary-color);
}

.footer-about p {
    color: #aaa;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #aaa;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-item i {
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-item p {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.qr-code {
    text-align: center;
    margin-top: 20px;
}

.qr-code img {
    width: 120px;
    height: 120px;
    border: 5px solid var(--white);
    border-radius: 10px;
    margin-bottom: 10px;
}

.qr-code p {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-bottom i {
    color: var(--accent-color);
    margin: 0 5px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .welcome-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .menu-grid,
    .reasons-grid,
    .gallery-grid,
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .banner-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-right {
        gap: 20px;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 25px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-text {
        font-size: 1rem;
    }
    
    .banner-btns {
        flex-direction: column;
        gap: 15px;
    }
    
    .welcome-features {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .menu-grid,
    .reasons-grid,
    .gallery-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .rating {
        margin-left: 0;
        margin-top: 10px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .order-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

.gallery {
    padding: 80px 0;
    background: #fdfaf5;          /* warm, food-friendly background */
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #c1440e;               /* biryani spice color */
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #555;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    aspect-ratio: 4 / 3;           /* nice rectangular proportion */
    background: #eee;              /* fallback color */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    padding: 18px 15px 12px;
    text-align: center;
    font-size: 1.15rem;
    font-weight: 600;
    transform: translateY(100%);
    transition: all 0.35s ease;
    opacity: 0;
}

.gallery-item:hover .overlay {
    transform: translateY(0);
    opacity: 1;
}

/* Mobile */
@media (max-width: 768px) {
    .gallery {
        padding: 60px 0;
    }
    .section-title {
        font-size: 2.4rem;
    }
    .gallery-grid {
        gap: 20px;
    }
}

/* Text-only menu cards */
/* Single vertical menu card */
.single-vertical-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    overflow: hidden;
    max-width: 900px;
}


.single-vertical-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    overflow: hidden;
    max-width: 900px;
    
    /* Center it */
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.menu-list {
    margin: 0;
    padding: 0;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
}

.menu-item:last-child {
    border-bottom: none;
}

.item-icon {
    width: 50px;
    height: 50px;
    background: #fef6e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #c1440e;
    margin-right: 18px;
    flex-shrink: 0;
}

.item-details {
    flex: 1;
}

.item-details h4 {
    margin: 0 0 6px 0;
    font-size: 1.25rem;
    color: #222;
    font-weight: 600;
}

.item-desc {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.item-action {
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #c1440e;
    min-width: 70px;
    text-align: right;
}

.btn-order.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: 30px;
    background: #c1440e;
    color: white;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-order.btn-sm:hover {
    background: #a6390b;
    transform: translateY(-1px);
}

/* Mobile adjustments */
@media (max-width: 576px) {
    .menu-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 0;
    }

    .item-icon {
        margin-right: 0;
        margin-bottom: 12px;
    }

    .item-action {
        width: 100%;
        justify-content: space-between;
        margin-top: 12px;
    }

    .price {
        text-align: left;
    }
}

.single-vertical-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    overflow: hidden;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.menu-list {
    margin: 0;
    padding: 0;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
}

.menu-item:last-child {
    border-bottom: none;
}

.item-icon {
    width: 50px;
    height: 50px;
    background: #fef6e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #c1440e;
    margin-right: 18px;
    flex-shrink: 0;
}

.item-details {
    flex: 1;
}

.item-details h4 {
    margin: 0 0 4px 0;
    font-size: 1.25rem;
    color: #222;
    font-weight: 600;
}

.item-action {
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
}

.btn-order.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: 30px;
    background: #c1440e;
    color: white;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-order.btn-sm:hover {
    background: #a6390b;
    transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 576px) {
    .menu-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 0;
    }

    .item-icon {
        margin-right: 0;
        margin-bottom: 12px;
    }

    .item-action {
        width: 100%;
        justify-content: space-between;
        margin-top: 12px;
    }
}


.single-vertical-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    overflow: hidden;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.menu-list {
    margin: 0;
    padding: 0;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
}

.menu-item:last-child {
    border-bottom: none;
}

.item-icon {
    width: 50px;
    height: 50px;
    background: #fef6e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #c1440e;
    margin-right: 18px;
    flex-shrink: 0;
}

.item-details {
    flex: 1;
}

.item-details h4 {
    margin: 0 0 4px 0;
    font-size: 1.25rem;
    color: #222;
    font-weight: 600;
}

.item-action {
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
}

.btn-order.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: 30px;
    background: #c1440e;
    color: white;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-order.btn-sm:hover {
    background: #a6390b;
    transform: translateY(-1px);
}

/* Mobile responsive */
@media (max-width: 576px) {
    .menu-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 0;
    }

    .item-icon {
        margin-right: 0;
        margin-bottom: 12px;
    }

    .item-action {
        width: 100%;
        justify-content: space-between;
        margin-top: 12px;
    }
}


/* Menu Page Styles */
.menu-banner {
    height: 60vh;
    min-height: 400px;
}

.menu-section {
    padding: 60px 0;
}

.menu-section:nth-child(even) {
    background-color: var(--light-color);
}

.single-vertical-card {
    max-width: 800px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.menu-list {
    margin: 0;
    padding: 0;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    transition: var(--transition);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    background-color: rgba(211, 84, 0, 0.05);
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 5px;
}

.item-icon {
    width: 50px;
    height: 50px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.item-details {
    flex: 1;
}

.item-details h4 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.item-details p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.item-action {
    display: flex;
    align-items: center;
    gap: 20px;
}

.item-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 80px;
    text-align: right;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.8rem;
}

.list-unstyled {
    list-style: none;
}

.p-4 {
    padding: 1.5rem;
}

.p-5 {
    padding: 3rem;
}

@media (max-width: 768px) {
    .p-md-5 {
        padding: 2rem;
    }
    
    .menu-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 25px 0;
    }
    
    .item-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .item-action {
        width: 100%;
        justify-content: space-between;
    }
    
    .item-price {
        text-align: left;
    }
}

.no-hover-effects:hover {
    transform: none !important;
    box-shadow: var(--shadow) !important;
}

.no-hover-effects:hover img {
    transform: none !important;
}

/* Special Accompaniments Styling */
.special-accompaniments {
    padding: 2rem 1rem;
}

.accompaniment-title {
    font-family: 'Playfair Display', serif;
    color: #c1440e;
    position: relative;
    display: inline-block;
}

.accompaniment-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #D35400;
    border-radius: 2px;
}

.accompaniment-item {
    border: 1px solid #eee;
    transition: all 0.25s ease;
}

.accompaniment-item:hover {
    border-color: #D35400;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(211, 84, 0, 0.12);
}

.item-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(253, 242, 233, 0.7);
    border-radius: 50%;
}

.price {
    font-size: 1.25rem;
    color: #D35400;
}

@media (max-width: 767.98px) {
    .accompaniment-item {
        padding: 1.25rem;
    }
    
    .item-icon {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
    
    .accompaniment-title {
        font-size: 1.6rem;
    }
}
/* Menu Divider */
.menu-divider {
    position: relative;
}

.divider-text {
    display: inline-block;
    background: white;
    padding: 0 20px;
    color: #343a40;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.menu-divider:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #dee2e6, transparent);
    z-index: 0;
}



/* Fried Chicken Section Specific Styling */
#fried-chicken .section-title {
    color: #C0392B;
}

#fried-chicken .title-underline {
    background: linear-gradient(90deg, #E74C3C, #C0392B);
}

/* Special Accompaniments for Fried Section */
#fried-chicken .special-accompaniments {
    background: linear-gradient(135deg, #FFF5F5 0%, #FFEBEE 100%);
    border: 2px dashed #E74C3C;
}

#fried-chicken .accompaniment-title {
    color: #C0392B;
}

#fried-chicken .accompaniment-title:after {
    background: linear-gradient(90deg, transparent, #E74C3C, transparent);
}

#fried-chicken .accompaniment-item {
    border-left: 4px solid #E74C3C;
}

/* Menu Divider */
#fried-chicken .divider-text {
    color: #C0392B;
    border: 2px solid #E74C3C;
}

#fried-chicken .menu-divider:before {
    background: linear-gradient(90deg, transparent, #E74C3C, transparent);
}

/* Menu Item Styling for Fried Section */
#fried-chicken .item-icon {
    color: #E74C3C;
    background: linear-gradient(135deg, #FFEBEE, #FFCDD2);
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.15);
}

#fried-chicken .fa-fish, 
#fried-chicken .fa-shrimp {
    color: #2980B9;
    background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
}

#fried-chicken .fa-cheese {
    color: #F39C12;
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
}

#fried-chicken .price {
    color: #C0392B;
}

/* For items with multiple price options */
.item-title-with-options h4 {
    margin-bottom: 8px;
}

.price-options {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 8px;
}

.price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F9F9F9;
    padding: 6px 12px;
    border-radius: 8px;
    border-left: 3px solid #E74C3C;
}

.option-label {
    font-weight: 500;
    color: #666;
    font-size: 0.95rem;
}

.option-price {
    font-weight: 700;
    color: #C0392B;
    font-size: 1.1rem;
}

/* Button Styling */
#fried-chicken .btn-order {
    background: linear-gradient(135deg, #C0392B, #E74C3C);
}

#fried-chicken .btn-order:hover {
    background: linear-gradient(135deg, #E74C3C, #C0392B);
    box-shadow: 0 5px 15px rgba(192, 57, 43, 0.3);
}

/* Hover Effects */
#fried-chicken .menu-item:hover {
    background: rgba(255, 235, 238, 0.5);
}

/* Responsive Design for Multi-price Items */
@media (max-width: 768px) {
    .price-options {
        flex-direction: column;
    }
    
    .price-option {
        width: 100%;
    }
}

/* Special seafood icon colors */
.fa-shrimp {
    color: #E74C3C !important;
}

/* Menu Section Styling */
.menu-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #f5f5f5 100%);
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #8B4513;
    margin-bottom: 15px;
    position: relative;
}

.title-underline {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #D2691E, #8B4513);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Menu Card */
.menu-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(139, 69, 19, 0.1);
    max-width: 900px;
}

.menu-card-content {
    background: white;
}

/* Special Accompaniments Styling */
.special-accompaniments {
    background: linear-gradient(135deg, #fffaf0 0%, #fff5e6 100%);
    border-radius: 15px;
    padding: 25px;
    border: 2px dashed #D2691E;
    margin-bottom: 30px;
}

.accompaniment-title {
    color: #8B4513;
    font-weight: 700;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.accompaniment-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D2691E, transparent);
}

.accompaniment-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #D2691E;
}

.accompaniment-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Menu Divider */
.menu-divider {
    position: relative;
    margin: 30px 0;
}

.divider-text {
    display: inline-block;
    background: white;
    padding: 10px 30px;
    color: #8B4513;
    font-weight: 600;
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
    border: 2px solid #D2691E;
    border-radius: 25px;
}

.menu-divider:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D2691E, transparent);
    z-index: 0;
}

/* Menu List */
.menu-list {
    margin: 0;
    padding: 0;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
}

.menu-item:hover {
    background: rgba(255, 248, 240, 0.5);
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 10px;
    margin: 0 -15px;
}

.menu-item:last-child {
    border-bottom: none;
}

/* Item Icon */
.item-icon {
    min-width: 50px;
    text-align: center;
    margin-right: 20px;
    color: #D2691E;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFE5CC, #FFD9B3);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(139, 69, 19, 0.1);
}

.fa-fish {
    color: #0C5460;
    background: linear-gradient(135deg, #D1ECF1, #BEE5EB);
}

.fa-utensils {
    color: #721C24;
    background: linear-gradient(135deg, #F8D7DA, #F5C6CB);
}

/* Item Details */
.item-details {
    flex: 1;
    min-width: 0;
}

.item-details h4 {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
}

.price {
    display: block;
    color: #D2691E;
    font-weight: 700;
    font-size: 1.3rem;
    margin-top: 8px;
}

/* Item Action */
.item-action {
    min-width: 130px;
    text-align: right;
}

.btn-order {
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.95rem;
}

.btn-order:hover {
    background: linear-gradient(135deg, #D2691E, #8B4513);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
    color: white;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .menu-card-content {
        padding: 25px !important;
    }
    
    .menu-item {
        flex-wrap: wrap;
        padding: 15px 0;
    }
    
    .item-icon {
        margin-right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .item-details h4 {
        font-size: 1.1rem;
    }
    
    .price {
        font-size: 1.2rem;
    }
    
    .item-action {
        width: 100%;
        text-align: center;
        margin-top: 15px;
        min-width: auto;
    }
    
    .btn-order {
        width: 100%;
        max-width: 200px;
    }
    
    .special-accompaniments {
        padding: 20px;
    }
    
    .accompaniment-title {
        font-size: 1.5rem;
    }
    
    .divider-text {
        font-size: 1.2rem;
        padding: 8px 20px;
    }
    
    .menu-item:hover {
        margin: 0 -10px;
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 576px) {
    .menu-card-content {
        padding: 20px !important;
    }
    
    .special-accompaniments {
        padding: 15px;
    }
    
    .row.justify-content-center > .col-md-6 {
        width: 100%;
        max-width: 100%;
    }
    
    .accompaniment-item {
        margin-bottom: 15px;
    }
}

/* Menu Item Styling */
.menu-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.menu-item:hover {
    background: rgba(255, 248, 225, 0.1);
    padding-left: 10px;
    border-radius: 8px;
}

.menu-item:last-child {
    border-bottom: none;
}

.item-icon {
    min-width: 40px;
    text-align: center;
    margin-right: 15px;
    color: #d35400;
    font-size: 1.2rem;
}

.item-details {
    flex: 1;
}

.item-details h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #343a40;
    font-weight: 500;
}

.price {
    display: block;
    color: #d35400;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 5px;
}

.item-action {
    min-width: 100px;
    text-align: right;
}

.btn-order {
    background: linear-gradient(135deg, #d35400, #e67e22);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-order:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(211, 84, 0, 0.3);
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .accompaniment-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .accompaniment-item .d-flex {
        flex-direction: column;
        margin-bottom: 10px;
    }
    
    .item-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .menu-item {
        flex-wrap: wrap;
    }
    
    .item-action {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
    
    .btn-order {
        width: 100%;
    }
}



/* ================================
   GLOBAL RESPONSIVE FIX
================================ */
*{
  box-sizing:border-box;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

.container{
  width:100%;
  padding:0 15px;
}

/* ================================
   NAVBAR MOBILE
================================ */
.hamburger{
  display:none;
  cursor:pointer;
}

.hamburger span{
  width:25px;
  height:3px;
  background:#fff;
  margin:5px 0;
  display:block;
}

/* Mobile Menu */
@media(max-width:768px){

.nav-links{
  position:absolute;
  top:70px;
  right:0;
  background:#111;
  width:100%;
  flex-direction:column;
  text-align:center;
  display:none;
}

.nav-links li{
  padding:15px 0;
}

.nav-links.active{
  display:flex;
}

.hamburger{
  display:block;
}

.order-btn{
  display:none;
}

}

/* ================================
   BANNER SECTION
================================ */
.banner{
  height:80vh;
}

.banner-content{
  text-align:center;
  padding:20px;
}

.banner-title{
  font-size:3rem;
}

@media(max-width:768px){
  .banner{
    height:60vh;
  }

  .banner-title{
    font-size:2rem;
  }

  .banner-text{
    font-size:14px;
  }

  .banner-btns{
    flex-direction:column;
    gap:12px;
  }
}

/* ================================
   WELCOME SECTION
================================ */
.welcome-content{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

@media(max-width:768px){
  .welcome-content{
    grid-template-columns:1fr;
    text-align:center;
  }

  .welcome-features{
    justify-content:center;
  }
}

/* ================================
   MENU CARDS
================================ */
.menu-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

@media(max-width:992px){
  .menu-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .menu-grid{
    grid-template-columns:1fr;
  }
}

/* ================================
   WHY CHOOSE US
================================ */
.reasons-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

@media(max-width:992px){
  .reasons-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .reasons-grid{
    grid-template-columns:1fr;
  }
}

/* ================================
   GALLERY
================================ */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

@media(max-width:768px){
  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:480px){
  .gallery-grid{
    grid-template-columns:1fr;
  }
}

/* ================================
   TESTIMONIALS
================================ */
.testimonial-content{
  padding:25px;
}

.testimonial-text p{
  font-size:15px;
}

/* ================================
   FOOTER
================================ */
.footer-content{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

@media(max-width:992px){
  .footer-content{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .footer-content{
    grid-template-columns:1fr;
    text-align:center;
  }

  .contact-item{
    justify-content:center;
  }

  .social-links{
    justify-content:center;
  }
}

/* ================================
   FOOTER BOTTOM
================================ */
.footer-bottom{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  text-align:center;
  gap:10px;
}



/* =====================================
   MOBILE RESPONSIVE (MAX WIDTH 768px)
===================================== */
@media (max-width:768px){

/* ---------- CONTAINER ---------- */
.container{
    padding:0 15px;
}

/* ---------- NAVBAR ---------- */
.nav-links{
    position:fixed;
    top:70px;
    left:-100%;
    width:100%;
    background:#111;
    flex-direction:column;
    text-align:center;
    padding:20px 0;
    transition:0.4s;
    z-index:999;
}

.nav-links li{
    margin:12px 0;
}

.nav-links.show{
    left:0;
}

.hamburger{
    display:flex;
}

/* ---------- BANNER ---------- */
.banner{
    height:70vh;
}

.menu-banner .slide{
    height:70vh;
    background-size:cover;
    background-position:center;
}

.banner-title{
    font-size:28px;
}

.banner-btns{
    flex-direction:column;
    gap:12px;
}

.banner-btns a{
    width:100%;
    text-align:center;
}

/* ---------- SECTION HEADERS ---------- */
.section-title{
    font-size:26px;
}

.section-subtitle{
    font-size:14px;
}

/* ---------- MENU CARD ---------- */
.single-vertical-card{
    width:100%;
}

.menu-card-content{
    padding:20px;
}

/* ---------- MENU LIST ITEMS ---------- */
.menu-item{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
    padding:15px;
}

.item-icon{
    font-size:18px;
}

.item-details{
    width:100%;
}

.item-details h4{
    font-size:15px;
    line-height:1.4;
}

.price{
    display:block;
    margin-top:4px;
    font-size:14px;
    font-weight:600;
}

/* ORDER BUTTON */
.item-action{
    width:100%;
}

.btn-order{
    width:100%;
    text-align:center;
}

/* ---------- PRICE OPTIONS (CHICKEN/MUTTON) ---------- */
.price-options{
    display:flex;
    flex-direction:column;
    gap:5px;
    margin-top:5px;
}

.price-option{
    font-size:14px;
}

/* ---------- SPECIAL ACCOMPANIMENTS ---------- */
.accompaniment-item{
    padding:15px;
}

.accompaniment-item h4{
    font-size:15px;
}

/* ---------- FOOTER ---------- */
.footer-content{
    grid-template-columns:1fr;
    text-align:center;
}

.footer-logo{
    justify-content:center;
}

.social-links{
    justify-content:center;
}

.contact-item{
    justify-content:center;
}

.footer-bottom{
    flex-direction:column;
    gap:8px;
    text-align:center;
}

/* ---------- GALLERY / OTHER GRIDS ---------- */
.gallery-grid,
.menu-grid,
.reasons-grid{
    grid-template-columns:1fr;
}

}

/* =====================================
 SMALL PHONES (MAX WIDTH 480px)
===================================== */
@media (max-width:480px){

.banner-title{
    font-size:24px;
}

.section-title{
    font-size:22px;
}

.item-details h4{
    font-size:14px;
}

.btn-primary,
.btn-secondary{
    padding:10px 18px;
    font-size:14px;
}

}



/* =====================================================
   GALLERY PAGE MOBILE RESPONSIVE FIX
===================================================== */

/* GLOBAL FIX */
img{
  max-width:100%;
  height:auto;
}

.container{
  padding-left:15px;
  padding-right:15px;
}

/* ===========================
   NAVBAR MOBILE
=========================== */
@media(max-width:768px){

.nav-links{
  position:fixed;
  top:70px;
  left:-100%;
  width:100%;
  background:#111;
  flex-direction:column;
  align-items:center;
  padding:20px 0;
  transition:0.4s;
  z-index:9999;
}

.nav-links li{
  margin:12px 0;
}

.nav-links.active{
  left:0;
}

.order-btn{
  display:none;
}

.hamburger{
  display:flex;
}

/* ===========================
   BANNER
=========================== */
.banner{
  height:65vh;
}

.banner-title{
  font-size:26px;
}

.banner-text{
  font-size:14px;
  line-height:1.6;
}

/* ===========================
   GALLERY NAV BUTTONS
=========================== */
.gallery-nav{
  position:static;
  flex-direction:column;
}

.gallery-nav-btn{
  width:90%;
  text-align:center;
  padding:10px 15px;
  font-size:14px;
}

/* ===========================
   GALLERY GRID
=========================== */
.gallery-grid{
  grid-template-columns:1fr;
  gap:20px;
}

.gallery-item{
  height:350px;
}

/* ===========================
   CATEGORY TITLE
=========================== */
.category-title{
  font-size:24px;
}

/* ===========================
   MODAL IMAGE
=========================== */
.modal-content img{
  max-height:60vh;
}

.image-description{
  font-size:14px;
}

/* ===========================
   FOOTER
=========================== */
.footer-content{
  grid-template-columns:1fr;
  text-align:center;
}

.footer-logo{
  justify-content:center;
}

.social-links{
  justify-content:center;
}

.contact-item{
  justify-content:center;
}

.footer-bottom{
  flex-direction:column;
  gap:6px;
  text-align:center;
}

}

/* ===========================
   SMALL PHONES
=========================== */
@media(max-width:480px){

.banner-title{
  font-size:22px;
}

.gallery-item{
  height:320px;
}

.category-title{
  font-size:22px;
}

}



/* =====================================================
   CONTACT PAGE MOBILE RESPONSIVE FIX
===================================================== */

/* GLOBAL */
img{
  max-width:100%;
  height:auto;
}

.container{
  padding-left:15px;
  padding-right:15px;
}

/* ===========================
   NAVBAR MOBILE
=========================== */
@media(max-width:768px){

.nav-links{
  position:fixed;
  top:70px;
  left:-100%;
  width:100%;
  background:#111;
  flex-direction:column;
  align-items:center;
  padding:20px 0;
  transition:0.4s;
  z-index:9999;
}

.nav-links li{
  margin:12px 0;
}

.nav-links.active{
  left:0;
}

.order-btn{
  display:none;
}

.hamburger{
  display:flex;
}

/* ===========================
   BANNER
=========================== */
.banner{
  height:65vh;
}

.banner-title{
  font-size:26px;
}

.banner-text{
  font-size:14px;
  line-height:1.6;
}

/* ===========================
   CONTACT CARDS
=========================== */
.contact-grid{
  grid-template-columns:1fr;
}

.contact-card{
  padding:20px;
}

.contact-icon{
  width:60px;
  height:60px;
  font-size:1.3rem;
}

/* ===========================
   MAP
=========================== */
.map-container{
  height:300px;
}

/* ===========================
   CONTACT FORM
=========================== */
.form-row{
  grid-template-columns:1fr;
}

.contact-form-section{
  padding:25px 20px;
}

.form-group input,
.form-group textarea{
  padding:12px;
  font-size:14px;
}

.submit-btn{
  font-size:15px;
  padding:13px;
}

/* ===========================
   CAPTCHA ALIGNMENT
=========================== */
.col-lg-6,
.col-lg-12,
.col-lg-2{
  width:100%;
}

.col-lg-2 img{
  margin-top:10px;
}

/* ===========================
   FOOTER
=========================== */
.footer-content{
  grid-template-columns:1fr;
  text-align:center;
}

.footer-logo{
  justify-content:center;
}

.social-links{
  justify-content:center;
}

.contact-item{
  justify-content:center;
}

.footer-bottom{
  flex-direction:column;
  gap:6px;
  text-align:center;
}

}

/* ===========================
   SMALL PHONES
=========================== */
@media(max-width:480px){

.banner-title{
  font-size:22px;
}

.contact-card h3{
  font-size:18px;
}

}


/* =============================================
   Professional Numbered Menu Items
============================================= */

.menu-list.numbered-menu-list {
    counter-reset: menu-item;          /* Start numbering from 1 */
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.numbered-menu-list .menu-item {
    display: flex;
    align-items: center;
    gap: 16px;                         /* space between number/icon/details */
    padding: 14px 0;
    border-bottom: 1px solid #f0e9e2;  /* subtle warm border – matches biryani theme */
    position: relative;
}

.numbered-menu-list .menu-item::before {
    counter-increment: menu-item;
    content: counter(menu-item);

    /* Professional number badge styling */
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: #8B4513;               /* dark brown – elegant & food-related */
    color: #fff;
    font-family: 'Montserrat', 'Poppins', sans-serif;  /* fallback to Poppins */
    font-weight: 700;                  /* bold for impact */
    font-size: 1.25rem;                /* nice size */
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);  /* subtle depth */
}

/* If you prefer a lighter / outlined style – uncomment this version instead */
/*
.numbered-menu-list .menu-item::before {
    background: transparent;
    color: #8B4513;
    border: 2.5px solid #8B4513;
    font-weight: 600;
    box-shadow: none;
}
*/

.numbered-menu-list .item-icon {
    font-size: 1.8rem;
    color: #b8860b;                    /* golden / warm accent */
    min-width: 40px;
    text-align: center;
    flex-shrink: 0;
}

.numbered-menu-list .item-details {
    flex: 1;
}

.numbered-menu-list .item-details h4 {
    margin: 0 0 4px 0;
    font-size: 1.18rem;
    font-weight: 600;
}

.numbered-menu-list .price {
    font-weight: 700;
    color: #c0392b;                    /* rich red for price */
    font-size: 1.22rem;
}

/* Responsive – stack on very small screens */
@media (max-width: 576px) {
    .numbered-menu-list .menu-item {
        gap: 12px;
        padding: 16px 0;
    }
    .numbered-menu-list .menu-item::before,
    .numbered-menu-list .item-icon {
        order: -1;                     /* number + icon on top */
    }
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 12px; /* space between rows */
}

.email-row {
    display: flex;
    align-items: center;  /* vertical alignment */
    gap: 10px;
}

.email-row i {
    font-size: 18px;
    color:  #f97b04;
    min-width: 20px; /* keeps icons aligned */
}

.email-row p {
    margin: 0;
    font-size: 15px;
    color: #c0b6b6;
    line-height: 1.5;
}