
/* Tipografía Marker Felt */
@font-face {
    font-family: 'Marker Felt';
    src: url('../fonts/MarkerFelt.ttf') format('truetype');
    font-display: swap;
}

/* Colores base */
:root {
    --crema: #EDEDA4;
    --gris: #898788;
    --blanco: #ffffff;
    --rojo-claro: #E74C3C;
    --rojo-fuerte: #C0392B;
}

/* Ajustes generales */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Marker Felt', sans-serif;
    background-color: var(--crema);
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* NAVBAR */
.navbar {
    background-color: var(--gris) !important;
    border: none !important;
    box-shadow: none !important;
}

.navbar-brand img {
    height: 55px;
    cursor: pointer;
}

/* Links del menú */
.nav-link,
.dropdown-item {
    color: var(--blanco) !important;
    font-size: 1.1rem;
}

.nav-link:hover,
.dropdown-item:hover {
    color: var(--crema) !important;
    background-color: transparent !important;
}

/* Menú desplegable gris */
.dropdown-menu {
    background-color: var(--gris) !important;
    border: none !important;
    border-radius: 10px;
    padding: 10px 0;
}

/* Temporada Navideña (rojo claro → rojo fuerte al hover) */
.dropdown-item.navidad {
    color: var(--rojo-claro) !important;
    font-weight: bold;
}

.dropdown-item.navidad:hover {
    color: var(--rojo-fuerte) !important;
    background-color: transparent !important;
}

/* Zona central cremita */
.main-content {
    background-color: var(--crema);
    flex: 1;
    padding-bottom: 40px;
}

/* Carrusel */
.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* BOTONES */
.btn-huellitas {
    background-color: var(--gris);
    color: var(--blanco);
    border-radius: 10px;
    border: none;
    padding: 10px 20px;
    transition: 0.3s ease;
    font-size: 1.1rem;
}

.btn-huellitas:hover {
    background-color: #7b7a78;
    color: var(--blanco);
}

/* Tarjetas de productos */
.producto-card {
    border: none;
    background: transparent;
}

.producto-card img {
    border-radius: 12px;
}

/* FOOTER */
.footer-fixed {
    background-color: var(--gris);
    color: var(--blanco);
    margin-top: auto;
    width: 100%;
    padding: 12px 0;
    border-top: 2px solid var(--blanco);
    text-align: center;
}

/* ✅ ÍCONOS A COLOR — SE ELIMINÓ EL FILTRO */
.footer-fixed img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* Hover */
.footer-content a {
    color: var(--blanco);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-content a:hover {
    opacity: 0.7;
}

.my-carousel-item img {
 
  width: 100%;
  height: auto;
  object-fit: contain; /* evita recortes y deformaciones */
  display: block;
  margin: 0 auto;
}


.my-carousel-item.active {
  display: block;
}

html {
  scroll-behavior: smooth;
}
 document.querySelectorAll('.navbar-collapse .dropdown-item').forEach(function(link) {
    link.addEventListener('click', function() {
      const navbar = document.querySelector('.navbar-collapse');
      const bsCollapse = new bootstrap.Collapse(navbar, { toggle: false });
      bsCollapse.hide();
    });
  });
/* ==== Sección Festividades ==== */
.seccion-titulo {
  font-size: 2.2rem;
  font-weight: 700;
    background-color: #f5eee5; /* crema clarito estilo Huellitas Ink */
  letter-spacing: 2px;
}

.seccion-subtitulo {
  font-size: 1.4rem;
  font-weight: 500;
  color: #898788;
}

.producto-box {
  background-color: #f5eee5; /* crema clarito estilo Huellitas Ink */
  padding: 20px;
  
}

@media (max-width: 576px) {
  .seccion-titulo {
    font-size: 1.8rem;
  }
  .seccion-subtitulo {
    font-size: 1.1rem;
  }
  .producto-box {
    padding: 15px;
  }
}
#festividades {
  background: transparent !important;
}

.producto-box {
  background: transparent !important;
  box-shadow: none !important;
}
@media (max-width: 768px) {
  #festividades {
    padding-top: 10px !important;  /* Reducir más el padding-top para móviles */
  }
.producto-box {
  background-color: #f5eee5; /* crema clarito estilo Huellitas Ink */
  padding: 20px;
}

  /* Asegurarnos de que el margen superior del título sea reducido también */
  #almohadon1 h2,
  #festividades h2 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
}

/* Para pantallas más pequeñas */
@media (max-width: 576px) {


  /* Reduce el espacio debajo del menú */
  #festividades {
    padding-top: 0 !important;
  }

  /* Sube el título “Almohadón #1” */
  .seccion-titulo {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  /* Reduce el padding de la caja del producto */
  .producto-box {
    padding: 5px !important;
  }
}
@media (max-width: 768px) {
  .producto-box {
    padding: 10px !important;  /* Ajustar el padding dentro de la caja del producto */
  }
}
/* SOLO MÓVIL — Reducimos espacio debajo del menú */
@media (max-width: 576px) {
  .espaciador-navbar {
    height: 10px !important; /* antes 90px */
  }

  #festividades {
    padding-top: 0 !important;
  }

  .seccion-titulo {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}