/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Orbitron:wght@400..900&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200&display=swap');

/* Custom Font: Aldo the Apache */
@font-face {
  font-family: 'Aldo the Apache';
  src: url('../fonts/AldotheApache.woff2') format('woff2'),
       url('../fonts/AldotheApache.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Aldo the Apache', Inter, sans-serif;
  color: #fff;
  background: url('../images/banner1.png') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.logo {
  width: 450px;
  max-width: 80%;
  margin-bottom: 40px;
}

.card {
  background: #1a0023;
  opacity: 0.9;
  padding: 20px;
  border-radius: 20px;
  max-width: 800px;
  width: 100%;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ffcf49;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-style: italic;
}

.location {
  background: #ffcf49;
  color: #1a0023;
  padding: 10px;
  border-radius: 10px;
  font-size: 1.3rem;
  font-weight: normal;
  margin-bottom: 20px;
  font-family: 'Aldo the Apache', Inter, sans-serif;
}

.activities {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: 'Aldo the Apache', Inter, sans-serif;
}

.dates {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.date-box {
  background: #ffcf49;
  color: #1a0023;
  padding: 15px 25px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1.2rem;
  min-width: 120px;
}

.footer {
  font-size: 1rem;
  margin-top: 10px;
}

.footer a {
  color: #fff;
  font-weight: normal;
  text-decoration: underline;
}

@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }

  .location {
    font-size: 1.1rem;
  }

  .date-box {
    font-size: 1rem;
    padding: 10px 15px;
  }
}