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

:root {
    --orange: #FF6B35;
    --orange-dark: #E55A2B;
    --orange-light: #FF8C5A;
    --black: #0a0a0a;
    --dark-bg: #1a1a1a;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    background: var(--black);
    overflow-x: hidden;
    position: relative;
    background-image: url('attached_assets/generated_images/Brazilian_barbecue_skewers_background_66ac3470.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(10, 10, 10, 0.85) 0%, 
        rgba(26, 26, 26, 0.75) 50%, 
        rgba(10, 10, 10, 0.9) 100%
    );
    z-index: 1;
    animation: overlayPulse 8s ease-in-out infinite;
}

@keyframes overlayPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.95; }
}

.fire-particles {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    bottom: -10%;
    width: 4px;
    height: 40px;
    background: linear-gradient(to top, 
        var(--orange) 0%, 
        var(--orange-light) 50%, 
        transparent 100%
    );
    border-radius: 50%;
    opacity: 0;
    animation: riseUp 4s ease-in infinite;
    filter: blur(1px);
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; animation-delay: 1.2s; }
.particle:nth-child(3) { left: 40%; animation-delay: 0.6s; }
.particle:nth-child(4) { left: 55%; animation-delay: 1.8s; }
.particle:nth-child(5) { left: 70%; animation-delay: 0.3s; }
.particle:nth-child(6) { left: 85%; animation-delay: 1.5s; }
.particle:nth-child(7) { left: 15%; animation-delay: 2.1s; }
.particle:nth-child(8) { left: 60%; animation-delay: 0.9s; }

@keyframes riseUp {
    0% {
        bottom: -10%;
        opacity: 0;
        transform: translateX(0) scale(1);
    }
    20% {
        opacity: 0.8;
    }
    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(30px) scale(0.5);
    }
}

.main-container {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 20px;
}

.glass-card {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-wrapper {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, 
        rgba(255, 107, 53, 0.3) 0%, 
        rgba(255, 107, 53, 0.1) 30%, 
        transparent 70%
    );
    animation: glowPulse 3s ease-in-out infinite;
    filter: blur(40px);
}

@keyframes glowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.5;
    }
    25% {
        transform: translate(-50%, -50%) scale(1.3) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5) rotate(180deg);
        opacity: 1;
    }
    75% {
        transform: translate(-50%, -50%) scale(1.3) rotate(270deg);
        opacity: 0.8;
    }
}

.logo {
    position: relative;
    max-width: 280px;
    width: 100%;
    height: auto;
    animation: logoRotate3D 6s ease-in-out infinite;
    transform-style: preserve-3d;
    cursor: pointer;
    transition: all 0.5s ease;
}

@keyframes logoRotate3D {
    0% {
        transform: perspective(1200px) rotateY(0deg) rotateZ(0deg) translateY(0px) scale(1);
        filter: drop-shadow(0 0 25px rgba(255, 107, 53, 0.5)) brightness(1);
    }
    25% {
        transform: perspective(1200px) rotateY(90deg) rotateZ(5deg) translateY(-15px) scale(1.08);
        filter: drop-shadow(0 0 35px rgba(255, 107, 53, 0.8)) brightness(1.2);
    }
    50% {
        transform: perspective(1200px) rotateY(180deg) rotateZ(0deg) translateY(-25px) scale(1.12);
        filter: drop-shadow(0 0 45px rgba(255, 107, 53, 1)) brightness(1.3);
    }
    75% {
        transform: perspective(1200px) rotateY(270deg) rotateZ(-5deg) translateY(-15px) scale(1.08);
        filter: drop-shadow(0 0 35px rgba(255, 107, 53, 0.8)) brightness(1.2);
    }
    100% {
        transform: perspective(1200px) rotateY(360deg) rotateZ(0deg) translateY(0px) scale(1);
        filter: drop-shadow(0 0 25px rgba(255, 107, 53, 0.5)) brightness(1);
    }
}

.logo:hover {
    transform: perspective(1000px) rotateY(15deg) scale(1.1) !important;
    filter: drop-shadow(0 0 40px rgba(255, 107, 53, 0.8));
}

