/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000; /* Negro intenso */
  color: #d6cfc2; /* Beige más apagado */
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
  padding-bottom: 3rem;
}

/* Encabezado */
header {
  background-color: #0a0a0a;
  color: #d6cfc2;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #333;
}

header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
}

.search-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-container input {
  padding: 0.4rem 0.8rem;
  border: none;
  border-radius: 4px;
  background-color: #222;
  color: #d6cfc2;
}

.search-container button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.search-container img {
  width: 20px;
  height: 20px;
  filter: invert(100%);
}

/* Navegación */
nav {
  background-color: #1a1a1a;
  padding: 0.5rem 2rem;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

nav a {
  color: #d6cfc2;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #d4af37;
}

/* Sección Intro */
#intro {
  padding: 2rem;
  text-align: center;
  background-color: #111;
  border-bottom: 2px solid #333;
}

#intro h2 {
  font-size: 1.8rem;
  font-family: 'Playfair Display', serif;
}

/* Galería de videos */
#videos {
  padding: 2rem;
}

#videos h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  border-left: 5px solid #d4af37;
  padding-left: 1rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

/* Tarjetas de video */
.video {
  background-color: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video:hover {
  transform: scale(1.03);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Imagen portada fija y horizontal */
.video-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-bottom: 2px solid #333;
  background-color: #000; /* Por si no carga */
}


.video p {
  padding: 0.5rem;
  text-align: center;
}

.video p a {
  color: #d6cfc2;
  text-decoration: none;
}

.video p a:hover {
  color: #d4af37;
}

/* Paginación */
#pagination-controls {
  text-align: center;
  margin-top: 2rem;
}

#pagination-controls button {
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  background-color: #222;
  color: #d6cfc2;
  border: 1px solid #444;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#pagination-controls button:hover {
  background-color: #333;
}

/* Footer */
footer {
  background-color: #0a0a0a;
  text-align: center;
  padding: 1rem;
  color: #777;
  font-size: 0.9rem;
}
