/* 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: #fff5f0;
}

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

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

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

.logo {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
}

.logo-img {
    height: 75px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.logo-slogan {
    color: #FF6B35;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
    white-space: nowrap;
}

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

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 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: #D32F2F;
    color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.nav-link.order-btn:hover {
    background: #B71C1C;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* Announcement Bar */
.announcement {
    background: linear-gradient(90deg, rgba(255,107,53,0.15), rgba(247,147,30,0.15));
    border-top: 1px solid rgba(255,107,53,0.35);
    border-bottom: 1px solid rgba(247,147,30,0.35);
}

.announcement-inner {
    padding: 0.85rem 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.announcement-text {
    color: #D32F2F !important;
    font-weight: 700;
    margin: 0;
    text-align: center !important;
    display: inline-block;
    width: 100%;
    font-size: 1rem;
}

.announcement-text strong {
    color: #D32F2F !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    padding: 4rem 0;
    color: white;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    background-color: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.btn-primary {
    background-color: white;
    color: #FF6B35;
    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: #FF6B35;
}

.hero-card {
    background-color: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hero-card .hours {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-card .min-order {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-order-btn {
    width: 100%;
}

/* Food Slider */
.food-slider {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
}

.food-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: translateX(100%);
}

.food-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.food-slide.prev {
    transform: translateX(-100%);
    z-index: 1;
}

.food-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.food-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 2rem;
    width: 100%;
    text-align: center;
}

.food-overlay h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.food-overlay p {
    font-size: 1.1rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Food slide backgrounds - using Unsplash images */
.pizza-slide {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.4) 0%, rgba(247, 147, 30, 0.4) 100%),
                url('https://images.unsplash.com/photo-1513104890138-7c749659a591?w=800&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.kebab-slide {
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.4) 0%, rgba(255, 107, 53, 0.4) 100%),
                url('https://images.unsplash.com/photo-1603360946369-dc9bb6258143?w=800&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.burger-slide {
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.4) 0%, rgba(255, 107, 53, 0.4) 100%),
                url('https://images.unsplash.com/photo-1568901346375-23c9450c58cd?w=800&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.wrap-slide {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.4) 0%, rgba(211, 47, 47, 0.4) 100%),
                url('https://images.unsplash.com/photo-1626700051175-6818013e1d4f?w=800&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

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

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

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

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

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

.feature-card h3 {
    color: #FF6B35;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
}

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

/* Menu Section */
.menu-section {
    padding: 4rem 0;
    background-color: #fff5f0;
}

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

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

.menu-category {
    margin-bottom: 3rem;
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.category-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.category-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.3));
    border-radius: 15px;
}

.pizza-bg {
    background-image: url('https://images.unsplash.com/photo-1513104890138-7c749659a591?w=800&q=80');
}

.kebab-bg {
    background-image: url('https://images.unsplash.com/photo-1603360946369-dc9bb6258143?w=800&q=80');
}

.wrap-bg {
    background-image: url('https://images.unsplash.com/photo-1626700051175-6818013e1d4f?w=800&q=80');
}

.burger-bg {
    background-image: url('https://images.unsplash.com/photo-1568901346375-23c9450c58cd?w=800&q=80');
}

.hotdog-bg {
    background-image: url('https://images.unsplash.com/photo-1694849217961-7be6f77c3b5f?w=800&q=80');
}

.calzone-bg {
    background-image: url('https://images.unsplash.com/photo-1753656681797-3234c89d6d4d?w=800&q=80');
}

.garlic-bg {
    background-image: url('https://images.unsplash.com/photo-1612948928338-53dd61a5ad5d?w=800&q=80');
}

.category-title {
    font-size: 2rem;
    font-weight: 800;
    padding: 1rem 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.category-title.pizza {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
}

.category-title.kebab {
    background: linear-gradient(135deg, #D32F2F, #B71C1C);
}

.category-title.wraps {
    background: linear-gradient(135deg, #F7931E, #FF6B35);
}

.category-title.burger {
    background: linear-gradient(135deg, #FF6B35, #D32F2F);
}

.category-title.hotdog {
    background: linear-gradient(135deg, #F7931E, #FF6B35);
}

.category-title.calzone {
    background: linear-gradient(135deg, #D32F2F, #FF6B35);
}

.category-title.garlic {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
}

.category-description {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.size-prices {
    text-align: center;
    font-weight: 600;
    color: #FF6B35;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.menu-highlights {
    text-align: center;
    padding: 1.5rem;
    background-color: #fff5f0;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.menu-highlights p {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
}

.category-cta {
    text-align: center;
    margin-top: 1rem;
}

/* Offers Section */
.offers-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
}

.offers-section .section-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.offer-card {
    background-color: white;
    color: #333;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.offer-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, #D32F2F, #FF6B35);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    transform: rotate(15deg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.offer-card h3 {
    color: #FF6B35;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.offer-card p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fff5f0, #ffe5cc);
}

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

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

.about-features {
    display: grid;
    gap: 1.5rem;
}

.about-feature {
    background-color: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-feature h3 {
    color: #FF6B35;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.about-feature p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

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

.contact-section .section-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.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;
}

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

.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;
}

/* 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, #FF6B35, #F7931E);
    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(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

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

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

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

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

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

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0.5rem;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.footer-slogan {
    color: #F7931E;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: #ccc;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.footer-links h4,
.footer-info h4,
.footer-offer h4 {
    color: #FF6B35;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

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

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

.footer-links ul li a:hover {
    color: #FF6B35;
}

.footer-info p {
    color: #ccc;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-info a {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 600;
}

.footer-offer .offer-text {
    color: #F7931E;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.footer-order-btn {
    margin-top: 1rem;
    width: 100%;
}

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

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

/* 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-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .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;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .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;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .menu-category {
        padding: 1rem;
    }
    
    .logo {
        gap: 10px;
    }
    
    .logo-img {
        height: 55px;
    }
    
    .logo-slogan {
        font-size: 0.75rem;
    }
    
    .food-slider {
        height: 300px;
    }
    
    .food-overlay h3 {
        font-size: 1.5rem;
    }
    
    .food-overlay p {
        font-size: 0.95rem;
    }
}

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

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

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

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

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

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-category {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Hover Effects */
.feature-card:hover {
    transform: translateY(-5px);
}

/* Mobile nav - compact layout */
@media (max-width: 680px) {
    .nav-container {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.8rem 1rem;
    }
    
    .logo {
        gap: 8px;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .logo-slogan {
        font-size: 0.7rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.4rem 0.75rem;
        font-size: 0.92rem;
    }
}

