/* Fuentes y reset básico */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #111;
  color: #eee;
  scroll-behavior: smooth;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.8); /* Sombra para más "lindura" */
}

/* Logo */
header .logo {
  display: flex;
  align-items: center;
}

header .logo img {
  height: 70px;
  width: auto;
  margin-right: 15px;
}

header .logo h1 {
  font-size: 1.8rem;
  color: #fff;
  margin: 0;
  font-family: 'Noto Serif JP', serif;
}

/* Navbar */
nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease, transform 0.2s ease; /* Transición suave para "lindura" */
}

nav ul li a:hover {
  color: #c0392b;
  transform: scale(1.1); /* Efecto hover sutil */
}

/* HERO */
.hero {
  height: 100vh;
  background: linear-gradient(135deg, #111 0%, #222 100%), url("hero-bg.jpg") no-repeat center/cover; /* Gradiente sutil para más atractivo */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.5rem;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0,0,0,0.7); /* Sombra de texto para pop */
}

.hero p {
  font-size: 1.2rem;
  margin: 15px 0;
}

.btn {
  display: inline-block;
  background: #c0392b;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(192, 57, 43, 0.3); /* Sombra roja sutil */
}

.btn:hover {
  background: #e74c3c;
  box-shadow: 0 6px 12px rgba(192, 57, 43, 0.5); /* Sombra más intensa en hover */
}

/* SECCIONES */
.section {
  padding: 80px 20px;
  text-align: center;
}

.section h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #eee;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.section.dark {
  background-color: #222;
}

/* MENÚ */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: #111;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.8); /* Sombra más profunda para "lindura" */
  transition: 0.3s ease, box-shadow 0.3s ease;
}

.card img {
  width: 100%;
  border-radius: 10px;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.9); /* Sombra aún más intensa en hover */
}

.card h3 {
  color: #c0392b;
  margin: 10px 0;
}

.card p {
  color: #ccc;
}

.card span {
  font-weight: bold;
  color: #fff;
}

/* FORMULARIO */
form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: auto;
}

form input, form button {
  margin: 10px 0;
  padding: 12px;
  border: none;
  border-radius: 5px;
  transition: 0.3s ease;
}

form input {
  background: #222;
  color: white;
}

form input:focus {
  outline: none;
  box-shadow: 0 0 5px #c0392b; /* Foco rojo para "lindura" */
}

form button {
  background: #c0392b;
  color: white;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(192, 57, 43, 0.3);
}

form button:hover {
  background: #e74c3c;
  box-shadow: 0 6px 12px rgba(192, 57, 43, 0.5);
}

/* GALERÍA */
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.galeria-grid img {
  width: 100%;
  border-radius: 10px;
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.6);
}

.galeria-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0,0,0,0.8);
}

/* TESTIMONIOS */
.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.testimonio {
  background: #111;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.8);
  transition: 0.3s ease;
}

.testimonio:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.9);
}

.testimonio p {
  font-style: italic;
  color: #ccc;
}

.testimonio cite {
  display: block;
  margin-top: 10px;
  color: #c0392b;
  font-weight: bold;
}

/* CONTACTO */
#contacto p {
  margin-bottom: 10px;
}

iframe {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.6);
}

/* FOOTER */
footer {
  background: #000;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.8);
}

footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #c0392b;
}


/* Menú Hamburguesa (solo visible en móviles) */
.hamburger {
  display: none; /* Oculto por defecto */
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Navbar */
nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease; /* Para animación suave */
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease, transform 0.2s ease;
}

nav ul li a:hover {
  color: #c0392b;
  transform: scale(1.1);
}

/* Responsive (para móviles y tablets) */
@media (max-width: 768px) {
  .hamburger {
    display: flex; /* Visible en móviles */
  }

  nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #000;
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.8);
    transform: translateY(-100%); /* Oculto arriba */
    opacity: 0;
    visibility: hidden;
  }

  nav ul.active {
    transform: translateY(0); /* Visible al activar */
    opacity: 1;
    visibility: visible;
  }

  nav ul li {
    text-align: center;
  }

  header {
    padding: 10px 20px;
    position: relative; /* Para que el menú desplegable se posicione bien */
  }
}

/* Responsive (para móviles y tablets) - Mejorado para que se "acomode" bien */
@media (max-width: 768px) {
  header {
    padding: 10px 20px;
    flex-direction: column; /* Se apila verticalmente */
    text-align: center;
  }

  header .logo h1 {
    font-size: 1.5rem;
  }

  nav ul {
    flex-direction: column; /* Opciones en columna */
    gap: 15px;
    margin-top: 10px;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section {
    padding: 60px 10px;
  }

  .menu-grid, .galeria-grid, .testimonios-grid {
    grid-template-columns: 1fr; /* Una columna en móviles */
  }

  .card, .testimonio {
    padding: 15px;
  }
}