/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #005a9c;
    --primary-hover: #004a82;
    --secondary-color: #2c3e50;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --gradient-1: linear-gradient(135deg, #005a9c 0%, #0074c4 100%);
    --gradient-2: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    --blue-bg: #4db8e8;
    --light-blue: #e6f4ff;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #007a72;
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 90, 156, 0.3);
}

.btn-primary.large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

/* Header Delivery Buttons */
.header-delivery-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
}

/* Divider between main partner and others */
.header-delivery-buttons::after {
    content: "";
    position: absolute;
    left: 50%;
    height: 30px;
    width: 1px;
    background: #ddd;
    transform: translateX(20px);
}

.btn-header-delivery {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    color: var(--white);
}

/* Featured Sauce button - PRIMARY PARTNER STYLE */
.btn-header-delivery.sauce.featured {
    background: linear-gradient(135deg, #ff6b35 0%, #ff5722 100%);
    padding: 14px 40px;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 30px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
    margin-right: 30px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Add "Preferred Partner" badge */
.btn-header-delivery.sauce.featured::before {
    
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff5722;
    color: white;
    font-size: 0.65rem;
    padding: 3px 10px;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0;
    white-space: nowrap;
}

.btn-header-delivery.sauce {
    background: #ff6b35;
}

.btn-header-delivery.sauce.featured:hover {
    background: linear-gradient(135deg, #ff5722 0%, #ff4411 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

/* Secondary partners - smaller and subdued */
.btn-header-delivery.uber,
.btn-header-delivery.doordash {
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
}

/* Uber official black */
.btn-header-delivery.uber {
    background: #000000;
}

.btn-header-delivery.uber:hover {
    background: #333333;
    transform: translateY(-1px);
}

/* DoorDash official red */
.btn-header-delivery.doordash {
    background: #FF3008;
}

.btn-header-delivery.doordash:hover {
    background: #e02807;
    transform: translateY(-1px);
}

.btn-menu {
    background: var(--white);
    color: var(--primary-color);
    padding: 10px 25px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
}

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

.btn-delivery {
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    color: var(--white);
    margin: 10px;
}

/* Primary Sauce button in delivery section */
.btn-delivery.sauce.primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff5722 100%);
    font-size: 1.2rem;
    padding: 20px 50px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    }
    50% {
        box-shadow: 0 8px 35px rgba(255, 107, 53, 0.7);
    }
}

.btn-delivery.sauce.primary:hover {
    background: linear-gradient(135deg, #ff5722 0%, #ff4411 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.7);
}

/* Secondary delivery buttons */
.delivery-buttons.secondary {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.btn-delivery.secondary {
    font-size: 0.9rem;
    padding: 12px 25px;
    font-weight: 500;
    color: var(--white);
}

/* Uber official styling */
.btn-delivery.uber.secondary {
    background: #000000;
}

.btn-delivery.uber.secondary:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* DoorDash official styling */
.btn-delivery.doordash.secondary {
    background: #FF3008;
}

.btn-delivery.doordash.secondary:hover {
    background: #e02807;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 48, 8, 0.3);
}

.btn-delivery.sauce {
    background: #ff6b35;
}

.btn-delivery.sauce:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.btn-delivery.uber {
    background: #000;
}

.btn-delivery.uber:hover {
    background: #333;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-delivery.doordash {
    background: #ff3008;
}

.btn-delivery.doordash:hover {
    background: #e02807;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 48, 8, 0.3);
}

/* Divider */
.divider {
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    margin: 20px 0;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

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

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo img {
    height: 150px;
    width: auto;
    transition: all 0.3s ease;
}

/* When scrolling, make logo smaller */
.header.scrolled .logo img {
    height: 100px;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 8px 16px;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-nav-link {
    display: block;
    padding: 15px 0;
    color: var(--text-dark);
    font-weight: 600;
    border-bottom: 1px solid #eee;
}

.mobile-nav-link:hover {
    background: var(--light-bg);
    color: var(--primary-color);
}

.mobile-delivery-buttons {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-delivery.mobile {
    width: 100%;
    justify-content: center;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
}

.slider-container {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

/* Slider Background Images 
   IMPORTANT: Create a folder structure: img/slides/
   Place your images named: slide1.jpg, slide2.jpg, etc.
   Or change the paths below to match your image locations */
.slide:nth-child(1) { 
    background: url('img/slides/slide1.jpg') center/cover;
    background-color: #005a9c; /* Fallback color if image doesn't load */
}
.slide:nth-child(2) { 
    background: url('img/slides/slide2.jpg') center/cover;
    background-color: #0288d1; /* Fallback color */
}
.slide:nth-child(3) { 
    background: url('img/slides/slide3.jpg') center/cover;
    background-color: #1976d2; /* Fallback color */
}
.slide:nth-child(4) { 
    background: url('img/slides/slide4.jpg') center/cover;
    background-color: #0277bd; /* Fallback color */
}
.slide:nth-child(5) { 
    background: url('img/slides/slide5.jpg') center/cover;
    background-color: #01579b; /* Fallback color */
}
.slide:nth-child(6) { 
    background: url('img/slides/slide6.jpg') center/cover;
    background-color: #1565c0; /* Fallback color */
}
.slide:nth-child(7) { 
    background: url('img/slides/slide7.jpg') center/cover;
    background-color: #0d47a1; /* Fallback color */
}
.slide:nth-child(8) { 
    background: url('img/slides/slide8.jpg') center/cover;
    background-color: #00695c; /* Fallback color */
}
.slide:nth-child(9) { 
    background: url('img/slides/slide9.jpg') center/cover;
    background-color: #d32f2f; /* Fallback color */
}
.slide:nth-child(10) { 
    background: url('img/slides/slide10.jpg') center/cover;
    background-color: #f57c00; /* Fallback color */
}

.slide-content {
    text-align: center;
    color: var(--white);
    padding: 20px;
    animation: slideIn 1s ease-out;
    /* Add text shadow for better readability without overlay */
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9), 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.slide-content {
    text-align: center;
    color: var(--white);
    padding: 20px;
    animation: slideIn 1s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-content h1 {
    font-size: 4rem;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.9), 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.slide-content h2 {
    font-size: 2rem;
    font-weight: 400;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9), 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.slide-content p {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
}

.slide-content .divider {
    background: var(--white);
    margin: 20px auto;
}

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

.slide-content .btn-primary:hover {
    background: #f0f0f0;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10; /* Ensure buttons are above slides */
    pointer-events: none; /* Allow clicks to pass through container */
}

.prev-btn, .next-btn {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: var(--white);
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    pointer-events: all; /* Enable clicks on buttons */
    z-index: 11;
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10; /* Ensure dots are above slides */
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* Menu Section */
.menu-section {
    padding: 80px 0;
    background: var(--light-bg);
}

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

.menu-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.menu-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.menu-item .btn-menu {
    margin: 20px;
    width: calc(100% - 40px);
}

.menu-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.menu-cta h2 {
    color: var(--primary-color);
}

.menu-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    /* To add a background image, uncomment the line below and add your image path */
    /* background: url('img/about-bg.jpg') center/cover; */
}

/* Optional: Add overlay for better text readability when using background image */
.about-section.with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.about-section.with-bg .container {
    position: relative;
    z-index: 2;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    color: var(--primary-color);
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Delivery Section */
.delivery-section {
    padding: 80px 0;
    background: var(--light-bg);
    text-align: center;
}

.delivery-section h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.delivery-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 40px;
}

.delivery-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

/* CTA Banner */
.cta-banner {
    background: var(--gradient-1);
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.cta-banner::before {
    display: none;
}

.cta-banner .container {
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-image img {
    width: 100%;
    border-radius: 15px;
}

.contact-info h2 {
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 15px;
}

.contact-info a {
    color: var(--text-dark);
}

.contact-info a:hover {
    color: var(--primary-color);
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
}

.newsletter-text {
    font-size: 1.1rem;
    margin: 30px 0;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Map Section */
.map-section {
    height: 400px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    background: var(--gradient-2);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-links a {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-divider {
    width: 100px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    margin: 30px auto;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-text a {
    color: var(--white);
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.bottom-nav-item {
    flex: 1;
    padding: 15px;
    text-align: center;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

.bottom-nav-item:hover {
    background: var(--light-bg);
    color: var(--primary-color);
}

.bottom-nav-item i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    /* Header */
    .desktop-only {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Header delivery buttons on tablet */
    .header-delivery-buttons {
        flex-direction: row;
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .header-delivery-buttons::after {
        display: none;
    }
    
    .btn-header-delivery.sauce.featured {
        padding: 10px 25px;
        font-size: 1rem;
        margin-right: 15px;
        flex: 1 0 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .btn-header-delivery.sauce.featured::before {
        font-size: 0.6rem;
        top: -20px;
    }
    
    .btn-header-delivery {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
    
    /* Logo on tablet */
    .logo img {
        height: 100px;
    }
    
    /* Hero */
    .slide-content h1 {
        font-size: 3rem;
    }
    
    /* About */
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    /* Contact */
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    /* Logo on mobile */
    .logo img {
        height: 80px;
    }
    
    /* Hero */
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .prev-btn, .next-btn {
        font-size: 1.5rem;
        padding: 10px 15px;
    }
    
    /* Menu */
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile Bottom Nav */
    .mobile-bottom-nav {
        display: flex;
    }
    
    body {
        padding-bottom: 70px;
    }
    
    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    /* Hero */
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content h2 {
        font-size: 1.2rem;
    }
    
    /* Delivery Buttons */
    .delivery-buttons {
        flex-direction: column;
    }
    
    .btn-delivery {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}