/* Reset básico */
body, h1, h2, h3, p, a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: url("assets/fondo\ rosa.jpg") no-repeat center center fixed;
  background-size: cover;
  color: #333;
  line-height: 1.6;
  padding: 20px;
}

/* Título principal */
.title-container {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  border-radius: 8px;
}

.title-container h1 {
  font-size: 2.5em;
  color: #e75480; /* Rosa fuerte */
}

/* Contenedor principal */
.container {
  display: flex;
  gap: 20px;
}

/* Columnas */
.left-column, .right-column {
  flex: 1;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 8px;
}

/* Subtítulos principales */
.section-title-container {
  background: rgba(255, 192, 203, 0.4);
  padding: 8px;
  margin: 15px 0;
  border-radius: 6px;
}

.section-title-container h2 {
  margin: 0;
  color: #e75480;
}

/* Subtítulo pequeño (P5.js) */
.subtitulo-peque h3 {
  color: #e75480;
  margin: 10px 0;
}

/* Proyectos */
.projects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 15px;
}

.project-card {
  background: #fff;
  border: 1px solid #f8c8dc;
  border-radius: 8px;
  text-align: center;
  padding: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.project-card img {
  width: 100%;
  max-width: 150px;
  border-radius: 6px;
}

.project-card p {
  font-size: 0.9em;
  margin-top: 8px;
}

/* Links */
a {
  text-decoration: none;
  color: #e75480;
}

a:hover {
  text-decoration: underline;
}

/* Botón Wiki */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: #e75480;
  color: white;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #c63b60;
}
