@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

/* Font Declarations */
@font-face {
    font-family: 'Swift-Light';
    src: url('./fuentes/Swift-Light.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Swift-Bold';
    src: url('./fuentes/Swift-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}


html {
    overflow-x: hidden;
}
/* Applying the new fonts */
body {
    margin: 0;
    font-family: 'Swift-Light', 'Montserrat', sans-serif; /* Apply Swift-Light to body */
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .gallery-subheading, .read-more, .header-button, .new-main-menu ul li .menu-link, .bottom-nav a {
    font-family: 'Swift-Bold', 'Montserrat', sans-serif; /* Apply Swift-Bold to titles and specific bold elements */
}

/* Estilos generales para todas las secciones */
section {
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    position: relative;
    box-sizing: border-box;
    padding-left: 5%;
}

.content-overlay {
    padding: 20px;
    max-width: 80%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: -5%;
}

/* Para los iconos sociales en la parte superior */
.social-icons-top {
    display: flex;
    gap: 15px;
    font-size: 1.5em;
    margin-bottom: 30px;
    color: white;
    margin-top: 150px;
}

.social-icons-top a {
    color: white;
    text-decoration: none;
}

h1 {
    font-size: 4em;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 700;
}

p {
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 600px;
}

.read-more {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    display: inline-block;
    margin-top: 10px;
}

.read-more:hover {
    text-decoration: underline;
}

/* Sección 1: Fuego2 */
.section1 {
    background-image: url('img/fuego2.png');
    display: block;
    padding-left: 0;
}

/* Contenedor del logo con fondo */
.logo-sagardi-container {
    position: absolute;
    top: 30px;
    left: 30px;
    background-color: transparent;
    padding: 10px 15px;
    border-radius: 5px;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    position: relative;
}

.section1 .logo-sagardi {
    width: 150px;
    height: auto;
    margin-bottom: 5px;
}

.section1 .content-overlay {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
}

.section1 h1 {
    font-size: 5em;
    margin-top: 0;
}

/* Flecha de scroll */
.scroll-arrow-container {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5em;
    color: white;
    animation: bounce 2s infinite;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.scroll-arrow-container i {
    color: white;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* New Section for Cuisine Gallery */
.section-cuisine-gallery {
    background-color: #f7f2ea; /* Light beige background color */
    color: #333; /* Dark text for contrast */
    padding: 80px 5%; /* Padding around the content */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align content to the left */
    justify-content: center;
    height: auto;
    min-height: 100vh; /* Minimum height to occupy full viewport */
    box-sizing: border-box; /* Include padding in element's total width and height */
}

.section-cuisine-gallery .gallery-header {
    width: 100%;
    max-width: 1200px; /* Limit header width */
    margin-bottom: 40px; /* Space between header and image grid */
    text-align: left;
    margin-left: 0; /* Reset any default margin */
}

.section-cuisine-gallery .gallery-subheading {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 5px;
    font-weight: 400; /* Regular weight */
}

.section-cuisine-gallery h1 {
    font-size: 4em;
    margin: 0;
    color: #333;
    line-height: 1.1;
    font-weight: 700; /* Bold weight */
}

.section-cuisine-gallery .gallery-images {
    display: flex;
    justify-content: space-between; /* Distribute images evenly */
    align-items: center;
    gap: 20px; /* Space between images */
    width: 100%;
    max-width: 1200px; /* Max width for the image container */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.section-cuisine-gallery .gallery-images img {
    width: calc(33.333% - 14px); /* Three images per row, accounting for gap */
    height: auto;
    max-width: 400px; /* Max width for each image */
    border-radius: 5px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Sección 2: Agua */
.section2 {
    background-image: url('img/agua.png');
}

.section2 .content-overlay {
    max-width: 500px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    align-items: flex-start;
}

/* Sección 3: Fuego */
.section3 {
    background-image: url('img/fuego.png');
}

.section3 .content-overlay {
    max-width: 500px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    align-items: flex-start;
}

/* Sección 4: Respeto */
.section4 {
    background-image: url('img/respeto.png');
}

.section4 .content-overlay {
    max-width: 500px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    align-items: flex-start;
}

/* Sección 5: Fuego3 */
.section5 {
    background-image: url('img/fuego3.PNG');
}

.section5 .content-overlay {
    max-width: 500px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    align-items: flex-start;
}

/* Sección 6: Mar3 */
.section6 {
    background-image: url('img/mar3.PNG');
}

.section6 .content-overlay {
    max-width: 500px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    align-items: flex-start;
}

/* Sección 7: Madera2 */
.section7 {
    background-image: url('img/madera2.PNG');
}

.section7 .content-overlay {
    max-width: 500px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    align-items: flex-start;
}

/* Sección 8: Mar4 */
.section8 {
    background-image: url('img/mar4.PNG');
}

.section8 .content-overlay {
    max-width: 500px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    align-items: flex-start;
}

/* Sección 9: Vegetales1 y Carne1 */
.section9 {
    background-color: #222;
    display: flex;
    align-items: stretch;
    height: 70vh;
    padding-left: 0;
}

.section9 .content-left {
    background-image: url('img/vegetales1.PNG');
    background-size: cover;
    background-position: center;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5%;
    box-sizing: border-box;
    text-align: left;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    align-items: flex-start;
}

.section9 .content-right {
    background-image: url('img/carne1.PNG');
    background-size: cover;
    background-position: center;
    width: 50%;
}

.section9 h1 {
    font-size: 4em;
    margin-top: 0;
}

.section9 p {
    font-size: 1.1em;
    max-width: 500px;
}

/* Sección 10: Carne2 */
.section10 {
    background-image: url('img/carne2.PNG');
}

.section10 .content-overlay {
    max-width: 500px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    align-items: flex-start;
}

/* --- Estilos para la Nueva Sección de Asadores (Sección 10.5) --- */

#asadores-section {
    background-color: #f7f2ea; /* CAMBIADO: Fondo beige claro */
    color: #333; /* CAMBIADO: Texto oscuro para contraste */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px; /* Aumentado el padding vertical */
    height: auto; /* Altura automática para ajustarse al contenido */
    min-height: 100vh;
    box-sizing: border-box;
}

.content-overlay-asadores {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

#asadores-section h1 {
    color: #333; /* CAMBIADO: Texto oscuro */
    font-size: 2.5em;
    margin-bottom: 40px;
    font-weight: bold;
}

.slider-container-asadores {
    position: relative;
    width: 100%; /* Ocupa todo el ancho del contenedor */
    max-width: 1200px;
    overflow: hidden;
}

.slider-track-asadores {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px; /* AÑADIDO: Espacio entre las imágenes */
}

.slide-asadores {
    /* CAMBIADO: Cada slide ocupa 1/3 del contenedor menos el espacio del gap */
    min-width: calc((100% / 3) - (40px / 3));
    box-sizing: border-box;
}

.slide-asadores img {
    width: 100%;
    display: block;
    max-height: 60vh;
    object-fit: cover;
    border-radius: 5px; /* Bordes redondeados */
}

.slider-btn-asadores {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white; /* CAMBIADO: Fondo blanco */
    border: 1px solid #ddd; /* CAMBIADO: Borde sutil */
    color: #333; /* CAMBIADO: Flechas oscuras */
    font-size: 1.5rem; /* Tamaño de fuente ajustado */
    cursor: pointer;
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Sombra suave */
    transition: background-color 0.3s, box-shadow 0.3s;
}

.slider-btn-asadores:hover {
    background-color: #f1f1f1;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.slider-btn-asadores:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.prev-btn-asadores {
    left: -25px; /* CAMBIADO: Posición ajustada */
}

.next-btn-asadores {
    right: -25px; /* CAMBIADO: Posición ajustada */
}

/* Sección 11: Contacto y Horario (Copied from index.html) */
.section11 {
    background-color: #f7f2ea;
    color: #333;
    display: grid;
    grid-template-areas:
        "contact-info contact-details hours-social"
        "carousel carousel carousel";
    grid-template-columns: 1fr 1fr 1fr;
    padding: 50px 5%;
    padding-bottom: 80px;
    height: auto;
    min-height: auto;
    gap: 30px;
    align-items: start;
    text-align: left;
    justify-items: center;
}

.section11 .contact-info {
    grid-area: contact-info;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.section11 .contact-details {
    grid-area: contact-details;
    width: 100%;
}

.section11 .hours-social {
    grid-area: hours-social;
    width: 100%;
}

.section11 .logo-sagardi-bottom {
    width: 200px;
    margin-bottom: 30px;
}

.section11 .logo-manos {
    width: 100%;
    max-width: 500px;
}

.section11 h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #333;
}

.section11 h3 {
    font-size: 1.2em;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #333;
}

.section11 p {
    font-size: 1em;
    margin-bottom: 10px;
    color: #555;
    max-width: none;
}

.section11 .view-map {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 15px;
    font-size: 1em;
}

.section11 .view-map:hover {
    text-decoration: underline;
}

.section11 .sagardi-group-logos {
    display: flex;
    align-items: center;
    margin-top: 30px;
    gap: 15px;
}

.section11 .sagardi-group-text {
    width: 120px;
}

.section11 .euskadi-logo {
    width: 100px;
}

/* Iconos sociales de la parte inferior */
.social-icons-bottom {
    display: flex;
    gap: 20px;
    font-size: 1.8em;
    margin-top: 20px;
}

.social-icons-bottom a {
    color: #333;
    text-decoration: none;
}

.social-icons-bottom a i {
    color: #333;
    display: inline-block;
}

/* --- Estilos mejorados para el Carrusel de Imágenes --- */
.carousel-container {
    grid-area: carousel;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    height: 150px;
    margin: 40px auto 0;
}

.carousel-inner {
    display: flex;
    height: 100%;
    align-items: center;
    will-change: transform;
    transition: transform 0.8s ease-in-out;
    gap: 15px;
    padding: 0 20px;
}

.carousel-image {
    width: auto;
    height: 120px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 5px;
    filter: grayscale(100%) brightness(0.2);
    transition: all 0.3s ease;
}

/* --- Estilos para botón Volver Arriba --- */
.scroll-to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 50px;
    background-color: rgba(100, 100, 100, 0.7);
    color: white;
    border: none;
    border-radius: 5px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

.scroll-to-top-btn.show {
    opacity: 1;
    visibility: visible;
}

/* --- NEW Menu Button --- */
.menu-button {
    position: fixed;
    top: 30px;
    right: 30px;
    background-color: transparent; /* Changed to match image background */
    border: 2px solid black; /* Added white border */
    border-radius: 5px; /* Slightly rounded corners */
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    color: black;
    cursor: pointer;
    z-index: 1050; /* Ensure it's above other content */
    padding: 0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.menu-button:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Slight background change on hover */
}

/* --- NEW Menu Styles (replacing .main-menu) --- */
.new-main-menu {
    position: fixed;
    top: 0;
    right: -300px; /* Start off-screen to the right */
    width: 300px; /* Wider menu to accommodate content */
    height: 100%;
    background-color: #f7f2ea; /* Changed to match image background */
    box-shadow: -5px 0px 15px rgba(0, 0, 0, 0.3); /* Shadow on the left */
    transition: right 0.3s ease;
    z-index: 1050;
    padding: 60px 20px 20px 20px;
    box-sizing: border-box;
    color: #333; /* Darker text color for better contrast on light background */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.new-main-menu.open {
    right: 0; /* Slide in from the right */
}

.new-main-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.new-main-menu ul li {
    margin-bottom: 10px; /* Reduced space between items */
    width: 100%;
}

.new-main-menu ul li .menu-link {
    display: block;
    padding: 10px 15px; /* Adjusted padding */
    color: #333; /* Darker text color */
    text-decoration: none;
    font-size: 1.1em; /* Slightly smaller font size */
    font-weight: bold;
    border: none; /* Removed border */
    text-align: left;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.new-main-menu ul li .menu-link:hover {
    background-color: rgba(0, 0, 0, 0.05); /* Subtle hover effect */
    color: #000;
}

.new-main-menu .language-options {
    margin-top: auto; /* Push to the bottom */
    padding-top: 20px;
    border-top: 1px solid #ddd; /* Separator line */
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    width: 100%;
}


.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5em;
    color: #333;
    cursor: pointer;
}

body.no-scroll {
    overflow: hidden;
}

.prev-btn-asadores {
    left: 0px; /* Cambiado de -25px a -50px */
}

.next-btn-asadores {
    right: 0px; /* Cambiado de -25px a -50px */
}

.bottom-nav {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bottom-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 15px;
}

.bottom-nav a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    padding: 5px 10px;
    transition: color 0.3s;
}

.bottom-nav a:hover {
    color: #000;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .bottom-nav ul {
        gap: 10px;
    }
    .bottom-nav a {
        font-size: 0.8em;
    }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .section11 {
        grid-template-areas:
            "contact-info contact-details"
            "hours-social hours-social"
            "carousel carousel";
        grid-template-columns: 1fr 1fr;
    }
    .prev-btn-asadores {
        left: 10px;
    }
    .next-btn-asadores {
        right: 10px;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 3em;
    }
    .section1 h1 {
        font-size: 4em;
    }
    p {
        font-size: 1em;
    }
    .section-cuisine-gallery .gallery-images img {
        width: calc(50% - 10px); /* Two images per row */
    }
    .slide-asadores {
        min-width: calc((100% / 2) - (20px / 2));
    }
}

@media (max-width: 768px) {
    section {
        padding-left: 2%;
        padding-right: 2%;
    }
    .content-overlay {
        margin-left: 0;
        max-width: 95%;
    }
    .section1 h1 {
        font-size: 3em;
    }
    .section9 {
        flex-direction: column;
        height: auto;
    }
    .section9 .content-left,
    .section9 .content-right {
        width: 100%;
        min-height: 50vh;
        padding: 5% 5%;
        text-align: center;
        align-items: center;
    }
    .section9 .content-left {
        order: 2;
    }
    .section9 .content-right {
        order: 1;
    }
    .section11 {
        grid-template-areas:
            "contact-info"
            "contact-details"
            "hours-social"
            "carousel";
        grid-template-columns: 1fr;
        text-align: center;
        align-items: center;
    }
    .section11 .contact-info,
    .section11 .contact-details,
    .section11 .hours-social {
        align-items: center;
    }
    .section11 .sagardi-group-logos,
    .section11 .social-icons-bottom {
        justify-content: center;
    }
    .menu-button {
        top: 20px;
        right: 20px;
    }
    .new-main-menu {
        width: 250px;
    }
    #asadores-section h1 {
        font-size: 2em;
    }
    .slider-container-asadores {
        width: 90%;
    }
    .slide-asadores {
        min-width: 100%;
        gap: 0;
    }
    .slider-btn-asadores {
        font-size: 1.2rem;
        width: 40px;
        height: 40px;
    }
    .prev-btn-asadores {
        left: 5px;
    }
    .next-btn-asadores {
        right: 5px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5em;
    }
    .section1 h1 {
        font-size: 2.5em;
    }
    .section-cuisine-gallery .gallery-images img {
        width: 100%; /* One image per row */
    }
    .menu-button {
        width: 45px;
        height: 45px;
    }
    .new-main-menu {
        width: 220px;
    }
}

/* --- ESTILOS DEL ENCABEZADO FIJO (ACTUALIZADO) --- */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 4%;
    display: flex;
    justify-content: space-between; /* Alinea los 3 bloques principales */
    align-items: center;
    z-index: 1000;
    box-sizing: border-box;
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.sticky-header.scrolled {
    background-color: #e0d9cc; /* Tu color de fondo */
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

/* Contenido Central (Logo y Botones) */
.header-center-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px; /* ¡AQUÍ AJUSTAS LA SEPARACIÓN! Reduce este valor para acercarlos más */
}

.logo-sagardi-container-header {
    position: relative;
    transform: none;
}

.logo-sagardi-header {
    width: 140px;
    height: auto;
}

/* Espaciador a la izquierda para mantener el bloque central perfectamente centrado */
.header-left-spacer {
    /* Debe tener el mismo ancho que el botón de menú */
    width: 50px;
}

/* Ajustamos el botón de menú para que tenga un ancho definido */
.sticky-header .menu-button {
    position: relative;
    top: auto;
    right: auto;
    width: 50px; /* Ancho definido */
    border: 2px solid #333;
    color: #333;
    background-color: transparent;
}

.sticky-header .menu-button .fas.fa-bars {
    color: #333; /* Icono oscuro para que se vea sobre el fondo claro */
}

/* Estilo para los botones Reserva y Regalar */
.header-button {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    padding: 8px 16px;
    border: 2px solid #333;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    white-space: nowrap; /* Evita que el texto se parta en dos líneas */
}

.header-button:hover {
    background-color: #333;
    color: #e0d9cc;
}

/* --- ADAPTACIÓN PARA MÓVILES --- */
@media (max-width: 768px) {
    .sticky-header {
        padding: 10px 4%;
        flex-direction: column; /* Stack items vertically */
        gap: 15px; /* Space between the logo/buttons block and the menu button */
    }

    .header-center-content {
        flex-direction: column; /* Stack logo and buttons vertically */
        gap: 10px; /* Space between logo and buttons */
        width: 100%; /* Ensure it takes full width */
    }

    /* Make the header buttons visible and style them for mobile */
    .header-center-content .header-button {
        display: block; /* Make them visible again */
        width: calc(100% - 40px); /* Adjust width to account for padding/margin */
        max-width: 250px; /* Optional: limit max width */
        text-align: center;
        padding: 10px 0; /* Adjust padding for mobile buttons */
        font-size: 14px;
    }

    /* Reducimos el tamaño del logo en móviles */
    .logo-sagardi-header {
        width: 110px;
    }

    /* Hide the left spacer as it's not needed in column layout */
    .header-left-spacer {
        display: none;
    }

    /* Adjust menu button position for mobile to be top right */
    .sticky-header .menu-button {
        position: absolute; /* Position absolutely within the header */
        top: 10px; /* Adjust as needed */
        right: 15px; /* Adjust as needed */
        border: 2px solid #333;
        color: #333;
        background-color: transparent;
    }
}

/* Contenedor para los botones de la derecha en el header */
.header-buttons-right {
    display: flex; /* Usamos flex para alinear los botones */
    align-items: center;
    gap: 20px; /* Espacio entre los botones */
}

/* Estilo para los nuevos botones del header */
.header-button {
    color: #333; /* Color de texto oscuro para que contraste con el fondo #e0d9cc */
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    padding: 8px 16px;
    border: 2px solid #333; /* Borde oscuro */
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.header-button:hover {
    background-color: #333; /* Fondo oscuro al pasar el ratón */
    color: #e0d9cc; /* Texto claro al pasar el ratón */
}

/* Ajuste para el header cuando se hace scroll */
.sticky-header.scrolled {
    background-color: #e0d9cc; /* Tu color de fondo */
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

/* Sección 4: Cocina - Fuego */
.section3 {
    background-image: url('img/fuego.png');
}

.section3 .content-overlay {
    max-width: 600px;
    align-items: flex-start;
}

.section3 .icon-links {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 20px;
    width: 100%;
    justify-content: flex-start;
}

.section3 .icon-links a {
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: bold;
    font-family: 'Swift-Bold', serif; /* Aplicamos Swift-Bold aquí */
}

.section3-icon {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
}

.section3 .small-text {
    font-size: 0.9em;
    margin-top: 20px;
    max-width: none;
    font-family: 'Swift-Light', serif; /* Aplicamos Swift-Light aquí */
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    .section3 .icon-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .section3-icon {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .section3 .icon-links {
        align-items: center;
    }

    .section3-icon {
        width: 50px;
    }
}