@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;
 
}
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;
}

/* 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);
}


.proyectos{
  color: #e46c98;
}

.titulo h1{
    font-size: 100px;
    font-family: "Channe";
    text-transform: uppercase;
    text-align: center;
    padding-top: 250px;
    padding-bottom: 100px;
}
.galeria {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 100px;
  max-width: 90%;
  margin: 0 auto;
}

/* Cada bloque */
.item {
  display: flex;
  align-items: center;
  gap: 50px;
  
}
.item a{
    width: 40%;
}
/* Imagen a la izquierda */
.item img {
  width: 400px;
  height: auto;
  transition: 0.3s ease-in-out;
  margin-left: 200px;
  align-items: center;
  justify-content: center;
}

.item img:hover {
  filter: brightness(70%);
}

/* Contenedor del texto a la derecha */
.contenido {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 60%;
  padding: 20px;

}

/* Título */
.contenido h2 {
  font-size: 35px;
  color: #4b4b4b;
  font-family: 'Milyuna';
  margin-bottom: 15px;
}

/* Párrafo */
.contenido p {
  font-size: 30px;
  line-height: 1.6;
  color: #333;
  font-family: 'Appleligth';
} 
.contenido h2 a{
    text-decoration: none;
    color: black;

}
.contenido h2 a:hover{
    text-decoration: none;
    color: #e46c98;

}

footer {
    background-color: #fdcee3;
    color: black;
    padding: 20px;
    font-family: Madetommythin;
    font-size: 20px;
    font-weight: bold;
    height: 100px;
    padding: 50px;
    margin-top: 50px;
}

.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.proyectos{
  color: #e46c98;
}


@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;
  }
  .proyectos{
    color: #e46c98;
  }
  .titulo h1 {
    font-size: 40px;
    padding-top: 120px;
    padding-bottom: 60px;
    text-align: center;
  }

  .galeria {
    flex-direction: column;
    gap: 40px;
    max-width: 95%;
    margin: 0 auto;
  }

  .item {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }

  .item a {
    width: 100%;
  }

  .item img {
    width: 90%;
    height: auto;
    margin-left: 0;
  }

  .contenido {
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contenido h2 {
    font-size: 22px;
    margin-bottom: 10px;
    text-align: center;
  }

  .contenido p {
    font-size: 18px;
    line-height: 1.5;
    padding: 0 15px;
    text-align: justify;
  }

  .contenido h2 a {
    font-size: 22px;
  }

  footer {
    font-size: 16px;
    padding: 30px 20px;
    height: auto;
    margin-top: 40px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
  }

  .legal {
    flex-direction: column;
    gap: 10px;
  }

  .marca {
    font-size: 16px;
  }
}
@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;
  }
  .proyectos{
    color: #e46c98;
  }
  .titulo h1 {
    font-size: 70px;
    padding-top: 200px;
    padding-bottom: 80px;
    text-align: center;
  }

  .galeria {
    gap: 70px;
    max-width: 95%;
    margin: 0 auto;
  }

  .item {
    flex-direction: row;
    gap: 40px;
    align-items: center;
  }

  .item a {
    width: 45%;
  }

  .item img {
    width: 100%;
    max-width: 350px;
    height: auto;
    margin-left: 100px;
  }

  .contenido {
    width: 55%;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
  }

  .contenido h2 {
    font-size: 30px;
    margin-bottom: 15px;
  }

  .contenido p {
    font-size: 24px;
    line-height: 1.6;
    text-align: justify;
  }

  .contenido h2 a {
    font-size: 30px;
  }

  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;
  }
  .proyectos{
    color: #e46c98;
  }
  .titulo h1 {
    font-size: 60px;
    padding-top: 180px;
    padding-bottom: 70px;
    text-align: center;
  }

  .galeria {
    gap: 60px;
    max-width: 95%;
    margin: 0 auto;
  }

  .item {
    flex-direction: row;
    gap: 30px;
    align-items: center;
  }

  .item a {
    width: 45%;
  }

  .item img {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin-left: 60px;
  }

  .contenido {
    width: 55%;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
  }

  .contenido h2 {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .contenido p {
    font-size: 20px;
    line-height: 1.5;
    text-align: justify;
  }

  .contenido h2 a {
    font-size: 26px;
  }

  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.peoyectos {
    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;
  }
  .proyectos{
    color: #e46c98;
  }
}

/* Desplegar el menú hamburguesa al hacer click */
.menu-toggle.active + .menu-movil {
  display: flex;
}
