/* ===========================
   Global Styles
   =========================== */
:root {
    --primary-color: #FFD700;        /* Vibrant Golden Yellow */
    --secondary-color: #FF4500;      /* Bright Orange-Red */
    --accent-blue: #1E90FF;          /* Bright Blue */
    --accent-orange: #FF8C00;        /* Deep Orange */
    --accent-red: #DC143C;           /* Crimson Red */
    --dark-color: #1a1a1a;
    --light-color: #FFF8DC;          /* Cornsilk - warm light background */
    --text-color: #2c2c2c;
    --border-radius: 10px;
    --box-shadow: 0 5px 20px rgba(255,69,0,0.2);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

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

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

/* ===========================
   Navigation Bar
   =========================== */
.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: var(--transition);
    min-height: 70px;
    z-index: 1030;
}

.navbar.scrolled {
    background-color: rgba(26, 26, 26, 0.95) !important;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    background: linear-gradient(135deg, #FFD700 0%, #1E90FF 50%, #ff00ae 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Bebas Neue', cursive;
    font-size: 2.3rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(255, 140, 0, 0.3);
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 10px;
    padding: 8px 15px !important;
    border-radius: 5px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
    color: var(--dark-color) !important;
    border: 2px solid #FF4500;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.4);
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #1a1a1a;
    border-top: 8px solid #FF4500;
    border-bottom: 8px solid #1E90FF;
    overflow: hidden;
    margin-top: 0;
    padding-top: 70px;
}

/* Removed - using carousel background images instead */

/* Hero overlay now handled by carousel item gradients */
.hero-overlay {
    display: none;
}

.carousel {
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 70px);
}

.carousel-inner,
.carousel-item {
    height: 100%;
    min-height: calc(100vh - 70px);
}

.carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* ===========================
   Carousel Background Images
   =========================== */
/* 
   TO USE YOUR OWN IMAGES:
   1. Create folder: images/hero/
   2. Add 3 images: slide1.jpg, slide2.jpg, slide3.jpg
   3. Recommended size: 1920x1080px
   4. Replace URLs below with: url('../images/hero/slide1.jpg')
*/

/* Carousel Slide 1 - Traditional Punjabi Food */
.carousel-item:nth-child(1) {
    background-image:
                      url('../img/hero/shutter-platter.jpg')
}

/* Carousel Slide 2 - Dal Makhani & Butter Chicken */
.carousel-item:nth-child(3) {
    background-image:
                      url('../img/hero/Garlic-Chicken-Tikka.jpg?w=1920&h=1080&fit=crop');
    /* For your own image: url('../images/hero/slide2.jpg') */
}

/* Carousel Slide 3 - Dhaba Style Tandoor */
.carousel-item:nth-child(2) {
    background-image:
                      url('../img/hero/Dal-Makhani.jpg?w=1920&h=1080&fit=crop');
    /* For your own image: url('../images/hero/slide3.jpg') */
}

.carousel-indicators {
    bottom: 30px;
    z-index: 15;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #FFD700;
    border: 2px solid #FF4500;
    opacity: 0.7;
}

.carousel-indicators button.active {
    opacity: 1;
    background-color: #FF4500;
    border-color: #FFD700;
    transform: scale(1.2);
}

.carousel-control-prev,
.carousel-control-next {
    z-index: 15;
    width: 5%;
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    padding: 40px 20px;
    animation: fadeInUp 1s ease;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-family: 'Bebas Neue', cursive;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.8),
                 0 0 30px rgba(255,215,0,0.5);
    letter-spacing: 3px;
    background: linear-gradient(135deg, #FFD700 0%, #1E90FF 50%, #ff00ae 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.8));
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFD700;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8),
                 0 0 20px rgba(255, 140, 0, 0.6);
    background: rgba(0,0,0,0.3);
    padding: 10px 30px;
    border-radius: 10px;
    display: inline-block;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.9);
    background: rgba(0,0,0,0.4);
    padding: 15px 25px;
    border-radius: 8px;
    display: inline-block;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.animate-text {
    animation: slideInLeft 1s ease;
}

/* ===========================
   Stats Section
   =========================== */
