/* ============================
   CSS VARIABLES - EASY CUSTOMIZATION
   ============================ */
:root {
    --primary-color: #FF6B35;
    --primary-dark: #E55A2B;
    --secondary-color: #2D2D2D;
    --accent-color: #FFB800;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --bg-light: #F9F9F9;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
    --shadow-hover: 0 8px 30px rgba(255, 107, 53, 0.25);
    --transition: all 0.3s ease;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --border-radius: 12px;
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Bebas Neue', cursive;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* ============================
   UTILITY CLASSES
   ============================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: var(--spacing-md);
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.35);
}

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

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

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

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

/* ============================
   NAVIGATION
   ============================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 15px rgba(255, 107, 53, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--secondary-color);
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.75rem 1.5rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: var(--transition);
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
    height: 100vh;
    /* REPLACE: Add your hero background image path below */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('images/heroimage.jpg') center/cover no-repeat;
    /* Example: url('images/hero-background.jpg') */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);

    /* Gradient wave effect */
    background: linear-gradient(90deg,
            #FFFFFF 0%,
            #FFFFFF 30%,
            #FF6B35 50%,
            #FFFFFF 70%,
            #FFFFFF 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: waveColor 8s linear infinite;
}

@keyframes waveColor {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Fallback for unsupported browsers */
@supports not (-webkit-background-clip: text) {
    .hero-title {
        color: #FFFFFF;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================
   ORDER ONLINE SECTION
   ============================ */
.order-online {
    background: var(--bg-light);
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.delivery-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
    transition: var(--transition);
}

.delivery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.25);
}

.delivery-logo {
    height: 60px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    /* Add this */
}

.delivery-logo img {
    max-height: 100%;
    max-width: 100%;
    /* Add this */
    width: auto;
    object-fit: contain;
}

.delivery-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
    transition: var(--transition);
    display: flex;
    /* Add this */
    flex-direction: column;
    /* Add this */
    min-height: 350px;
    /* Add this - adjust value as needed */
}

.delivery-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 1px;
    min-height: 60px;
    /* Add this to keep titles aligned */
    display: flex;
    /* Add this */
    align-items: center;
    /* Add this */
    justify-content: center;
    /* Add this */
}

.delivery-card p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
    /* Add this to push button to bottom */
}

.delivery-btn {
    width: 100%;
    padding: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.grubhub-btn {
    background: #F63440;
    color: var(--white);
}

.grubhub-btn:hover {
    background: #D42A35;
    transform: scale(1.05);
}

.doordash-btn {
    background: #FF3008;
    color: var(--white);
}

.doordash-btn:hover {
    background: #E02A07;
    transform: scale(1.05);
}

.ubereats-btn {
    background: #06C167;
    color: var(--white);
}

.ubereats-btn:hover {
    background: #05A857;
    transform: scale(1.05);
}

/* ============================
   ABOUT SECTION
   ============================ */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
    letter-spacing: 2px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.about-highlights {
    list-style: none;
    margin-top: var(--spacing-md);
}

.about-highlights li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-highlights li::before {
    content: '🔥';
    font-size: 1.5rem;
}

/* ============================
   MENU SECTION
   ============================ */
.menu {
    background: var(--bg-light);
}

.menu-category {
    margin-bottom: var(--spacing-xl);
}

.menu-category-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 2px;
    margin-top: var(--spacing-lg);
}

.menu-category-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: var(--spacing-md);
}

.menu-item {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.25);
}

.menu-item-image {
    height: 250px;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.menu-item-content {
    padding: 1.5rem;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.menu-item-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

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

.menu-item-description {
    color: var(--text-light);
    line-height: 1.6;
}

.menu-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* ============================
   LOCATION SECTION
   ============================ */
.location {
    background: var(--white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.schedule-card {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
}

.schedule-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
    letter-spacing: 1px;
}

.location-address {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: var(--spacing-md);
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.1);
}

.address-title {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.address-text {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.1);
}

.schedule-day {
    font-weight: 600;
    color: var(--text-dark);
}

.schedule-time {
    color: var(--text-light);
}

.schedule-location {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-style: italic;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
    height: 100%;
    min-height: 400px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-placeholder {
    text-align: center;
    color: var(--text-light);
}

.map-placeholder::before {
    content: '📍';
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

/* ============================
   REVIEWS SECTION - CAROUSEL
   ============================ */
.reviews {
    background: var(--white);
}

.reviews-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.reviews-track {
    display: flex;
    overflow: hidden;
    position: relative;
}

.review-card {
    min-width: 100%;
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
    transition: var(--transition);
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
}

.review-card.active {
    opacity: 1;
    position: relative;
}

.review-card:hover {
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.25);
}

.stars {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.review-text {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: center;
    min-height: 120px;
}

.reviewer {
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    font-size: 1rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.carousel-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: var(--spacing-lg);
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #D0D0D0;
    cursor: pointer;
    transition: var(--transition);
}

.indicator-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.4);
}

.indicator-dot:hover {
    background: var(--primary-dark);
}

/* ============================
   CTA BANNER
   ============================ */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
}

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 2px;
}

.cta-banner p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
}

.cta-banner .btn {
    background: var(--white);
    color: var(--primary-color);
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

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

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.contact-form {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-info {
    padding: var(--spacing-md);
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
    letter-spacing: 1px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
}

.contact-item-icon {
    font-size: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: var(--spacing-md);
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.social-link:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* ============================
   FOOTER
   ============================ */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

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

.footer-section h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ============================
   SCROLL ANIMATIONS
   ============================ */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================
   RESPONSIVE DESIGN
   ============================ */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .logo-image {
        height: 40px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

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

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

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

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

    .reviews-carousel {
        padding: 0 50px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

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

    .delivery-grid {
        grid-template-columns: 1fr;
    }

    .reviews-carousel {
        padding: 0 40px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .review-text {
        font-size: 1rem;
        min-height: 140px;
    }
}

/* Logo Wrapper for stacking text */
.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    letter-spacing: 2px;
    line-height: 1;
}

.logo-location {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: -2px;
}

/* Mobile adjustments */
@media (max-width: 968px) {
    .logo-text {
        font-size: 1.5rem;
    }

    .logo-location {
        font-size: 0.65rem;
    }
}