@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    list-style: none;
}

:root{
    --title-color: #e73c32;
    --bg-color: #1d1d1b;
    --sub-tittle: #ad0443;
    --text-color: #fff;
    --extra-color: #f39200;
}

body {
    background-image: url('resorces/imagenes\ de\ fondo/flames.png');
    background-attachment: scroll; 
    background-size: 180%; 
    background-position: center; 
    background-repeat: no-repeat; 
    position: relative;
}


/* Contenedor de la imagen */
.image-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Altura completa de la ventana */
    overflow: hidden;
}

/* Imagen de fondo */
.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; /* Colocar la imagen detrás de todo el contenido */
}

/* Degradado sobre la imagen */
.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)); /* Degradado */
    z-index: 0; /* Asegurarse de que el degradado esté sobre la imagen */
}

/*HEADER - ANUNCIO*/

#logo{
    width: 5rem;
    height: auto;
}

#img-inicio{
    width: 11em;
    height: auto;
}

/*LOCAL*/
.mb-4{
    color: var(--title-color);
}


#owl-carousel3 {
    display: block;
    position: relative;
    width: 100%;
    height: 45em;
    border-radius: 124px;
    overflow: hidden;
}

#owl-carousel3 .item {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}


#owl-carousel3 .item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 10px;
}


@media (max-width: 899px) {
    #owl-carousel3 {
        height: 10em; /* Altura para pantallas pequeñas */
    }
}

@media (min-width: 820px) and (max-width: 899px) {
    #owl-carousel3 {
        height: 24em; /* Altura para pantallas medianas */
    }
}

@media (min-width: 900px) and (max-width: 1023px) {

    #owl-carousel3 .owl-dots {
        display: none; /* Ocultar puntos de navegación en pantallas como la del iPad Pro */
    }
}

@media (min-width: 1024px) {
    #owl-carousel3 .owl-dots {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
    }

    #owl-carousel3 .owl-dots .owl-dot {
        background-color: var(--bg-color);
        border-radius: 50%;
        width: 10px;
        height: 10px;
        margin: 0 5px;
        cursor: pointer;
    }

    #owl-carousel3 .owl-dots .owl-dot.active {
        background-color: var(--title-color);
    }
}





/*CAROUSEL DE CARACTERISTICAS DE LOS PEDIDOS*/
#owl-carousel1 .item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 150px;
}

#owl-carousel1 span{
    color: #1d1d1b;
}

/*METODOS DE PAGO*/
.payment-icon {
    width: 80px;
    height: auto;
    filter: grayscale(50%); /* Íconos en tonos grises para elegancia */
    transition: filter 0.3s ease, transform 0.3s ease;
}

.payment-icon:hover {
    filter: grayscale(0); /* Ícono se colorea al pasar el mouse */
    transform: scale(1.1); /* Ligero zoom al pasar el mouse */
}


h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #ff007f; /* Puedes ajustar el color a tu branding */
}

p.text-muted {
    font-size: 1rem;
    margin-bottom: 2rem;
}


/*SECCION DE PRODUCTOS*/
#products-section{
    margin-bottom: 30px;
}
#products-section img{
    width: 100px;
    box-shadow: 0px 0px 1px var(--extra-color);
    border-radius: 50px;
}
#products-section h5{
    font-size: 14px;
    color: black;
    text-align: center;
}
#products-section .precio {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--sub-tittle)
}

#product-section .textA{
    color: #f39200;
}

/* Aplicar transición suave a los productos */
#product-1, #product-2, #product-3, #product-4, #product-5, #product-6, #product-7, #product-8, #product-9 {
    transition: filter 0.3s ease, transform 0.3s ease;
}

/* Aplicar efecto hover a los productos */
#product-1:hover, #product-2:hover, #product-3:hover, #product-4:hover, #product-5:hover, #product-6:hover, #product-7:hover, #product-8:hover, #product-9:hover {
    transform: scale(1.1); /* Ligero zoom al pasar el mouse */
}

.imagen {
    border: 2px solid #1d1d1b; /* Ancho de 2px, estilo sólido, color #1d1d1b */
    padding: 10px; /* Espaciado interno */
    margin: 10px; /* Espaciado externo */
}

@media(width>900px){
    #products-section img{
        width: 250px;
    }
    #products-section h5{
        font-size: 25px;
    }

    #products-section span{
        font-size: 20px;
    }
}

#bt-all{
    background-color: var(--bg-color);
    transition: filter 0.3s ease, transform 0.3s ease;
}
#bt-all:hover {
    filter: grayscale(0); /* Ícono se colorea al pasar el mouse */
    transform: scale(1.1); /* Ligero zoom al pasar el mouse */
}



/*FOOTER*/

footer{
    margin-top: 10px;
    position: relative;
    display: grid;
    grid-template-columns: 400px repeat(3, 1fr);
    gap: 2rem;
    background-color: var(--bg-color);
}

footer .column{
    margin-top: 20px;
}

footer .column img{
    max-width: 100px;
    margin-bottom: 2rem;
}

footer .column p{
    color: var(--text-color);
    margin-bottom: 2rem;
}

footer .column .socials{
    display: flex;
    align-items: center;
    gap: 1rem;
}

footer .column .socials a{
    color: var(--extra-color);
    border: 1px solid #ccc;
    padding: 5px 10px;
    font-size: 1.25rem;
    border-radius: 100%;
    transition:  all 0.3s ease;
}

footer .column .socials a:hover{
    color: var(--text-color);
    background-color: var(--title-color);
    border-color: var(--title-color);
}

.tittle{
    color: var(--title-color);
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 500;
}

footer .column > a{
    display: block;
    color: var(--text-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

footer .column > a:hover{
    color: var(--title-color);
}

.copyright{
    max-width: 1200px;
    margin: auto;
    padding:  1rem;
    color: var(--sub-tittle);
    font-size: 0.8rem;
    text-align: center;
}

@media(width<900px){
    footer{
        grid-template-columns: 1fr 200px;
    }
}

@media(width<600px){
    footer{
        grid-template-columns: 1fr 150px;
    }
}
