@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'nunito';
}

.all-content {
    background: #DFDCB9;
}

/* navbar */
#navbar {
    background-color: #201f1f;
    padding-left: 60px;
    font-weight: bold;
    padding-left: 15%;
}

#logo {
    font-size: 23px;
    color: white;
}

#logo img {
    margin-bottom: 15px;
    padding-right: 20px;
    padding-top: 10px;
}

.navbar-nav {
    margin-left: 10px;
}

.nav-link {
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 1px black;
    margin-left: 15px;
    transition: 0.5s ease;
}

.nav-link:hover {
    background-color: #D69F1F;
    color: white;
    border-radius: 5px;
}

.icons {
    margin-left: 30px;
}

.icons img {
    margin-left: 10px;
    transition: 0.5s ease;
    cursor: pointer;
}

.icons img:hover {
    transform: translateY(-5px);
}
.nav-link.activeCata {
    background-color: #D69F1F;
    color: white;
    border-radius: 5px;
}
@media screen and (max-width:330px) {
    #logo {
        font-size: 15px;
    }
}

/* navbar end */

/* filter */
/* Estilos base para el menú de filtros */
.filtro-navegacion {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #201f1f;
    padding: 10px 0;
    margin-top: 20px;
}

.filtro-item {
    color: white;
    font-weight: bold;
    margin: 0 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.filtro-item:hover {
    color: #D69F1F;
}

/* Botón de filtro para móviles */
.filter-button {
    display: none;
    background-color: #201f1f;
    color: white;
    font-weight: bold;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    width: 100%;
}

/* Estilos responsivos */
@media (max-width: 768px) {

    /* Mostrar el botón y ocultar la barra horizontal en móviles */
    .filter-button {
        display: block;
    }

    .filtro-navegacion {
        display: none;
        flex-direction: column;
        background-color: #333;
        padding: 10px 0;
    }

    .filtro-navegacion.active {
        display: flex;
    }

    .filtro-item {
        margin: 10px 0;
        text-align: center;
    }
}

/* filter end */

/* product cards */
.product-cards h1 {
    text-align: center;
    font-weight: bold;
    margin-top: 50px;
    color: #D69F1F;
    text-shadow: 1px 1px 1px black;
    border-bottom: 2px solid #D69F1F;
}

.product-cards .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 10px;
    background-image: url(../image/madera.avif);
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 0 5px black;
    cursor: pointer;
    transition: 0.5s ease;
    min-height: 215px;/* Ajusta la altura mínima según tus necesidades */
}

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

.product-cards .card .card-img-top {
    width: 100%;
    height: 200px;
    /* Ajusta la altura según tus necesidades */
    object-fit: cover;
    /* Esto asegura que la imagen se recorte y se ajuste al contenedor */
}

.product-cards .card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-cards .card-title {
    font-size: 1.2rem;
}

.product-cards .card-text {
    font-size: 1rem;
}

.mt-auto {
    display: block;
    opacity: 0;
    position: absolute;
    top: 10%;
    margin-left: 0;
    width: 10px;
}

.product-cards .card:hover .mt-auto {
    opacity: 1;
    margin-left: 2%;
    transition: 0.5s ease;
    transform: translateY(-5px);
}

.mt-auto i img {
    background-color: transparent;
    height: 40px;
    width: 40px;
    font-size: 20px;
    padding: 0px;
    margin: -5%;
    margin-bottom: 5%;
    cursor: pointer;
}

.mt-auto .btn-secondary {
    background: transparent !important;
    border: none;
    box-shadow: none;
}

.product-cards h3 {
    color: white;
    text-shadow: 1px 1px 1px black;
}

@media (max-width: 768px) {
    .product-cards .card-title {
        font-size: 1.2rem;
    }

    .product-cards .card-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .product-cards .card {
        margin: 5px;
    }
}

.product-cards p {
    color: white;
    font-weight: bold;
}

.product-cards h6 {
    font-size: 20px;
    color: white;
    font-weight: bold;
}

.product-cards h6 span button {
    width: 100px;
    height: 26px;
    font-size: 15px;
    background: transparent;
    letter-spacing: 3px;
    border: 2px solid #D69F1F;
    border-radius: 5px;
    float: right;
    font-weight: bold;
    transition: 0.5s ease;
    cursor: pointer;
}

.product-cards h6 span button:hover {
    background-color: #D69F1F;
    color: white;
}

/* product cards end */

/* footer */
#footer {
    width: 100%;
    background-color: #201f1f;
    box-shadow: 0px 0px 5px black;
    margin-top: 50px;
    color: white;
    padding: 40px 20px;
    position: relative;
    /* Posición relativa para asegurar que el contenido no se desplace */
}

#footer.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.col-md-4.pt-3.py-md-0 {
    flex: 1;
    margin-bottom: 20px;
}

.col-md-4.pt-3.py-md-0#left {
    text-align: left;
}

.col-md-4.pt-3.py-md-0#center {
    text-align: center;
}

.col-md-4.pt-3.py-md-0#right {
    text-align: center;
}

.col-md-4.pt-3.py-md-0 h4 {
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #fdd835;
}

.col-md-4.pt-3.py-md-0 p,
.col-md-4.pt-3.py-md-0 a {
    font-size: 14px;
    color: #b0b0b0;
    text-decoration: none;
    margin-bottom: 10px;
    line-height: 1.6;
}

.col-md-4.pt-3.py-md-0 a:hover {
    color: #fdd835;
}

.google-map iframe {
    border-radius: 10px;
    border: none;
    width: 300px;
    height: 200px;
}

.social-icons {
    display: flex;
    justify-content: center;
    /* Centramos los íconos horizontalmente */
    gap: 15px;
    margin-top: 10px;
}

.social-icons img {
    width: 25px;
    height: 25px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #444;
    padding-top: 15px;
}

.footer-bottom p {
    font-size: 13px;
    color: #777;
    margin-bottom: 5px;
}

/* footer */

html {
    scroll-behavior: smooth;
}

.arrow {
    position: fixed;
    background-color: #D69F1F;
    border-radius: 50px;
    height: 50px;
    bottom: 40px;
    right: 50px;
    text-decoration: none;
    text-align: center;
    line-height: 50px;
}
