@font-face {
    font-family: 'Channe';
    src: url('./fonts/Channe.otf');
}
@font-face {
    font-family: 'Madetommythin';
    src: url('./fonts/MADE\ Tommy\ Soft\ Thin\ PERSONAL\ USE.otf');
}
@font-face {
    font-family: 'Milyuna';
    src: url('./fonts/Milyuna-Regular.ttf');
}
@font-face {
    font-family: 'ArquitectaLigth';
    src: url('./fonts/ArquitectaLight.otf');
}
@font-face {
    font-family: 'MilonerRegular';
    src: url('./fonts/MilonerRegular-L3YgD.ttf');
}
@font-face {
    font-family: 'Tanseek';
    src: url('./fonts/Tanseek\ Modern\ Pro\ Arabic.ttf');
}
@font-face {
    font-family: 'Dream';
    src: url('./fonts/Dream\ Orphans.otf');
}
@font-face {
    font-family: 'Appleligth';
    src: url('./fonts/AppleGaramond-Light.ttf');
}
@font-face {
    font-family: 'Apple';
    src: url('./fonts/AppleGaramond.ttf');
}



 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* body {
  background-color: #fff6ed;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
} */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff6ed;
  z-index: 1000;
}

/* Usamos Grid para dividir en tres: izquierda, centro (logo), derecha */
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 95%; /* Esto asegura que la parte de la izquierda y derecha esté alineada con la línea */
  margin: 0 auto; /* Centrado horizontalmente */
  padding: 30px 0; /* Ajusta el padding vertical */
  gap: 20px;
}

/* Línea pegada al header */
.header-line {
  width: 95%;
  height: 10px;
  background-color: #e46c98;
  position: relative;
  z-index: 999;
  margin: 0 auto; /* 🔥 Centrado horizontalmente */
}

/* Logo centrado */
.logo {
  display: flex;
  justify-content: center;
}
.logo img {
  height: 80px;
}

/* Menús de navegación */
nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  gap: 20px;
  text-transform: uppercase;
  width: 100%; /* Asegura que ocupe el 100% del contenedor disponible */
  font-family: 'Madetommythin';

}

nav a {
  text-decoration: none;
  color: black;
  font-size: 25px;
  font-weight: bold;
}

nav a:hover {
  color: #e46c98;
}
nav a:focus,
nav a:active {
  text-decoration: none;
  outline: none;
  color: #f7bfd8;
}
nav svg {
  cursor: pointer;
  height: 35px;
}

nav svg:hover {
  transform: scale(1.2);
  fill: #e46c98;
}
nav a:focus,
nav a:active {
  text-decoration: none;
  outline: none;
  color: #f7bfd8;
}

/* Icono de la cesta */
img[alt="cesta"] {
  height: 35px;
  cursor: pointer;
}

img[alt="cesta"]:hover {
  filter: invert(28%) sepia(93%) saturate(748%) hue-rotate(295deg);
}


.inicio {
  color: #e46c98;
}
 
