/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: white;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("./assets/bg.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem 2rem;
}

/* Slogans Section */
.slogans-section {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.slogan-text {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1px;
  color: #fbbf24;
  text-transform: uppercase;
}

/* Header - Sponsor Section */
.sponsor-section {
  text-align: center;
  margin-bottom: 1rem;
}

.sponsor-logo {
  height: auto;
  max-width: 100%;
  width: 420px;
  padding: 0 1rem;
}


/* Main Event Section */
.event-header {
  text-align: center;
  margin-bottom: 2rem;
}

.anniversary-text {
  font-family: "Crimson Text", serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: #fbbf24;
  margin: 1.5rem 0 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 4px;
  text-transform: uppercase;
}


/* Details Box */
.details-box {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(251, 191, 36, 0.3);
  border-radius: 15px;
  padding: 2.5rem;
  margin: 2rem 0;
  text-align: center;
}

/* Event Details */
.venue-date-title {
  font-size: 1.3rem;
  color: #fbbf24;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Crimson Text", serif;
}

.event-date {
  font-size: 1.8rem;
  font-weight: 400;
  color: #fbbf24;
  margin-bottom: 0.5rem;
}

.event-time {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.venue-name {
  font-size: 1.5rem;
  font-weight: 400;
  color: #fbbf24;
  margin-bottom: 0.5rem;
}

.venue-address {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}


/* Call to Action */
.cta-section {
  text-decoration: none;
  background: #fbbf24;
  color: #1e3a8a;
  padding: 1.5rem;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  margin: 0;
  z-index: 1000;
}

/* Partners Section */
.partners-section {
  margin: 2.5rem 0 2rem 0;
  text-align: center;
}

.partners-title {
    font-size: 1.3rem;
    color: #fbbf24;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: "Crimson Text", serif;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.partner-card {
  padding: 1rem 0 0;
  width: 100%;
  max-width: 300px;
}

.partner-label {
  color: #fbbf24;
  letter-spacing: 2px;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.partner-logo {
  max-width: 160px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
  padding: 6px;
}

/* Additional Info Section */
.info-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.info-icon {
  font-size: 2.5rem;
  color: #fbbf24;
  margin-bottom: 1rem;
}

.info-title {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: white;
}

.info-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Contact Section */
.contact-section {
  text-align: center;
  margin: 2rem 0;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
}

.contact-title {
  font-size: 1.2rem;
  color: #fbbf24;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.contact-numbers {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-number {
  background: rgba(251, 191, 36, 0.1);
  border: 2px solid rgba(251, 191, 36, 0.3);
  border-radius: 8px;
  padding: 1rem 2rem;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.contact-number:hover {
  background: rgba(251, 191, 36, 0.2);
  border-color: rgba(251, 191, 36, 0.5);
  color: white;
  transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sponsor-logo {
        width: 100%;
        max-width: 300px;
    }
  .container {
    padding: 2rem 1rem;
  }

  .slogan-text {
    font-size: 11px;
  }
  .anniversary-text {
    font-size: 2.2rem;
  }

  .details-box {
    padding: 2rem 1.5rem;
  }
  .venue-date-title {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }
  .event-date {
    font-size: 1.5rem;
  }
  .event-time {
    font-size: 1.3rem;
  }
  .venue-name {
    font-size: 1.3rem;
  }
  .venue-address {
    font-size: 1.2rem;
  }
  .info-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .contact-numbers {
    flex-direction: column;
    align-items: center;
  }
  .cta-section {
    padding: 1.2rem 2rem;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {

  .slogan-text {
    font-size: 10px;
  }
  .anniversary-text {
    font-size: 1.8rem;
  }

  .details-box {
    padding: 1.5rem;
  }
  .venue-date-title {
    font-size: 1rem;
    letter-spacing: 1.5px;
  }
  .event-date {
    font-size: 1.3rem;
  }
  .event-time {
    font-size: 1.1rem;
  }
  .venue-name {
    font-size: 1.1rem;
  }
  .venue-address {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .contact-number {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}
