:root {
    --primary: #E31837;
    --primary-hover: #C4122C;
    --secondary: #FFB800;
    --dark: #0A0A0A;
    --dark-alt: #1A1A1A;
    --light: #F5F5F5;
    --white: #FFFFFF;
    --gray: #666666;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Reusable Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(227, 24, 55, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--dark);
}

.section-padding {
    padding: clamp(60px, 10vw, 100px) 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark-alt);
        padding: 20px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 30px;
    }

    .d-none-mobile {
        display: none !important;
    }

    .mobile-actions {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo img {
        height: 30px !important;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.4));
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(1.8rem, 10vw, 5.5rem);
    line-height: 1;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--primary);
    -webkit-text-stroke: 1.5px var(--primary);
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(231, 76, 60, 0.3);
}

.halal-logo {
    display: inline-block;
    height: clamp(60px, 10vw, 90px);
    width: auto;
    vertical-align: middle;
    margin-left: 15px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 600px;
    color: var(--light);
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
    }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.img-rounded {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* Menu Section */
.bg-dark-alt {
    background-color: var(--dark-alt);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.menu-card {
    background: var(--dark);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.menu-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.menu-info {
    padding: 25px;
}

.menu-info h3 {
    margin-bottom: 10px;
}

.menu-info p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.menu-price {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--secondary);
}

/* Reviews */
#reviews {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

#reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/HungerStationImagesLocal/IMG_4918.jpg') no-repeat center center/cover;
    opacity: 0.3;
    z-index: -1;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: var(--dark-alt);
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary);
}

.review-stars {
    color: var(--secondary);
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
}

.review-author {
    font-weight: 700;
}

.review-badges {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-weight: 700;
    flex-wrap: wrap;
}

.review-rating-line {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .review-badges {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .review-badges a.btn {
        margin-left: 0 !important;
        margin-top: 5px;
    }
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}

@media (min-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--border-radius);
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1) rotate(2deg);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .contact-actions {
        flex-direction: column;
    }

    .contact-actions .btn {
        width: 100%;
        font-size: 0.9rem;
    }
}

.contact-map {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Hours */
#horario {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

#horario::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/HungerStationImagesLocal/IMG_4923.jpg') no-repeat center center/cover;
    opacity: 0.3;
    z-index: -1;
}

.hours-container {
    max-width: 600px;
    text-align: center;
}

.hours-list {
    margin-bottom: 40px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hour-item.today {
    color: var(--primary);
    font-weight: 800;
}

.status-badge {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
}

/* Footer */
footer {
    padding: 60px 0;
    background: #050505;
    text-align: center;
}

.footer-logo h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.footer-social {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-social a:hover {
    opacity: 1;
}

.footer-social a:hover .fa-instagram {
    background: linear-gradient(45deg,
            #FEDA75,
            #FA7E1E,
            #D62976,
            #962FBF,
            #4F5BD5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-social a:hover .fa-facebook {
    color: #1877F2;
}

.footer-social a:hover .fa-whatsapp {
    color: #25D366;
}

.footer-social img {
    filter: grayscale(1);
    transition: var(--transition);
}

.footer-social a:hover img {
    filter: grayscale(0);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.menu-card,
.review-card {
    opacity: 0;
    transform: scale(0.9);
    transition: 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.menu-card.visible,
.review-card.visible {
    opacity: 1;
    transform: scale(1);
}

/* Multi-language & Header Fixes */
.mobile-actions {
    display: none;
}

@media (max-width: 768px) {
    .mobile-actions {
        display: flex;
        align-items: center;
        gap: 15px;
    }
}

.lang-switch {
    display: inline-block;
    color: var(--white);
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    line-height: 1;
    transition: var(--transition);
}

.lang-switch:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

@media (max-width: 480px) {
    .logo {
        font-size: 1rem;
    }

    .mobile-actions {
        gap: 8px;
    }

    .lang-switch {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
}

@media (max-width: 380px) {
    .hero h1 {
        font-size: 1.6rem;
    }
}