/*FONT*/
@import url('https://fonts.googleapis.com/css2?family=Afacad:ital,wght@0,400..700;1,400..700&family=Archivo:ital,wght@0,100..900;1,100..900&family=Cinzel:wght@400..900&family=M+PLUS+Rounded+1c:wght@300;400;500;700&family=Roboto:wght@400;700&display=swap');
:root {
    --font-primary: "Afacad", serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary), serif;

}
/*HEADER Y H1*/
header {
    width: 100%;
    height: 100vh;
    background-image: url("../assets/header3.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-size: 3rem;
    display: flex;
    justify-content: center;
    align-items: flex-start; /
position: relative;
}

header h1 {
    font-size: 15rem;
    margin-top: 60vh;
    transform: translateY(-50%);
    background: linear-gradient(to right, #38ea38, #ffffff, #ff8dc8);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    color: transparent;
    animation: gradientAnimation 4s linear infinite;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}
/*NAV*/
.bottom-nav {
    position: fixed;
    bottom: 20px;
    width: 90%;
    max-width: 600px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Ajusta la sombra para equilibrar */
    z-index: 999;
}

.bottom-nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center; /* Añade alineación vertical */
    padding: 1rem 0;
    margin: 0; /* Asegura que no hay márgenes */
    height: 100%; /* Asegura que la lista ocupa toda la altura */
}

.bottom-nav ul li {
    display: flex; /* Añade flexbox al elemento li */
    align-items: center; /* Centra verticalmente el contenido */
    height: 100%; /* Asegura que li ocupa toda la altura */
}

.bottom-nav ul li a {
    display: flex; /* Añade flexbox al enlace */
    align-items: center; /* Centra verticalmente el contenido */
    color: black;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 10px; /* Añade el border-radius aquí */
}

.bottom-nav ul li a:hover {
    background-color: black;
    color: white;
    border-radius: 10px; /* Asegura que el border-radius también esté en el hover */
}

.bottom-nav ul li a.active {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px; /* Asegura que el border-radius también esté en el estado activo */
}

/*LOGO*/
.logo {
    position: absolute; /* Posiciona el logo de forma absoluta */
    left: 0; /* Mueve el logo a la izquierda del todo */
    padding: 2rem;
    width: 50px;
    height: 50px;
}

/*MAIN*/
/* Estilos para la sección de texto desplazable */
.marquee {
    width: 100%;
    height: 20vh; /* Ocupa el 20% del alto del main */
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    position: relative;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 10s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.marquee-content p {
    display: inline-block;
    margin: 0;
    font-size: 9rem;
}

.marquee::before,
.marquee::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px; /* Grosor de la línea */
    background-color: black; /* Color de la línea */
}

.marquee::before {
    top: 0;
}

.marquee::after {
    bottom: 0;
}

/* Nueva sección con fondo y contenedores */
.section-content {
    background-color: #e7fe52;
    display: flex;
    justify-content: center; /* Center columns horizontally */
    align-items: center; /* Center columns vertically */
    height: 80vh; /* Occupies 80% of the main height */
    padding: 2rem;
}

.section-content .column {
    font-size: 4rem;
    flex: 1;
    padding: 1rem;
    display: flex;
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    text-align: center; /* Center text inside the column */
    overflow: hidden; /* Oculta cualquier contenido que sobresalga */
}

.section-content .column img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Asegura que la imagen se ajuste dentro del contenedor */
    width: 100%; /* Asegura que la imagen ocupe el 100% del ancho del contenedor */
    height: auto; /* Mantiene la proporción de la imagen */
}

/*FOOTER*/
/* Add this to styles.css */
.footer {
    width: 100%;
    height: 100vh;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.footer h2 {
    font-size: 10rem;
    margin-bottom: 2rem;
}

.footer-content {
    width: 100%;
    max-width: 1200px;
}

.footer .row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.footer .column {
    flex: 1;
    padding: 1rem;
    text-align: center;

}

.footer .column a {
    display: block;
    margin: 0.5rem 0;
    text-decoration: none;
    color: black;
}

.footer .column h4 {
    font-size: 2rem;
}
.footer .column p {
    margin-bottom: 1rem; /* Adjust the value as needed */
}

/* Media Query para móviles */
@media (max-width: 767px) {
    /* Ajustes generales */
    * {
        max-width: 100vw;
        box-sizing: border-box;
    }
    body {
        overflow-x: hidden;
    }

    .marquee-content {
        display: inline-block;
        white-space: nowrap;
        animation: marquee 8s linear infinite;
    }

    @keyframes marquee {
        0% {
            transform: translateX(100%);
        }
        100% {
            transform: translateX(-500%);
        }
    }

    /* Header */
    header {
        height: 100vh;
        background-position: center;
    }

    header h1 {
        font-size: 6rem;
        margin-top: 70vh;
        line-height: 1.2; /* Adjust line height for spacing */
        text-align: center; /* Center align the text */
    }

    /* Navegación */
    .bottom-nav {
        width: 100%;
        max-width: 100%;
        bottom: 0;
        left: 0;
        transform: none;
        border-radius: 0;
    }

    .bottom-nav ul {
        padding: 0.5rem 0;
    }

    .bottom-nav ul li a {
        font-size: 0.8rem;
        padding: 0.3rem;
        white-space: nowrap;
    }

    /* Main content */
    .section-content {
        flex-direction: column;
        height: auto;
        padding: 1rem;
    }

    .section-content .column {
        font-size: 2rem;
        padding: 0.5rem;
        width: 100%;
    }

    .section-content .column img {
        max-height: 200px;
        width: auto;
    }



    /* Footer */
    .footer {
        height: auto;
        padding: 2rem 1rem;
    }

    .footer h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .footer-content {
        width: 100%;
    }

    .footer .row {
        flex-direction: column;
    }

    .footer .column {
        padding: 0.5rem;
    }

    .footer .column h4 {
        font-size: 1.2rem;
    }
}


/*PEDIDO*/
.pedido-main {
    background-color: #e7fe52;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    text-align: center;
}

.pedido-main h2 {
    font-size: 7rem;
    margin-bottom: 1rem;
}

.pedido-main p {
    font-size: 2rem;
}



