:root {
    --primary-color: hsl(30, 45%, 25%); /* Dark Wood #5c3f23 */
    --secondary-color: hsl(30, 35%, 65%); /* Light Wood */
    --transparent-secondary-color: hsla(30, 35%, 65%, 0.9); /* Light Wood */
    --accent-color: hsl(45, 60%, 50%); /* Golden Yellow */
    --neutral-dark: hsl(30, 10%, 40%); /* Stone Gray */
    --neutral-light: hsl(30, 20%, 85%); /* Sand Beige #e0d8d1 */
    --highlight-color: hsl(75, 30%, 40%); /* Olive Green */
    --contrast-accent-color: hsl(190, 70%, 40%); /* Turquoise Blue (Contrasting Accent) */
    --transparent-color: hsla(0, 0, 0, 0.5);

}

body {
    background: url(../img/wallpaper.jpeg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    background-attachment: fixed;
    font-family: Arial, sans-serif;
    color: var(--neutral-dark);
    margin: 0;
    padding: 0;
    padding-bottom: 100px;
    min-height: 100vh;
}


.tituloCabecera {
    color: var(--secondary-color);
    padding: 20px;
    text-align: center;

}
h1 {
    font-size: 2.5em;
    color: var(--primary-color);
}

h2 {
    color: var(--primary-color);
}

p {
    font-size: 1.2em;
    color: var(--neutral-dark);
    text-align: justify;
}

section {
    background-color: var(--transparent-secondary-color);
    color: var(--primary-color);
    padding: 30px;
    margin: 20px;
    border-radius: 8px;
}

section li a {
    text-decoration: none;

}

/*
 *footer {
 * background-color: var(--primary-color);
 * color: var(--neutral-light);
 * height: 100px;
 * position: relative;
 * top: 100vh;
 }
 */

    .footer {
        background-color: var(--transparent-color);
        /*background-color: var(--primary-color);*/
        color: var(--neutral-light);
        height: 100px;
        position: relative;
        top: 100vh;
    }



    /*
     * iconos sociales
     */

    /* Estilo del ícono */

    .social-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        margin: 0px 5px;
        flex-wrap: wrap;
    }

    .icon-elem {
        list-style: none;
    }

    .icon {
        color: var(--secondary-color); /* Color base: Sand Beige */
        display: inline-block;
        margin: 10px 10px 0px 5px;
        transition: color 0.5s ease, transform 0.5s ease; /* Transición de color y movimiento */
    }

    /* Si el ícono es un SVG, cambiamos el color usando fill */
    .icon svg {
        fill: var(--secondary-color); /* Usamos el color neutral-light para SVG */
        transition: fill 0.5s ease, transform 0.5s ease; /* Transición de fill para SVG */
    }

    /* Si el ícono es una imagen */
    .icon img {
        width: 42px;
        height: auto;
        transition: transform 0.5s ease; /* Transición de movimiento para la imagen */
        filter: brightness(0) invert(1); /* Convertir imágenes a blanco */
    }

    /* Hover effect */
    .icon:hover {
        transform: translateY(-10px); /* Movimiento hacia arriba */
        color: var(--primary-color); /* Cambio de color en hover: Stone Gray */
    }

    /* Si el ícono es un SVG, cambiamos el color usando fill en hover */
    .icon:hover svg {
        fill: var(--secondary-color); /* Cambio de color en hover para SVG */
        /*
         * fill: var(--neutral-dark); /* Cambio de color en hover para SVG */
              */
}

/* Si el ícono es una imagen, cambiamos el filtro de la imagen */
.icon:hover img {
    transform: translateY(-10px); /* Desplazamiento de la imagen */
    filter: brightness(1) invert(0); /* Regresa la imagen a su color original */
}
/*
 * fin iconos sociales
 */

    .button {
        background-color: var(--primary-color);
        color: var(--secondary-color);
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 1em;
    }

    .button:hover {
        background-color: var(--neutral-dark);
    }

    .btn-menu {
        background-color: var(--primary-color);
        color: var(--secondary-color);
        padding: 15px 25px;
        text-decoration: none;
        cursor: pointer;
        border: none;
        border-radius: 8px;
    }
}

/* Styles for the product gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.gallery-item {
    background-color: var(--neutral-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-item p {
    padding: 15px;
    text-align: center;
    background-color: var(--secondary-color);
    margin: 0;
}


@media (max-width:768px) {

}
