
@font-face {
    font-family: 'Delight';
    src: url('../fonts/Delight-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Delight';
    src: url('../fonts/Delight-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Delight';
    src: url('../fonts/Delight-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'ZalandoSansExpanded';
    src: url('../fonts/ZalandoSansExpanded-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'ZalandoSansExpanded';
    src: url('../fonts/ZalandoSansExpanded-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

:root {
    --primary-color: #002d62; /* Navy blue */
    --font-size-menu: 13px;
}

body {
    font-family: 'Delight', sans-serif;
    color: #1a2f3a;
}

/* ── Scroll Animations ─────────────────────────────────── */
[data-scroll] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-scroll].is-visible {
    opacity: 1;
    transform: none !important;
}
[data-scroll="fade-up"] {
    transform: translateY(40px);
}
[data-scroll="fade-down"] {
    transform: translateY(-40px);
}
[data-scroll="zoom-in"] {
    transform: scale(0.85);
}

/* Staggered delays */
[data-scroll-delay="100"] { transition-delay: 0.1s; }
[data-scroll-delay="200"] { transition-delay: 0.2s; }
[data-scroll-delay="300"] { transition-delay: 0.3s; }
[data-scroll-delay="400"] { transition-delay: 0.4s; }
[data-scroll-delay="500"] { transition-delay: 0.5s; }
[data-scroll-delay="600"] { transition-delay: 0.6s; }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    [data-scroll] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}


.navbar {
    padding: 1rem 0;
    background-color: #fff;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.navbar-nav .nav-link {
    font-family: 'Delight', sans-serif;
    font-weight: 600; /* Semi Bold */
    font-size: var(--font-size-menu);
    color: var(--primary-color) !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1;
    margin: 0 1.25rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-nav .nav-link:hover {
    color: #ce1126 !important;
    opacity: 0.8;
}

/* Hero Carousel */
.hero-section {
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.hero-carousel {
    width: 100%;
    overflow: hidden;
}

.hero-carousel .swiper-wrapper {
    width: 100%;
}

.hero-slide {
    width: 100% !important;
    overflow: hidden;
}

.hero-slide picture {
    display: block;
    width: 100%;
    line-height: 0;
}

.hero-slide img {
    display: block;
    width: 100%;
    height: auto;
}

.swiper-slide-active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-pagination .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: #B1EA3B;
    opacity: 1;
}

.hero-next, .hero-prev {
    color: #fff !important;
    transition: all 0.3s ease;
}

.hero-next:hover, .hero-prev:hover {
    color: #B1EA3B !important;
    transform: scale(1.1);
}

.hero-next::after, .hero-prev::after {
    font-size: 24px !important;
    font-weight: bold;
}

@media (max-width: 768px) {
    .hero-section {
        height: auto !important;
        min-height: unset !important;
    }
    .hero-carousel,
    .hero-slide {
        height: auto !important;
    }
    .hero-content h1 {
        font-size: 2.5rem !important;
    }
    .hero-content p {
        font-size: 1.2rem !important;
    }
}

/* ── Video Section ──────────────────────────────────────── */
.video-section {
    position: relative;
    width: 100%;
    padding: 60px 0;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    max-height: 75vh;
    overflow: hidden;
    border-radius: 20px;
}

.video-player {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay oscuro semitransparente */
.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.30);
    transition: background 0.4s ease;
    cursor: pointer;
}

/* Cuando está reproduciendo, el overlay se oculta para mostrar controles nativos */
.video-overlay.is-playing {
    background: rgba(0, 0, 0, 0);
    pointer-events: none;
}

.video-overlay.is-playing:hover {
    background: rgba(0, 0, 0, 0);
}

/* Botón play/pause */
.video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #fff;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, opacity 0.4s ease;
    opacity: 1;
}

.video-overlay.is-playing .video-play-btn {
    opacity: 0;
    pointer-events: none;
}

.video-overlay.is-playing:hover .video-play-btn {
    opacity: 1;
}

.video-play-btn:hover {
    background: rgba(177, 234, 59, 0.35);
    border-color: #B1EA3B;
    transform: scale(1.1);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .video-wrapper {
        aspect-ratio: 16 / 9;
        max-height: 60vw;
    }
    .video-play-btn {
        width: 60px;
        height: 60px;
    }
    .video-play-btn svg {
        width: 32px;
        height: 32px;
    }
}


.presentaciones {
    background-color: #1a2f3a;
    padding: 100px 0;
}

.presentaciones .section-title-box {
        display: inline-block;
        background-color: #B1EA3B;
        color: #1a2f3a;
        padding: 14px 7vw;
        border-radius: 15px;
        font-family: 'Delight', sans-serif;
        font-weight: 600;
        font-size: clamp(0.9rem, 2vw, 1.9rem);
        word-break: break-word;
        text-align: center;
}

@media (max-width: 600px) {
    .presentaciones .section-title-box {
        padding: 10px 4vw;
        font-size: clamp(1rem, 6vw, 1.5rem);
        margin-bottom: 40px;
    }
}


.presentacion-card {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.presentacion-card:hover {
    transform: translateY(-10px);
}

.presentacion-img {
    /*height: 350px;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.presentacion-img img {
    max-height: 100%;
    max-width: 100%;
}

.badge-bolsa {
    background-color: #B1EA3B;
    color: #1a2f3a;
    font-weight: 700;
    padding: 6px 30px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 15px;
    font-size: 0.95rem;
    text-transform: capitalize;
}

.presentacion-title {
    color: #fff;
    font-family: 'ZalandoSansExpanded', sans-serif;
    font-weight: bold;
    font-size: 20px;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.05em;
}

.peso-highlight {
    color: #B1EA3B;
}

/* Fortificaciones Section */
.fortificaciones {
    position: relative;
    padding: 100px 0;
    background: url('../img/forticaciones/Foto-Fondomesa.png') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.fortificaciones-heading {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px 40px;
    border-radius: 8px;
    font-family: 'Delight', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 1;
    margin-bottom: 2rem;
    text-transform: none;
}

.fortificaciones-text {
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.4;
    color: var(--primary-color);
    font-weight: 600;
}

.fortificaciones-icons {
    max-width: 700px;
    margin: 0 auto;
}

.forti-icon-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.forti-icon-item:hover {
    transform: translateY(-10px);
}

.forti-icon-item img {
    width: 80px;
    height: auto;
    margin-bottom: 15px;
}

.forti-icon-item span {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.2;
}

/* Participaciones Section */
.participaciones {
    position: relative;
    padding: 120px 0;
    background: url('../img/participaciones/Foto-Fondo.png') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
}

.participaciones-heading {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.9);
    color: #002d62;
    padding: 15px 40px;
    border-radius: 8px;
    font-family: 'Delight', sans-serif;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 2.5rem;
}

.participaciones-text {
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 500;
}

.btn-participa {
    background-color: #c4f135; /* Lime green */
    color: #002d62;
    font-weight: 700;
    padding: 12px 45px;
    border-radius: 50px;
    text-transform: none;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-shadow: none;
    opacity: 1;
}

.btn-participa:hover {
    background-color: #c4f135;
    color: #002d62;
}

/* Recetas Section */
.recetas {
    background-color: #B1EA3B;
    padding: 100px 0;
    overflow: clip;
}

.recetas .section-title-box {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px 60px;
    border-radius: 12px;
    font-family: 'Delight', sans-serif;
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 30px;
}

.recipe-carousel .swiper-slide {
    height: auto;
    display: flex;
    flex-direction: column;
}

.recipe-card {
    background-color: #1a2f3a; /* Dark navy */
    border-radius: 30px;
    padding: 140px 30px 40px;
    margin-top: 100px;
    position: relative;
    text-align: center;
    height: calc(100% - 100px);
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.recipe-img-container {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
}

.recipe-img-container img {
    width: 100%;
    height: auto;
}

.recipe-title {
    color: #B1EA3B;
    font-family: 'ZalandoSansExpanded', sans-serif;
    font-weight: bold;
    font-size: 26px;
    line-height: 1.1;
    margin-bottom: 15px;
    text-transform: none;
}

.recipe-description {
    color: #fff;
    font-family: 'Delight', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 25px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recipe-footer {
    margin-top: auto;
}

.btn-ver-mas {
    background-color: #B1EA3B;
    color: #1a2f3a;
    font-weight: 700;
    padding: 8px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-ver-mas:hover {
    background-color: #fff;
    transform: scale(1.05);
    color: #1a2f3a;
}

/* Footer Styles */
.footer {
    background-color: #1a2f3a;
    color: #fff;
    position: relative;
}


.footer-title {
    font-family: 'Delight', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-contact li, .footer-links li {
    margin-bottom: 0.8rem;
}

.footer-contact a, .footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover, .footer-contact a:hover {
    color: #B1EA3B;
}

.social-links a {
    color: #fff;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #B1EA3B;
}

.footer-seal {
    max-width: 250px;
    height: auto;
}

@media (max-width: 991.98px) {
    .recipe-card {
        margin-top: 80px;
        padding-top: 100px;
    }
    .recipe-img-container {
        width: 160px;
        top: -80px;
    }
}

@media (max-width: 767.98px) {
    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }
    .navbar-nav .nav-link {
        margin: 0.5rem 0;
    }
    .recetas {
        padding: 60px 0;
    }
    .fortificaciones {
        padding: 60px 0;
        text-align: center;
    }
    .fortificaciones-text {
        margin-top: 19%;
        font-size: 1.1rem;
    }
    .forti-icon-item {
        margin-bottom: 2rem;
    }
    .participaciones {
        padding: 80px 0;
    }
    .participaciones-text {
        font-size: 1.2rem;
    }
    .footer {
        text-align: center;
    }
    .social-links {
        justify-content: center;
        display: flex;
        margin-bottom: 1rem;
    }
    .footer-seal {
        margin-top: 2rem;
        max-width: 180px;
    }
}
/* Recipe Detail Page */
.recipe-page {
    background-color: #fff;
}

.recipe-hero-section {
    background-color: #fff;
    padding: 60px 0 20px;
    text-align: center;
}

.recipe-hero-img-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.recipe-hero-img-container img {
    max-width: 100%;
    height: auto;
}

.recipe-content-header {
    margin-top: 40px;
    text-align: left;
}

.recipe-content-header h1 {
    font-family: 'ZalandoSansExpanded', sans-serif;
    color: #1a2f3a;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.recipe-content-header p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
}

.recipe-info-title {
    font-weight: 700;
    color: #1a2f3a;
    font-size: 1.5rem;
    margin: 40px 0 20px;
}

.ingredients-list {
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
}

.ingredients-list li {
    font-size: 1.05rem;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
    color: #444;
}

.ingredients-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #444;
}

.steps-list {
    padding-left: 0;
    list-style: none;
    counter-reset: steps-counter;
}

.steps-list li {
    font-size: 1.05rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.5;
    color: #444;
}

.steps-list li::before {
    counter-increment: steps-counter;
    content: counter(steps-counter) ".";
    position: absolute;
    left: 0;
    color: #444;
}

.btn-volver-container {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 60px;
}

.btn-volver {
    background-color: #B1EA3B;
    color: #1a2f3a;
    font-weight: 700;
    padding: 12px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    width: 180px;
}

.btn-volver:hover {
    background-color: #a3d428;
    transform: scale(1.05);
    color: #1a2f3a;
}

.recipe-main-img {
    max-width: 400px;
    height: auto;
}

@media (max-width: 768px) {
    .recipe-hero-img-container {
        padding: 20px;
        margin: 0 15px;
    }
    .recipe-content-header h1 {
        font-size: 1.8rem;
    }
}
