/* General */
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, sans-serif;
  background: linear-gradient(to right, #0f172a, #1e3a8a);
  color: white;
}

/* Header */
header {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color:#0f172a;
  color: rgb(249, 245, 245);
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav a {
  color: rgb(255, 253, 253);
  margin-left: 15px;
  text-decoration: none;
  transition: 0.3s;
  justify-content: space-between;
}

nav a:hover {
  color: #60a5fa;
}

/* Section Title */
h2 {
  text-align: center;
  margin-top: 30px;
  font-size: 30px;
}

/* EVENTS CONTAINER  */
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 30px;
}

/* Card */
.card {
  background-color: white;
  color: black;
  padding: 15px;
  width: 260px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  text-align: center;
  transition: 0.3s;
}

/* Hover Effect */
.card:hover {
  transform: translateY(-10px) scale(1.03);
}

/* Image inside card */
.card img {
  width: 100%;
  height: 150px;
  border-radius: 10px;
  object-fit: cover;
}

/* Button */
button {
  margin-top: 10px;
  padding: 10px 15px;
  border: none;
  background: linear-gradient(to right, #2563eb, #3b82f6);
  color: white;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: linear-gradient(to right, #1e40af, #2563eb);
}

/* Contact Section */
#contact {
  text-align: center;
  padding: 40px;
}

#contact input,
#contact textarea {
  width: 60%;
  padding: 10px;
  margin: 10px;
  border-radius: 8px;
  border: none;
}

#contact button {
  background: white;
  color: #1e3a8a;
  font-weight: bold;
}