0/* --- Global Page Styles --- */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #7f00ff, #e100ff, #00c6ff);
  background-attachment: fixed;
  background-size: cover;
  color: white;
  text-align: center;
  min-height: 100vh;
}
header {
  display: flex;             /* makes header a flex container */
  justify-content: center;   /* centers children horizontally */
  width: 100%;               /* ensures header spans full page width */
}

/* --- Logo Container --- */
.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
}

/* --- Logo itself --- */
.logo {
  width: 180px;
  height: auto;
  border-radius: 10px;
}

/* --- Media Query for Mobile --- */
@media (max-width: 600px) {
  .logo-container {
    flex-direction: column;
  }

  .logo {
    height: 80px;
    margin: 0 0 10px 0;
  }
}
#event {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  margin: 50px auto;
  max-width: 700px;
}
#event {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  margin: 50px auto;
  max-width: 700px;
}

#event h2 {
  font-size: 30px;
  margin-bottom: 10px;
  color: #fff;
}

#event h3 {
  font-size: 24px;
  color: #ffb700;
  margin-bottom: 15px;
}

#event p {
  color: #e0e0e0;
  font-size: 18px;
  margin-bottom: 25px;
}

.event-flyer {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  display: block;
  margin: 0 auto;
}
.event-button {
  display: inline-block;
  background: linear-gradient(45deg, #ff6a00, #ffb700);
  color: #fff;
  text-decoration: none;
  padding: 12px 25px;
  font-size: 18px;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 20px;
}

.event-button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

}

/* --- Footer Styles --- */
footer {
  margin-top: 60px;
  padding: 20px;
  background: rgba(0,0,0,0.4);
  border-radius: 12px;
}

footer a {
  color: #00e5ff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
