:root {
    --primary-color: #df1e10;
    --secondary-color: #333;
    --background-color: #f3f3f3;
    --text-color: #333;
    --spacing: 2rem;
}

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

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

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--spacing);
    background-color: var(--background-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo a {
    text-decoration: none;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.phone-number {
    background-color: var(--background-color);
    color: black !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

/* Hero Slider Styles */
.hero-slider {
    margin-top: 4rem;
    position: relative;
    height: 70vh;
    overflow: hidden;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 20%;
    left: var(--spacing);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.slider-controls button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Featured Items Styles */
.featured-items {
    padding: var(--spacing);
    background-color: #f9f9f9;
}

.featured-items h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

.item h3 {
    padding: 1rem;
    color: var(--secondary-color);
}

.item p {
    padding: 0 1rem 1rem;
    color: #666;
}

/* Info Section Styles */
.info-section {
    padding: var(--spacing);
    background-color: white;
    text-align: center;
}

.location h2 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.location p {
    margin-bottom: 0.5rem;
}

.location i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Footer Styles */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: var(--spacing);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-info h3,
.footer-links h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

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

/* About Page Styles */
.about-page {
    padding-top: 80px;
}

.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/about-hero.webp');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 var(--spacing);
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.our-story {
    padding: var(--spacing);
    background-color: #f9f9f9;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-content h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.our-values {
    padding: var(--spacing);
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.value-item {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-page {
    padding-top: 80px;
}

.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/contact-hero.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 var(--spacing);
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info {
    padding: var(--spacing);
    background-color: #f9f9f9;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-details {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-form {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

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

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #ff3333;
}

.map-section {
    padding: var(--spacing);
    text-align: center;
}

.map-section h2 {
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Order Online Link Styles */
.order-online {
    background-color: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.order-online:hover {
    text-decoration: underline;
}

/* CTA Button Styles */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #ff2b2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Mobile Styles for Order Button */
@media (max-width: 768px) {
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* App Download Section */
.app-download {
    background-color: #f8f8f8;
    padding: 2rem 0;
    text-align: center;
    border-bottom: 1px solid #eee;
    width: 100%;
}

.app-download .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.app-download h3 {
    margin-bottom: 2rem;
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: bold;
}

.store-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding-top: 5rem;
}

.app-badge {
    transition: transform 0.3s ease;
    display: inline-block;
    max-width: 240px;
    width: 100%;
}

.app-badge:hover {
    transform: translateY(-2px);
}

.app-badge img {
    width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .app-download {
        padding: 2.5rem 0;
        background-color: #fff;
    }
    
    .app-download h3 {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }

    .store-badges {
        gap: 2rem;
        flex-direction: column;
    }
    
    .app-badge {
        max-width: 220px;
        width: 100%;
    }
    
    .app-badge img {
        max-height: none;
        height: auto;
        width: 100%;
    }
}

/* Opening Hours Section */
.opening-hours {
    padding: 4rem 0;
    background-color: var(--background-color);
    border-top: 1px solid #eee;
}

.hours-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hours-content h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-weight: bold;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hours-item .days {
    font-weight: bold;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.hours-item .time {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .opening-hours {
        padding: 3rem 0;
    }

    .hours-content h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .hours-item {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hours-item .days,
    .hours-item .time {
        font-size: 1.1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Section Spacing */
section[id] {
    scroll-margin-top: 80px; /* Height of fixed navbar */
}

/* Active Navigation Link */
.nav-links a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .burger {
        display: block;
        cursor: pointer;
        margin-right: 1rem;
        z-index: 1000;
    }

    .burger div {
        width: 25px;
        height: 3px;
        background-color: var(--secondary-color);
        margin: 5px;
        transition: all 0.3s ease;
    }

    .nav-links {
        display: none;
        position: fixed;
        right: 0;
        height: calc(100vh - 80px);
        top: 80px;
        background-color: var(--background-color);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        padding-top: 2rem;
        z-index: 999;
    }

    .nav-active {
        display: flex !important;
    }

    .nav-links li {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        font-size: 1.2rem;
        width: 100%;
        display: block;
        padding: 1rem 0;
    }

    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Ensure phone number button stays visible in mobile menu */
    .nav-links .phone-number {
        margin: 1rem auto;
        display: inline-block;
        padding: 0.8rem 1.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-slider {
        height: 50vh;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .items-grid {
        grid-template-columns: 1fr;
    }

    .about-hero,
    .contact-hero {
        height: 200px;
    }

    .about-hero h1,
    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-details,
    .contact-form {
        padding: 1.5rem;
    }
}
