:root {
    --primary-color: #d32f2f;
    --secondary-color: #ffa000;
    --dark-bg: #1a1a1a;
    --light-bg: #f5f5f5;
    --text-dark: #333;
    --text-light: #fff;
    --gradient-primary: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    background: var(--gradient-dark) !important;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.navbar.scrolled {
    padding: 0.5rem 0;
}

.navbar-brand .logo {
    height: 70px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    margin: 0 0.5rem;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.btn-order {
    background: var(--gradient-primary) !important;
    color: var(--text-light) !important;
    border-radius: 25px;
    padding: 0.5rem 1.5rem !important;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(26,26,26,0.9) 0%, rgba(211,47,47,0.8) 100%), 
                url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?w=1600') center/cover no-repeat;
    color: var(--text-light);
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease;
}

.hero-section .lead {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

.btn-outline-light {
    border: 2px solid var(--text-light);
    color: var(--text-light);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Section Styling */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* About Section */
.about-section {
    background: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-bg);
}

.about-image-grid img {
    border-radius: 15px;
    transition: all 0.3s ease;
}

.about-image-grid img:hover {
    transform: scale(1.05);
}

/* Menu Section */
.menu-section {
    background: white;
}

.menu-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.menu-card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.1);
}

.menu-card-content {
    padding: 1.5rem;
    text-align: center;
}

.menu-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 0.5rem;
}

.menu-card-content p {
    color: #666;
}

/* App Section */
.app-section {
    background: var(--gradient-dark);
    color: var(--text-light);
}

.app-image {
    max-width: 400px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.btn-app {
    background: white;
    color: var(--dark-bg);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}

.btn-app:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

.btn-app i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

/* Hours Section */
.hours-section {
    background: var(--light-bg);
}

.hours-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item:hover {
    background: var(--light-bg);
    padding-left: 1.5rem;
}

.hours-item .day {
    font-weight: 600;
    color: var(--dark-bg);
}

.hours-item .time {
    color: var(--primary-color);
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    background: white;
}

.contact-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.3);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: white;
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-card:hover .contact-icon i {
    color: var(--primary-color);
}

.contact-card h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-card:hover a {
    color: white;
}

.payment-info {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 15px;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--primary-color);
    color: var(--text-light);
}

.newsletter-form .form-control {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 30px 0 0 30px;
}

.newsletter-form .btn {
    border-radius: 0 30px 30px 0;
    padding: 0.75rem 2rem;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
}

.footer a {
    color: var(--text-light);
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-info {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .app-buttons .btn-app {
        display: block;
        width: 100%;
        margin-right: 0 !important;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations on Scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Google Maps Section */
.map-container {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.map-wrapper {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.map-wrapper:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    transform: translateY(-5px);
}

.map-wrapper iframe {
    display: block;
    border-radius: 15px;
}

.contact-card .btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.contact-card .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

.contact-card:hover .btn-outline-primary {
    border-color: white;
    color: white;
}

.contact-card:hover .btn-outline-primary:hover {
    background: white;
    color: var(--primary-color);
}

/* Payment Info Enhancement */
.payment-info {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.payment-info h4 {
    color: var(--dark-bg);
    font-weight: 700;
}

/* Responsive Map */
@media (max-width: 768px) {
    .map-wrapper iframe {
        height: 300px;
    }
    
    .map-container {
        padding: 1rem;
    }
}


