/* BurgerBlast - Fast Food Restaurant Styles */

:root {
    --primary-red: #dc3545;
    --primary-yellow: #ffc107;
    --dark: #212529;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 76px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark) 0%, #2c3e50 100%);
    min-height: 100vh;
    padding: 80px 0;
}

.hero-image .burger-placeholder {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #ff9800 100%);
    width: 350px;
    height: 350px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(255, 193, 7, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Feature Boxes */
.feature-box {
    background: white;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
}

/* Menu Cards */
.menu-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-10px);
}

.menu-img {
    height: 180px;
}

/* Specials */
.special-image {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-block;
}

/* About */
.about-image {
    border-radius: 20px;
}

/* Footer */
.social-links a {
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-yellow) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 60px 0;
    }

    .hero-image .burger-placeholder {
        width: 250px;
        height: 250px;
        margin-top: 40px;
    }

    .display-3 {
        font-size: 2.5rem;
    }
}
