/*
  Playtime Educación Inicial – Estilo general
  Este archivo define una paleta de colores suave y alegre, tipografías legibles
  y componentes reutilizables (tarjetas, botones, secciones) para que todo el
  sitio mantenga coherencia visual y un espíritu lúdico. El diseño es
  responsivo y adapta la navegación para pantallas pequeñas mediante un menú
  colapsable controlado desde script.js.
*/

:root {
  --primary: #ff6b6b;      /* rojo coral para encabezados y acentos */
  --secondary: #4ecdc4;    /* turquesa fresco para fondos degradados */
  --accent: #f7d794;       /* amarillo suave para llamadas a la acción */
  --blue: #1e90ff;         /* azul vívido para títulos y enlaces */
  --purple: #9c88ff;       /* violeta alegre para elementos secundarios */
  --bg: #fef9ef;           /* tono crema para el fondo de la página */
  --text-dark: #333333;    /* color de texto principal */
  --text-light: #555555;   /* color de texto secundario */
}

/* tipografía base */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.6;
}

a {
  color: var(--blue);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Encabezado y navegación */
header {
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header .logo {
  display: flex;
  align-items: center;
}

header .logo img {
  /* Ajustamos la altura del logo para que se vea más grande y legible */
  max-height: 60px;
  margin-right: 0.5rem;
}

header nav {
  flex: 1;
}

header nav ul {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  gap: 1rem;
}

header nav a {
  color: #fff;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  transition: background 0.3s;
}

header nav a:hover,
header nav a:focus {
  background: rgba(255, 255, 255, 0.2);
}

/* Enlace de navegación activo */
header nav a.active {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

/* Menú móvil */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
.menu-toggle span {
  width: 24px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  header nav ul {
    position: absolute;
    top: 70px;
    right: 0;
    background: var(--primary);
    flex-direction: column;
    width: 200px;
    text-align: right;
    padding: 1rem;
    border-bottom-left-radius: 8px;
    display: none;
  }
  header nav ul.open {
    display: flex;
  }
  .menu-toggle {
    display: flex;
  }
}

/* Hero banner */
.hero {
  background: linear-gradient(135deg, var(--secondary), var(--blue));
  color: #fff;
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.hero-content {
  flex: 1 1 300px;
  padding-right: 1rem;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #f3f3f3;
}

.hero .hero-img {
  flex: 1 1 300px;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: var(--text-dark);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  display: inline-block;
}

.btn-primary:hover {
  background: #ffe8a1;
}

/* Secciones generales */
.section {
  margin-top: 3rem;
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  margin-top: 0;
  color: var(--blue);
}

.card p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.card .tag {
  display: inline-block;
  background: var(--purple);
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

/* Detalles/accordion */
details {
  margin-bottom: 1rem;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  padding: 0.5rem 1rem;
}
details summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--blue);
  padding: 0.5rem 0;
}
details[open] summary::after {
  content: "▲";
  float: right;
  font-size: 0.8rem;
  margin-left: 0.5rem;
}
details summary::after {
  content: "▼";
  float: right;
  font-size: 0.8rem;
  margin-left: 0.5rem;
}

/* Tablas sencillas */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
table th, table td {
  padding: 0.5rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}
table th {
  background: var(--secondary);
  color: #fff;
}

/* Pie de página */
footer {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 3rem;
}
footer p {
  margin-bottom: 0.25rem;
}

/* Contenedor principal: centra el contenido y deja márgenes laterales */
main {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}