/* UFO Fries and Corn - Custom Styles */

:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --accent-color: #00d4ff;
    --dark-bg: #0a0a0a;
    --dark-secondary: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #b0b0b0;
    --ufo-glow: #00ffff;
    --star-color: #ffffff;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-light) !important;
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* UFO Background Animation */
.ufo-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, var(--star-color), transparent),
        radial-gradient(2px 2px at 40px 70px, var(--star-color), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--star-color), transparent),
        radial-gradient(1px 1px at 130px 80px, var(--star-color), transparent),
        radial-gradient(2px 2px at 160px 30px, var(--star-color), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: twinkle 3s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

.ufo {
    position: absolute;
    width: 60px;
    height: 30px;
    animation: fly 20s linear infinite;
}

.ufo-1 {
    top: 20%;
    left: -100px;
    animation-delay: 0s;
}

.ufo-2 {
    top: 60%;
    left: -100px;
    animation-delay: 10s;
}

.ufo-body {
    width: 60px;
    height: 20px;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    border-radius: 50px 50px 20px 20px;
    position: relative;
    box-shadow: 0 0 20px var(--ufo-glow);
}

.ufo-lights {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.ufo-lights::before,
.ufo-lights::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--ufo-glow);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes fly {
    0% {
        left: -100px;
        transform: translateY(0px);
    }
    25% {
        transform: translateY(-20px);
    }
    50% {
        transform: translateY(10px);
    }
    75% {
        transform: translateY(-10px);
    }
    100% {
        left: calc(100% + 100px);
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Home Section */
.home-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.title-ufo {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 4rem;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px #ff6b35); }
    to { filter: drop-shadow(0 0 30px #00d4ff); }
}

.title-rest {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--text-light);
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Floating Food Animation */
.floating-fries, .floating-corn {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.fry, .corn {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.fry-1 { top: 20%; left: 10%; animation-delay: 0s; }
.fry-2 { top: 60%; right: 15%; animation-delay: 1.5s; }
.fry-3 { bottom: 30%; left: 20%; animation-delay: 3s; }
.fry-4 { top: 40%; right: 30%; animation-delay: 4.5s; }

.corn-1 { top: 25%; right: 10%; animation-delay: 0.8s; }
.corn-2 { bottom: 20%; right: 25%; animation-delay: 2.3s; }
.corn-3 { top: 70%; left: 15%; animation-delay: 3.8s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(0px) rotate(-5deg); }
    75% { transform: translateY(-15px) rotate(3deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--secondary-color);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) rotate(45deg) translateY(0); }
    40% { transform: translateX(-50%) rotate(45deg) translateY(-10px); }
    60% { transform: translateX(-50%) rotate(45deg) translateY(-5px); }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 2rem;
    border-radius: 2px;
}

/* About Section */
.about-section {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
}

.about-features .text-center {
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.about-features .text-center:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.food-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 40px;
}

.food-item {
    font-size: 4rem;
    animation: foodGlow 3s ease-in-out infinite;
}

.fries-showcase {
    animation-delay: 0s;
}

.corn-showcase {
    animation-delay: 1.5s;
}

@keyframes foodGlow {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 20px rgba(255, 193, 7, 0.6)); }
}

/* Services Section */
.services-section {
    background: var(--dark-bg);
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(247, 147, 30, 0.3);
}

.service-icon {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-card:hover .service-icon {
    animation: bounce 0.6s ease-in-out;
}

/* Gallery Section */
.gallery-section {
    background: var(--dark-secondary);
}

.gallery-item {
    height: 250px;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.gallery-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-placeholder {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--secondary-color);
}

/* Contact Section */
.contact-section {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-item i {
    margin-right: 1rem;
    margin-top: 0.5rem;
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.social-links .social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links .social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.map-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.map-placeholder:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--secondary-color);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

.footer-logo {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .title-ufo {
        font-size: 2.5rem;
    }
    
    .title-rest {
        font-size: 1.8rem;
    }
    
    .floating-fries, .floating-corn {
        display: none;
    }
    
    .food-showcase {
        flex-direction: column;
        gap: 20px;
    }
    
    .food-item {
        font-size: 3rem;
    }
    
    .service-card {
        margin-bottom: 1rem;
    }
    
    .gallery-item {
        margin-bottom: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item i {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .title-ufo {
        font-size: 2rem;
    }
    
    .title-rest {
        font-size: 1.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
}

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

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}