/**
 * KK's Fastfood Point - Custom Styles
 * Colors extracted from Logo: Dark Warm Gold (#8B6F2A, #6B5520, #A89040)
 * Pure Black Background (#000000)
 */

/* ===================================
   Custom Animations
   =================================== */

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.animate-fade-in-up {
    animation: fade-in-up 1s ease both;
}

.animate-shimmer {
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

.animation-delay-200 {
    animation-delay: 0.2s;
}

.animation-delay-400 {
    animation-delay: 0.4s;
}

/* ===================================
   Scroll Animations
   =================================== */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Button Effects
   =================================== */

.hero-btn,
.cta-btn {
    position: relative;
    overflow: hidden;
}

/* ===================================
   Mobile Nav Animation
   =================================== */

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
}

#mobileMenuToggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

#mobileMenuToggle.active span:nth-child(2) {
    opacity: 0;
}

#mobileMenuToggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===================================
   Cookie Banner Animation
   =================================== */

.cookie-banner.show {
    transform: translateY(0);
}

/* ===================================
   Smooth Scrolling
   =================================== */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* ===================================
   Info Card Hover
   =================================== */

.info-card {
    position: relative;
}

.info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 111, 42, 0.04), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 1rem;
    pointer-events: none;
}

.info-card:hover::before {
    opacity: 1;
}

/* ===================================
   Mobile Nav Links
   =================================== */

.mobile-nav-link {
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    padding-left: 1rem;
    background: linear-gradient(90deg, rgba(139, 111, 42, 0.1), transparent);
}

/* ===================================
   Responsive
   =================================== */

@media (max-width: 768px) {
    html {
        scroll-padding-top: 80px;
    }
}

/* ===================================
   Text Selection
   =================================== */

::selection {
    background-color: rgba(139, 111, 42, 0.35);
    color: #BFA34D;
}

::-moz-selection {
    background-color: rgba(139, 111, 42, 0.35);
    color: #BFA34D;
}

/* ===================================
   Scrollbar - Dark Gold
   =================================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #030303;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #8B6F2A, #6B5520, #4A3B16);
    border-radius: 5px;
    border: 2px solid #030303;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #A89040, #8B6F2A, #6B5520);
}