/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;600;700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    /* Nueva Paleta Parrillera */
    --color-bg-dark: #0a0a0a;
    --color-bg-panel: #141414;
    --color-fire-orange: #FF4500;
    --color-gold-premium: #D4AF37;
    --color-charcoal-gray: #1f1f1f;
    --color-smoke-white: #e0e0e0;

    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;

    --container-width: 1200px;
    --spacing-sm: 1rem;
    --spacing-md: 2.5rem;
    --spacing-lg: 5rem;

    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.7);
    --border-glow: 1px solid rgba(212, 175, 55, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-dark);
    color: var(--color-smoke-white);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjMWExYTFhIiAvPgo8cmVjdCB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSIjMjIyMjIyIiAvPgo8L3N2Zz4=');
    /* Subtle texture */
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.text-brand {
    color: var(--color-fire-orange);
}

.text-gold {
    color: var(--color-gold-premium);
}

.text-uppercase {
    text-transform: uppercase;
}

/* Buttons Premium */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-fire-orange) 0%, #cc3700 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-gold-premium);
    color: var(--color-gold-premium);
    clip-path: none;
    /* Standard border for outline */
    border-radius: 4px;
}

.btn-outline:hover {
    background: var(--color-gold-premium);
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Navbar Premium */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    padding: 1rem 0;
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 70px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4)) brightness(1.2);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.logo-text span {
    display: block;
    font-size: 0.7rem;
    color: var(--color-gold-premium);
    letter-spacing: 4px;
    font-weight: 400;
}


.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-fire-orange);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    color: var(--color-gold-premium);
    background: none;
    border: none;
    font-size: 1.8rem;
}

/* Hero Section "Parrillero" */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: brightness(0.6) contrast(1.2);
    animation: slowZoom 30s infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-md);
    align-items: center;
    margin-top: 80px;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-text h1 .highlight {
    color: transparent;
    -webkit-text-stroke: 2px var(--color-fire-orange);
    display: block;
}

.hero-text h1 .sub-highlight {
    color: var(--color-gold-premium);
    font-style: italic;
    font-size: 0.8em;
}

.hero-description {
    font-size: 1.25rem;
    color: #ccc;
    max-width: 600px;
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--color-fire-orange);
    padding-left: 1.5rem;
}

/* Benefits Section Redesigned */
.benefits-section {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, #151515 100%);
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1rem;
    color: white;
}

.section-subtitle {
    text-align: center;
    color: var(--color-gold-premium);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: var(--spacing-lg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 1rem;
}

.benefit-card {
    background: var(--color-bg-panel);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-fire-orange);
    box-shadow: 0 0 30px rgba(255, 69, 0, 0.15);
}

.benefit-image-frame {
    height: 220px;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-bottom: 3px solid var(--color-fire-orange);
}

.benefit-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.benefit-card:hover .benefit-image-frame img {
    transform: scale(1.1);
}

.benefit-content {
    padding: 2rem;
}

.benefit-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-content h3 i {
    font-size: 1.5rem;
}

.benefit-content p {
    color: #bbb;
    font-size: 1rem;
    line-height: 1.7;
}

/* HORECA Section Impact */
.horeca-section {
    padding: var(--spacing-lg) 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('assets/images/hero.png');
    /* Reusing hero as bg for texture */
    background-size: cover;
    background-attachment: fixed;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.horeca-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

.horeca-text {
    flex: 1;
    background: rgba(0, 0, 0, 0.8);
    padding: 3rem;
    border: 1px solid var(--color-gold-premium);
    backdrop-filter: blur(5px);
}

.horeca-text h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-gold-premium);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: white;
}

.check-list li i {
    color: var(--color-fire-orange);
    font-size: 1.2rem;
}

.callout-box {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.badge-chef {
    width: 250px;
    height: 250px;
    border: 4px solid var(--color-gold-premium);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
    animation: floatBadge 6s infinite ease-in-out;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.badge-chef i {
    font-size: 3rem;
    color: var(--color-fire-orange);
    margin-bottom: 0.5rem;
}

.badge-chef span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1.2;
}

/* Contact Form Redesign */
.contact-section {
    padding: var(--spacing-lg) 0;
    position: relative;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--color-bg-panel);
    padding: 3rem;
    border-radius: 10px;
    border: 1px solid #333;
}

.contact-details h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--color-fire-orange);
}

.contact-item i {
    font-size: 2rem;
    color: var(--color-gold-premium);
}

.contact-form-styled .form-group label {
    font-family: var(--font-heading);
    color: var(--color-gold-premium);
    letter-spacing: 1px;
}

.contact-form-styled input,
.contact-form-styled textarea {
    background: #000;
    border: 1px solid #444;
    color: white;
    padding: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s;
}

.contact-form-styled input:focus,
.contact-form-styled textarea:focus {
    border-color: var(--color-fire-orange);
    outline: none;
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.2);
}

/* Footer */
footer {
    padding: 2rem 0;
    background: black;
    text-align: center;
    border-top: 1px solid #222;
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .hero-description {
        margin: 0 auto 2rem auto;
        border-left: none;
        border-bottom: 4px solid var(--color-fire-orange);
        padding-bottom: 1rem;
        padding-left: 0;
    }

    .hero-buttons {
        justify-content: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .horeca-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: black;
        flex-direction: column;
        padding: 2rem;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}