/* === PALETA HAIKYUU ===
   Fondo: negro puro (#000)
   Texto: gris claro (#e0e0e0)
   Naranja: #FF6600 (acentos)
   Hover: #e65500
   Gris medio: #cccccc
   Gris oscuro: #222
*/

body {
  background-color: #000000;
  color: #e0e0e0;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* === LOGO === */
.logo {
  max-width: 180px;
  height: auto;
  display: block;
  margin: 2rem auto 1rem;
}

/* === BOTÓN CAMBIO DE IDIOMA === */
.lang-switch {
  position: fixed;
  top: 10px;
  right: 10px;
  cursor: pointer;
  background: none;
  color: #FF6600;
  font-size: 1rem;
  border: 1px solid #FF6600;
  padding: 6px 12px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.lang-switch:hover {
  background-color: rgba(255, 102, 0, 0.1);
}

/* === HEADER === */
header {
  text-align: center;
  padding: 2rem 1rem 1rem;
}
header h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #FF6600, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 8px rgba(255,102,0,0.6);
}
header p {
  font-size: 1.2rem;
  color: #cccccc;
  margin-top: 0.5rem;
}

/* === SECCIONES === */
.newsletter,
.about-us {
  background-color: #111111;
  padding: 2rem 1rem;
  text-align: left;
}

.newsletter h2,
.about-us h2 {
  color: #e0e0e0;
  font-weight: 600;
  border-left: 4px solid #FF6600;
  padding-left: 0.5rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.newsletter p,
.about-us p {
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

/* Texto principal justificado a la izquierda */
#about-text {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.6;
}

/* === ENLACES GENERALES === */
a {
  text-decoration: none;
  transition: color 0.2s ease;
}
.link-primary,
.about-us a {
  color: #FF6600;
  font-weight: 600;
}
.link-primary:hover,
.about-us a:hover {
  color: #e65500;
  text-decoration: underline;
}

/* === BOTONES === */
button,
.btn-return {
  background-color: #FF6600;
  color: #000000;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
button:hover,
.btn-return:hover {
  background-color: #e65500;
  transform: translateY(-2px);
}

/* === FORMULARIO NEWSLETTER === */
.styled-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  background-color: #111111;
  border-radius: 10px;
}
.styled-form input,
.styled-form select,
.styled-form textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #333333;
  border-radius: 0.5rem;
  background-color: #222222;
  color: #e0e0e0;
}
.styled-form label {
  font-weight: 600;
  margin-bottom: 4px;
  color: #cccccc;
}
.styled-form textarea {
  min-height: 100px;
  resize: vertical;
}
.styled-form button {
  background-color: #FF6600;
}
.styled-form button:hover {
  background-color: #e65500;
}

/* === ESTADOS DE FOCO EN INPUT === */
.styled-form input:focus,
.styled-form textarea:focus {
  outline: none;
  border-color: #FF6600;
  box-shadow: 0 0 4px rgba(255, 102, 0, 0.4);
}

/* === FOOTER === */
footer {
  background-color: #000000;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #888888;
}

/* === ELEMENTOS OPCIONALES === */
.mascota {
  display: block;
  margin: 1rem auto;
  max-width: 200px;
  height: auto;
}

/* === NAVEGACIÓN (futura) === */

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #fff;
  border-bottom: 1px solid #eaeaea;
}
.logo-nav {
  font-weight: bold;
  font-size: 1.2rem;
  color: #333;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: #333;
  font-weight: 500;
}
.nav-links a:hover {
  color: #f57c00;
}