.tagline {
    text-align: center;
    margin-bottom: 35px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.tagline h2 {
    font-size: 32px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 12px;
    text-shadow: 
        0 0 30px rgba(255, 107, 53, 0.9),
        0 0 50px rgba(255, 107, 53, 0.6),
        0 4px 15px rgba(0, 0, 0, 0.9),
        0 2px 5px rgba(0, 0, 0, 1);
    letter-spacing: 1px;
    animation: glowText 2s ease-in-out infinite;
}

.tagline p {
    font-size: 18px;
    color: #FFFFFF;
    font-weight: 600;
    text-shadow: 
        0 0 20px rgba(255, 107, 53, 0.7),
        0 3px 10px rgba(0, 0, 0, 0.9),
        0 1px 3px rgba(0, 0, 0, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowText {
    0%, 100% {
        text-shadow: 
            0 0 30px rgba(255, 107, 53, 0.9),
            0 0 50px rgba(255, 107, 53, 0.6),
            0 4px 15px rgba(0, 0, 0, 0.9),
            0 2px 5px rgba(0, 0, 0, 1);
    }
    50% {
        text-shadow: 
            0 0 40px rgba(255, 107, 53, 1),
            0 0 70px rgba(255, 107, 53, 0.8),
            0 0 90px rgba(255, 107, 53, 0.5),
            0 4px 15px rgba(0, 0, 0, 0.9),
            0 2px 5px rgba(0, 0, 0, 1);
    }
}

.menu-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    margin-bottom: 40px;
    align-items: center;
}

.menu-item {
    width: 100%;
    max-width: 500px;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.15) 0%, 
        rgba(26, 26, 26, 0.5) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 20px;
    padding: 25px 35px;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 107, 53, 0.2) 50%, 
        transparent 100%
    );
    transition: left 0.6s ease;
}

.menu-item:hover::before {
    left: 100%;
}

.menu-item:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: var(--orange);
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.25) 0%, 
        rgba(26, 26, 26, 0.6) 100%
    );
    box-shadow: 
        0 15px 40px rgba(255, 107, 53, 0.3),
        0 0 30px rgba(255, 107, 53, 0.2);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.4s ease;
    animation: iconBounce 3s ease-in-out infinite;
}

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

.menu-item:hover .icon-wrapper {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.6);
}

.menu-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.menu-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.badge-soon {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000000;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.6),
        0 4px 10px rgba(0, 0, 0, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 20px rgba(255, 215, 0, 0.6),
            0 4px 10px rgba(0, 0, 0, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 0 30px rgba(255, 215, 0, 0.9),
            0 4px 15px rgba(0, 0, 0, 0.5);
    }
}

.menu-item-disabled {
    opacity: 0.8;
    cursor: not-allowed;
}

.menu-item-disabled:hover {
    transform: translateY(-4px) scale(1.02);
}

.social-section {
    text-align: center;
    padding-top: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: linear-gradient(135deg, 
        #833AB4 0%, 
        #E1306C 50%, 
        #F56040 100%
    );
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.3);
    position: relative;
    overflow: hidden;
}

.instagram-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.instagram-link:hover::before {
    width: 300px;
    height: 300px;
}

.instagram-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(225, 48, 108, 0.5);
}

.instagram-link i {
    font-size: 24px;
    position: relative;
    z-index: 1;
}

.instagram-link span {
    position: relative;
    z-index: 1;
}

.footer-text {
    margin-top: 30px;
    text-align: center;
}

.footer-text p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .logo {
        max-width: 240px;
    }
    
    .logo-glow {
        width: 240px;
        height: 240px;
    }
    
    .logo-wrapper {
        margin-bottom: 18px;
    }
    
    .tagline h2 {
        font-size: 26px;
    }
    
    .tagline p {
        font-size: 16px;
    }
    
    .tagline {
        margin-bottom: 30px;
    }
    
    .menu-item {
        padding: 20px 25px;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
    
    .menu-item h3 {
        font-size: 18px;
    }
    
    .menu-item p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .tagline h2 {
        font-size: 22px;
    }
    
    .tagline p {
        font-size: 15px;
    }
    
    .instagram-link {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .menu-item {
        padding: 18px 20px;
    }
}
