/* =================================
   CSS VARIABLES
   ================================= */
:root {
    /* Colors - Indian/Pakistani restaurant theme */
    --primary-color: #d4602a;
    --primary-dark: #a84320;
    --primary-light: #e88956;
    --secondary-color: #2a7d2e;
    --accent-gold: #f4a623;

    /* Neutral colors */
    --dark: #1a1a1a;
    --dark-gray: #2d2d2d;
    --medium-gray: #666;
    --light-gray: #f5f5f5;
    --white: #ffffff;

    /* Typography */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;

    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    --border-radius: 8px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);

    /* Transitions */
    --transition-speed: 0.3s;
}

/* =================================
   RESET & BASE STYLES
   ================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

ul {
    list-style: none;
}

/* =================================
   LAYOUT COMPONENTS
   ================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 20px auto 0;
}

/* =================================
   NAVIGATION
   ================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: all var(--transition-speed);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand {
    flex-shrink: 0;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0;
}

.brand-tagline {
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: all var(--transition-speed);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
    padding: 8px 16px;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(212, 96, 42, 0.1);
}

/* =================================
   HERO SECTION
   ================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7), rgba(212, 96, 42, 0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn {
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-speed);
    cursor: pointer;
    border: none;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.hero-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.hero-feature-icon {
    font-size: 1.5rem;
}

.hero-feature-text {
    font-weight: 500;
}

/* =================================
   ABOUT SECTION
   ================================= */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--medium-gray);
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.highlight-item {
    background: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform var(--transition-speed);
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.highlight-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.highlight-item p {
    font-size: 0.9rem;
    margin: 0;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* =================================
   SERVICES SECTION
   ================================= */
.services {
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all var(--transition-speed);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* =================================
   MENU SECTION
   ================================= */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.menu-item {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.menu-item-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.menu-item-content {
    padding: 25px;
}

.menu-item-content h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.menu-item-desc {
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-item-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.menu-item-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--primary-light);
    color: var(--white);
}

.menu-item-badge.vegetarian {
    background: var(--secondary-color);
}

.menu-item-badge.halal {
    background: var(--accent-gold);
}

.menu-note {
    background: var(--light-gray);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
}

.menu-note p {
    color: var(--dark);
    margin: 8px 0;
    font-size: 1rem;
}

/* =================================
   GALLERY SECTION
   ================================= */
.gallery {
    background: var(--light-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: var(--white);
    opacity: 0;
    transition: opacity var(--transition-speed);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* =================================
   REVIEWS SECTION
   ================================= */
.reviews-summary {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    margin-bottom: 50px;
    background: var(--light-gray);
    padding: 40px;
    border-radius: var(--border-radius);
}

.rating-overview {
    text-align: center;
    padding: 20px;
}

.rating-score {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.rating-stars {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.rating-count {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.rating-distribution {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bar-label {
    width: 40px;
    font-weight: 600;
    color: var(--dark);
}

.bar-bg {
    flex: 1;
    height: 10px;
    background: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    transition: width 1s ease-out;
}

.bar-count {
    width: 40px;
    text-align: right;
    font-weight: 600;
    color: var(--medium-gray);
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-stars {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.review-date {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.review-text {
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.detail-badge {
    background: var(--light-gray);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--dark);
}

.review-rating-breakdown {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 10px;
}

.review-recommendation {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 10px;
}

.reviews-tags {
    text-align: center;
    background: var(--light-gray);
    padding: 30px;
    border-radius: var(--border-radius);
}

.reviews-tags h3 {
    color: var(--dark);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.tags-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.tag {
    background: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    color: var(--dark);
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed);
}

.tag:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* =================================
   CONTACT SECTION
   ================================= */
.contact {
    background: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.info-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card p {
    color: var(--dark);
    margin: 5px 0;
    line-height: 1.6;
}

.info-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.info-card a:hover {
    text-decoration: underline;
}

.info-note {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-top: 8px;
}

.hours-list {
    margin: 15px 0;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--light-gray);
}

.hours-item span:first-child {
    font-weight: 600;
    color: var(--dark);
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.amenities-list li {
    color: var(--dark);
    font-size: 0.95rem;
}

.contact-map {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-container {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.popular-times {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.popular-times h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.popular-times-chart {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.time-day {
    display: flex;
    align-items: center;
    gap: 15px;
}

.day-label {
    width: 100px;
    font-weight: 600;
    color: var(--dark);
}

.time-bar {
    flex: 1;
    height: 30px;
    background: var(--light-gray);
    border-radius: 5px;
    position: relative;
}

.time-fill {
    position: absolute;
    height: 100%;
    border-radius: 5px;
}

.time-fill.peak {
    background: var(--primary-color);
}

.time-fill.busy {
    background: var(--accent-gold);
}

.chart-note {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-top: 15px;
    text-align: center;
}

/* =================================
   FOOTER
   ================================= */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-light);
    margin-bottom: 10px;
}

.footer-brand p {
    opacity: 0.9;
}

.footer-tagline {
    margin-top: 15px;
    color: var(--accent-gold);
}

.footer-info h4,
.footer-services h4,
.footer-highlights h4 {
    color: var(--primary-light);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-info p,
.footer-services li,
.footer-highlights li {
    margin: 8px 0;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.8;
    margin: 5px 0;
}

.footer-note {
    font-size: 0.9rem;
    color: var(--accent-gold);
}

/* =================================
   LIGHTBOX
   ================================= */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10001;
    transition: transform var(--transition-speed);
}

.lightbox-close:hover {
    transform: scale(1.2);
}

#lightboxImg {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: var(--white);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(212, 96, 42, 0.8);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* =================================
   ANIMATIONS
   ================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =================================
   MEDIA QUERIES
   ================================= */

/* Tablet */
@media (max-width: 1023px) {
    .section-title {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .reviews-summary {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-speed);
        box-shadow: var(--shadow-md);
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-link {
        padding: 15px 20px;
        border-radius: 0;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .hero-features {
        gap: 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

    .about-highlights,
    .amenities-list {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .lightbox-prev,
    .lightbox-next {
        padding: 10px 15px;
        font-size: 2rem;
    }
}