footer {
  background-color: #fdcee3;
  color: black;
  padding: 20px;
  font-family: Madetommythin;
  font-size: 20px;
  font-weight: bold;
  height: 100px;
  padding: 30px;
  width: 100%;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.legal {
  display: flex;
  gap: 20px;
}

a {
  color: grey;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.marca {
  font-size: 20px;

}
.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
  font-family: 'Madetommythin';
  color: #e46c98;
}
.menu-movil {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background-color: #fff6ed;
  padding: 15px 20px;
  z-index: 1000;
  
}
.menu-movil a {
  font-weight: bold;
  color: black;
  text-decoration: none; /* Opcional: quita el subrayado */
  margin: 10px 0; /* Espacio entre enlaces */
}
.menu-movil a.inicio{
  color: #e46c98;
}

body {
  background-color: #fff6ed;
  font-family: 'Madetommythin', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.mensaje {
  max-width: 600px;
}

.mensaje h1 {
  font-size: 60px;
  color: #e46c98;
  margin-bottom: 20px;
}

.mensaje p {
  font-size: 24px;
  color: #333;
}

.mensaje img {
  width: 200px;
  margin: 30px 0;
}
@media (max-width: 768px) {
  /* -------------------- HEADER -------------------- */
  .header-inner {
    grid-template-columns: auto auto auto;
    padding: 20px;
  }
   .menu-movil.show {
    display: flex;
    font-family: 'Madetommythin';
    text-transform: uppercase;
    font-weight: bold;
    color: black;
  }

  .menu-toggle {
    display: block;
    font-size: 28px;
    cursor: pointer;

  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff6ed;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    display: none;
    z-index: 999;
    
  }

  nav.show {
    display: flex;
    
  }

  nav a {
    font-size: 18px;
    padding: 5px 0;
    text-align: center;
    text-decoration: none;
  }

  nav img[alt="cesta"] {
    height: 25px;
    align-self: center;
  }

  .logo img {
    height: 50px;
  }

 /* -------------------- FOOTER -------------------- */
 footer {
  font-size: 16px;
  padding: 20px;
  height: auto;
  text-align: center;
}

.footer-container {
  flex-direction: column;
  gap: 10px;
}

.legal {
  flex-direction: column;
  gap: 10px;
}
}

@media (min-width: 769px) and (max-width: 1480px) {
.header-inner {
  width: 95%;
  padding: 20px;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
}

.logo img {
  height: 60px;
}

nav {
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

nav a {
  font-size: 20px;
}

nav svg {
  height: 28px;
}

img[alt="cesta"] {
  height: 28px;
}
footer {
  font-size: 18px;
  padding: 40px;
  height: auto;
  margin-top: 60px;
}

.footer-container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.legal {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.marca {
  font-size: 18px;
}
}
@media (min-width: 800px) and (max-width: 1250px) {
  .header-inner {
    width: 95%;
    padding: 15px;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
  }

  .logo img {
    height: 50px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  nav a {
    font-size: 16px;
  }

  nav svg {
    height: 24px;
  }

  img[alt="cesta"] {
    height: 24px;
  }
  footer {
    font-size: 16px;
    padding: 35px;
    height: auto;
    margin-top: 50px;
  }

  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .legal {
    flex-direction: row;
    gap: 15px;
  }

  .marca {
    font-size: 16px;
  }
}
/* Estilos para el menú hamburguesa (775px a 1050px) */
@media (min-width: 775px) and (max-width: 1050px) {
  /* Ocultamos el menú de navegación */
  nav {
    display: none;
  }

  /* Mostramos el ícono de la hamburguesa */
  .menu-toggle {
    display: block;
    font-size: 30px;
    cursor: pointer;
    color: #e46c98; /* Cambia el color según tu preferencia */
  }

  /* Estilos para el contenedor del menú hamburguesa */
  .menu-movil {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #fff6ed;
    padding: 15px 20px;
    z-index: 1000;
  }

  /* Mostrar el menú cuando el icono hamburguesa se activa */
  .menu-movil.show {
    display: flex;
  }

  /* Estilos para los enlaces dentro del menú hamburguesa */
  .menu-movil a {
    font-weight: bold;
    color: black;
    text-decoration: none;
    margin: 10px 0;
    text-align: center;
    font-family: 'Madetommythin';
    text-transform: uppercase;
  }

  .menu-movil a.inicio {
    color: #e46c98;
  }

  /* Estilo para los enlaces cuando el menú hamburguesa está activo */
  nav a {
    font-size: 18px;
    padding: 5px 0;
    text-align: center;
    display: block;
  }

  nav svg {
    height: 24px;
  }

  img[alt="cesta"] {
    height: 24px;
  }
}

/* Desplegar el menú hamburguesa al hacer click */
.menu-toggle.active + .menu-movil {
  display: flex;
}


