body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background: #f8f8f8;
  color: #222;
  scroll-behavior: smooth;
}

a {
  color: #0047ab;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.hero {
  position: relative;
  background: url('medellin.jpg') center/cover no-repeat;
  color: white;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #ffd700; /* Colombian yellow */
}

.date-location {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.see-more {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #ffd700;
  border-radius: 30px;
  color: #ffd700;
  font-weight: bold;
  transition: background 0.3s;
}

.see-more:hover {
  background: #ffd700;
  color: #000;
}

.twitter-button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #1da1f2;
  color: white;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s;
}

.twitter-button:hover {
  background: #0d8ddb;
}

.info-sections {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

section {
  margin-bottom: 40px;
  background: #fff;
  padding: 20px;
  border-left: 5px solid #ce1126; /* Colombian red */
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

section h2 {
  margin-top: 0;
  color: #0033a0; /* Colombian blue */
}

footer {
  text-align: center;
  padding: 20px;
  background: #0033a0;
  color: white;
}

/* Mobile styles */
@media screen and (max-width: 600px) {
  .hero {
    height: 100vh;
    background-position: center top;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .date-location {
    font-size: 1.2rem;
  }

  .see-more {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .twitter-button {
    font-size: 0.9rem;
    padding: 8px 16px;
  }

  .info-sections {
    padding: 0 15px;
  }

  section {
    padding: 16px;
  }

  section h2 {
    font-size: 1.2rem;
  }
}
