/* assets/css/landing.css - Premium Fast Food Theme */
:root {
    --primary-color: #ffb703;
    /* Amarillo Mostaza */
    --primary-dark: #fb8500;
    --secondary-color: #d00000;
    /* Rojo Intenso */
    --secondary-dark: #9d0208;
    --text-dark: #121212;
    --text-muted: #6c757d;
    --light-bg: #f8f9fa;
    --card-bg: #ffffff;
    --nav-height: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--light-bg);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 183, 3, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255, 183, 3, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 183, 3, 0);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes wobble-hor-bottom {

    0%,
    100% {
        transform: translateX(0%);
        transform-origin: 50% 50%;
    }

    15% {
        transform: translateX(-15px) rotate(-6deg);
    }

    30% {
        transform: translateX(10px) rotate(6deg);
    }

    45% {
        transform: translateX(-10px) rotate(-3.6deg);
    }

    60% {
        transform: translateX(5px) rotate(2.4deg);
    }

    75% {
        transform: translateX(-3px) rotate(-1.2deg);
    }
}

.wobble-horizontal:hover {
    animation: wobble-hor-bottom 0.8s both;
    display: inline-block;
}

/* Navbar */
.navbar-custom {
    padding: 15px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar-custom.scrolled {
    background: rgba(0, 0, 0, 0.9);
    padding: 10px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Fix for mobile menu background */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        padding: 20px;
        border-radius: 15px;
        margin-top: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-custom {
        padding: 10px 0;
        background: rgba(0, 0, 0, 0.5);
        /* Slight background on mobile even before scroll */
    }

    .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.2);
    }
}

.nav-logo {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.brand-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-nav-cta {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-dark);
    font-weight: 700;
    border-radius: 50px;
    padding: 10px 25px;
    transition: all 0.3s;
}

.btn-nav-cta:hover {
    background-color: #fff;
    color: var(--text-dark);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.hero-title {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
}

.text-highlight {
    color: var(--secondary-color);
    -webkit-text-stroke: 2px white;
    /* Cool text stroke effect */
}

.hero-desc {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 600px;
    opacity: 0.9;
}

.btn-hero {
    background: var(--secondary-color);
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
}

.btn-hero:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
}

.status-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.status-badge.open i {
    color: #2ecc71;
}

.status-badge.closed i {
    color: #e74c3c;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 5;
    pointer-events: none;
}

/* Feature Boxes */
.feature-box {
    padding: 40px 20px;
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box .icon-wrapper {
    width: 80px;
    height: 80px;
    background: #e9ecef;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.feature-box .icon-wrapper.color-2 {
    color: var(--primary-dark);
}

.feature-box .icon-wrapper.color-3 {
    color: #2ecc71;
}

.bg-light-alt {
    background-color: #f1f3f5;
}

.section-padding {
    padding: 100px 0;
}

.section-subtitle {
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 3rem;
    color: var(--text-dark);
}

/* Category Cards */
.category-card {
    display: block;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    text-align: center;
    padding-bottom: 15px;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.category-card h3 {
    color: var(--text-dark);
    margin-top: 15px;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.category-card:hover h3 {
    color: var(--secondary-color);
}

.cat-img-wrapper {
    height: 200px;
    overflow: hidden;
}

.cat-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.category-card:hover img {
    transform: scale(1.1);
}

/* Popular Dishes */
.dish-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    /* Sombra más suave */
    border: none;
    transition: transform 0.3s;
}

.dish-card:hover {
    transform: translateY(-5px);
}

.dish-img-box {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.dish-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dish-price {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--text-dark);
    font-weight: 900;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.dish-content {
    padding: 25px;
}

/* Promo Link */
.promo-section {
    padding: 120px 0;
    background-attachment: fixed;
    /* Parallax simple */
    background-size: cover;
    background-position: center;
    position: relative;
}

.promo-section .overlay {
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.promo-price {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(255, 183, 3, 0.5);
}

/* About & Testimonials */
.about-img-group {
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 5px solid white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    line-height: 1.2;
}

.experience-badge .year {
    font-size: 2.5rem;
    font-family: 'Oswald', sans-serif;
}

/* Footer */
.footer-modern {
    border-top: 5px solid var(--primary-color);
}

.footer-brand {
    font-family: 'Oswald', sans-serif;
    color: var(--primary-color);
}

.social-links a {
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--text-dark);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .nav-logo {
        height: 40px;
        width: 40px;
    }

    .brand-text {
        font-size: 1.2rem;
    }

    .experience-badge {
        bottom: 0;
        right: 0;
        width: 100px;
        height: 100px;
    }

    .experience-badge .year {
        font-size: 1.8rem;
    }
}