.stats-section {
    position: relative;
    background: linear-gradient(135deg, #1E90FF 0%, #00BFFF 100%) !important;
    border-top: 5px solid #FFD700;
    border-bottom: 5px solid #FF4500;
}

.stat-item {
    padding: 20px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item h2 {
    font-size: 3rem;
    font-weight: 700;
    margin: 10px 0;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* ===========================
   Section Headers
   =========================== */
.section-header {
    margin-bottom: 3rem;
}

.section-header h6 {
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.title-underline {
    width: 100px;
    height: 5px;
    background: linear-gradient(to right, #FFD700 0%, #FF8C00 50%, #FF4500 100%);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.5);
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
}

/* ===========================
   About Section
   =========================== */
.about-section {
    padding: 80px 0;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    border-radius: var(--border-radius);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
    color: var(--dark-color);
    padding: 30px;
    border-radius: 50%;
    text-align: center;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.5);
    border: 5px solid #FF4500;
    animation: pulse 2s ease-in-out infinite;
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
}

.about-features .feature-item {
    font-size: 1.05rem;
    display: flex;
    align-items: center;
}

.about-features .feature-item i {
    font-size: 1.2rem;
}

.about-features .fa-check-circle {
    color: #32CD32 !important;
    text-shadow: 2px 2px 4px rgba(50, 205, 50, 0.3);
}

/* ===========================
   Menu Section
   =========================== */
.menu-section {
    padding: 80px 0;
}

.menu-filter {
    margin-bottom: 40px;
    position: sticky;
    top: 70px;
    z-index: 100;
    background: linear-gradient(135deg, #FFF8DC 0%, #ffffff 100%);
    padding: 20px 0;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.menu-filter .btn {
    margin: 5px;
    padding: 10px 25px;
    border-width: 3px;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    border-color: #FF8C00;
    color: #FF4500;
}

.menu-filter .btn.active,
.menu-filter .btn:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
    border-color: #FF4500;
    color: var(--dark-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
}

.menu-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.3);
    transition: var(--transition);
    background: #fff;
    border: 3px solid transparent;
    background-clip: padding-box;
}

.menu-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 35px rgba(255, 69, 0, 0.4);
    border-color: #FFD700;
}

.menu-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

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

.veg-badge,
.nonveg-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.bestseller-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #FF4500 0%, #DC143C 100%);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 2px solid #FFD700;
    box-shadow: 0 3px 10px rgba(220, 20, 60, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-content {
    padding: 20px;
}

.menu-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.menu-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.menu-price {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FF4500 0%, #DC143C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===========================
   Testimonials Section
   =========================== */
.testimonials-section {
    background: linear-gradient(135deg, #1E90FF 0%, #00BFFF 50%, #1E90FF 100%);
    position: relative;
    border-top: 6px solid #FFD700;
    border-bottom: 6px solid #FF4500;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.2);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.8;
}

.customer-name {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.customer-location {
    color: #ddd;
    font-size: 0.9rem;
}

/* ===========================
   Booking Section
   =========================== */
.booking-section {
    padding: 80px 0;
}

.booking-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 30px rgba(255, 140, 0, 0.3);
    border: 4px solid transparent;
    border-image: linear-gradient(135deg, #FFD700, #FF8C00, #FF4500) 1;
}

.booking-form .form-control,
.booking-form select {
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.booking-form .form-control:focus,
.booking-form select:focus {
    border-color: #FF8C00;
    box-shadow: 0 0 0 0.3rem rgba(255, 140, 0, 0.4);
    background-color: #FFFACD;
}

.booking-features .feature-item {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FF4500 0%, #FF8C00 50%, #FFD700 100%);
    border-top: 6px solid #1E90FF;
    border-bottom: 6px solid #DC143C;
}

.cta-section h2,
.cta-section p {
    color: #1a1a1a !important;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.cta-section h2 {
    font-size: 2.5rem;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--dark-color);
    border-top: 8px solid transparent;
    border-image: linear-gradient(to right, #FFD700, #FF8C00, #FF4500, #1E90FF, #FFD700) 1;
}

.footer h4, .footer h5 {
    background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-links a {
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color) !important;
    transform: translateY(-5px);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ddd;
    transition: var(--transition);
}

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

.footer-contact li {
    margin-bottom: 15px;
    color: #ddd;
}

.newsletter-form .form-control {
    border: none;
    border-radius: 25px 0 0 25px;
    padding: 12px 20px;
}

.newsletter-form .btn {
    border-radius: 0 25px 25px 0;
}

/* ===========================
   Scroll to Top Button
   =========================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
    color: var(--dark-color);
    border: 3px solid #FF4500;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.5);
    transition: var(--transition);
    z-index: 1000;
    animation: pulse 2s ease-in-out infinite;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #FF4500 0%, #DC143C 100%);
    color: #fff;
    border-color: #FFD700;
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.6);
}

.scroll-to-top.show {
    display: flex;
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 140, 0, 0.5);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 12px 35px rgba(255, 69, 0, 0.7);
    }
}

@keyframes colorShift {
    0% {
        border-color: #FFD700;
    }
    25% {
        border-color: #FF8C00;
    }
    50% {
        border-color: #FF4500;
    }
    75% {
        border-color: #1E90FF;
    }
    100% {
        border-color: #FFD700;
    }
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .experience-badge {
        width: 120px;
        height: 120px;
        padding: 20px;
    }
    
    .badge-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .stat-item h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .booking-form-wrapper {
        padding: 25px;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: 15px;
        right: 15px;
    }
    
    .badge-number {
        font-size: 1.5rem;
    }
    
    .badge-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .menu-filter .btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
}

/* ===========================
   Decorative Truck Art Elements
   =========================== */
.section-header h2::before,
.section-header h2::after {
    content: '◆';
    color: #FF4500;
    margin: 0 15px;
    font-size: 0.8em;
}

.about-section,
.menu-section {
    border-top: 5px solid transparent;
    border-image: linear-gradient(to right, #FFD700, #FF8C00, #FF4500, #1E90FF, #FFD700) 1;
}

/* ===========================
   Utility Classes
   =========================== */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%) !important;
}

.btn-warning {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: 3px solid #FF4500;
    color: var(--dark-color);
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 25px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-warning:hover {
    background: linear-gradient(135deg, #FF8C00 0%, #FF4500 100%);
    border-color: #FFD700;
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.5);
}

.btn-outline-light {
    border-width: 2px;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: linear-gradient(135deg, #1E90FF 0%, #00BFFF 100%);
    border-color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.4);
}

/* ===========================
   Vibrant Decorative Elements
   =========================== */
.stat-item i {
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-item h2 {
    color: #FFD700;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5),
                 0 0 20px rgba(255, 215, 0, 0.5) !important;
}

.section-header h6 {
    color: #FF4500 !important;
    font-weight: 700;
    text-transform: uppercase;
}

/* Colorful icon styling */
.fa-fire {
    color: #FF4500 !important;
}

.fa-leaf {
    color: #32CD32 !important;
}

.fa-drumstick-bite {
    color: #DC143C !important;
}

.fa-bread-slice {
    color: #FFD700 !important;
}

.fa-bowl-rice {
    color: #FF8C00 !important;
}

.fa-glass-whiskey {
    color: #1E90FF !important;
}

.fa-ice-cream {
    color: #FF69B4 !important;
}
