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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff9f0;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #d32f2f, #f57c00);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* App Downloads Banner */
.app-banner {
    background-color: #1a1a1a;
    padding: 1rem 0;
    border-bottom: 2px solid #f57c00;
}

.app-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.app-banner-text {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.app-banner .app-badges {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.app-banner .app-badge-img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

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

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

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

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

.logo-text {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-family: 'Playfair Display', serif;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-link:hover {
    background-color: rgba(255,255,255,0.2);
    color: white;
}

.nav-link.order-btn {
    background-color: #ff6f00;
    color: white;
    font-weight: 700;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.nav-link.order-btn:hover {
    background-color: #e65100;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.phone-btn {
    background-color: #ff6f00;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.phone-btn:hover {
    background-color: #e65100;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: opacity 1s ease-in-out, visibility 0s linear 1s;
    -webkit-transition: opacity 1s ease-in-out, visibility 0s linear 1s;
    -moz-transition: opacity 1s ease-in-out, visibility 0s linear 1s;
    -o-transition: opacity 1s ease-in-out, visibility 0s linear 1s;
}

.hero-slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 2;
    transition: opacity 1s ease-in-out, visibility 0s linear 0s;
    -webkit-transition: opacity 1s ease-in-out, visibility 0s linear 0s;
    -moz-transition: opacity 1s ease-in-out, visibility 0s linear 0s;
    -o-transition: opacity 1s ease-in-out, visibility 0s linear 0s;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    display: block;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.4), rgba(245, 124, 0, 0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7), 0 0 20px rgba(0,0,0,0.5);
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    font-weight: 600;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7), 0 0 15px rgba(0,0,0,0.4);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7), 0 0 10px rgba(0,0,0,0.4);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

/* Hero Slider Controls */
.hero-slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.slider-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #d32f2f;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    line-height: 1;
}

.slider-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

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

.dot.active {
    background-color: white;
    width: 30px;
    border-radius: 5px;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: white;
    color: #d32f2f;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: #d32f2f;
}

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

.btn-secondary:hover {
    background-color: white;
    color: #d32f2f;
}

/* App Badges (used in contact section) */
.app-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.app-badge {
    display: inline-block;
    transition: transform 0.3s ease;
}

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

.app-badge-img {
    height: 60px;
    width: auto;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #d32f2f;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    font-family: 'Playfair Display', serif;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background-color: #fff9f0;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #d32f2f;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.features-cta {
    text-align: center;
}

/* Menu Section */
.menu-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fff9f0, #ffe0b2);
}

.menu-cta {
    text-align: center;
    margin-bottom: 3rem;
}

.menu-order-btn {
    font-size: 1.3rem;
    padding: 1.2rem 2.5rem;
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.3);
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.menu-category-card {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.menu-category-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d32f2f;
    margin-bottom: 1rem;
}

.menu-category-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.category-link {
    color: #f57c00;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.category-link:hover {
    color: #d32f2f;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background-color: white;
}

.about-content {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.about-text strong {
    color: #d32f2f;
    font-weight: 700;
}

.about-cta {
    text-align: center;
}

/* Reviews Section */
.reviews-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fff9f0, #ffe0b2);
}

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

.review-card {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.review-stars {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1.05rem;
}

.review-author {
    font-weight: 600;
    color: #d32f2f;
}

.reviews-cta {
    text-align: center;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #d32f2f, #f57c00);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-map {
    background-color: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.contact-map h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    margin-bottom: 1rem;
}

.map-container iframe {
    border-radius: 10px;
    width: 100%;
    height: 300px;
}

.map-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.map-link-btn {
    display: inline-block;
    background-color: white;
    color: #d32f2f;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.map-link-btn:hover {
    background-color: #fff9f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.contact-cta {
    background-color: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.contact-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.app-downloads-contact {
    margin-top: 2rem;
}

.app-downloads-contact .app-badges {
    justify-content: center;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer-logo h3 {
    color: #f57c00;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.footer-logo p {
    color: #ccc;
    font-style: italic;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: #f57c00;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

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

/* Floating Order Button */
.floating-order-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #d32f2f, #f57c00);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(211, 47, 47, 0.5);
    color: white;
}

.floating-icon {
    font-size: 1.3rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(211, 47, 47, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(211, 47, 47, 0.6), 0 0 0 10px rgba(211, 47, 47, 0.1);
    }
    100% {
        box-shadow: 0 8px 25px rgba(211, 47, 47, 0.4);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-slider-controls {
        bottom: 20px;
        padding: 0.6rem 1rem;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        width: 25px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-categories {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-map {
        order: -1;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .floating-order-btn {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        padding: 0.8rem 1.2rem;
        font-size: 1rem;
    }
    
    .floating-text {
        display: none;
    }
    
    .floating-icon {
        font-size: 1.5rem;
    }
    
    .app-banner-container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .app-banner-text {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .app-banner .app-badge-img {
        height: 35px;
    }
    
    .app-badge-img {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .app-banner-text {
        font-size: 0.85rem;
    }
    
    .app-banner .app-badge-img {
        height: 30px;
    }
    
    .hero {
        height: 70vh;
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .app-badge-img {
        height: 45px;
    }
    
    .hero-slider-controls {
        bottom: 15px;
        padding: 0.5rem 0.8rem;
        gap: 0.5rem;
    }
    
    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }
    
    .dot {
        width: 6px;
        height: 6px;
    }
    
    .dot.active {
        width: 20px;
    }
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #fff9f0;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #d32f2f, #f57c00);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #b71c1c, #e65100);
}
