:root {
  --primary: #0b3c5d;
  --secondary: #1d6fa5;
  --accent: #f2b705;
  --dark: #0f172a;
  --gray: #475569;
  --light: #f8fafc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Nunito Sans', sans-serif;
  color: var(--dark);
  background: var(--light);
  line-height: 1.7;
}

/* HERO */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: #fff;

  background-image: url("src/soltero-fest-cover.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay oscuro para legibilidad */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

/* Contenido encima del overlay */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
}

.hero .eyebrow {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.75rem;
  opacity: 0.9;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  margin: 16px 0;
  font-weight: 800;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.95;
  max-width: 760px;
  margin: 0 auto;
}

.hero-badge{
  color: var(--accent);
  display: inline-block;
  font-weight: 700;
}

/* SECTIONS */
.section {
  max-width: 1200px;
  margin: auto;
  padding: 90px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;

  &.alt {
    background: #ffffff;
  }

  h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
  }

  p {
    color: var(--gray);
    font-size: 1.05rem;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 30px 24px;
  }
}

.intro {
  grid-template-columns: 1.2fr 0.8fr;
}

.experience {
  grid-template-columns: 1fr;
  text-align: center;

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

@media (min-width: 600px) {
  .experience {
    .cards {
      margin-top: 50px;
    }
  }
}

.card {
  background: #fff;
  padding: 40px 32px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);

  h3 {
    margin-top: 0;
    color: var(--secondary);
  }
}

.image-placeholder {
  position: relative;
  width: 100%;
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #e2e8f0, #cbd5f5);
  display: flex;
  align-items: center;
  justify-content: center;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
  }
}


/* LISTS */
.info-list {
  padding-left: 0;
  list-style: none;
  margin-top: 20px;

  li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--gray);
  }
}

/* FOOTER */
.footer {
  background: #0b1220;
  color: #cbd5e1;
  text-align: center;
  padding: 60px 24px;

  p {
    max-width: 700px;
    margin: auto;
    font-size: 0.95rem;
  }

  a {
    display: inline-block;
    margin-top: 16px;
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .image-placeholder {
    height: 280px;
  }
}

.official-link{
  margin-top: 10px;
}

.official-link .material-icons {
  font-size: 18px;
  position: relative;
  top: 4px; 
}