@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Raleway:wght@400;600&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Pacifico', cursive;
}

body,
html {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  color: white;
}

/* Video Background */
.video-bg {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -2;
  object-fit: cover;
}

/* Dark overlay for readability */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 15px;
  text-align: center;
}

header img {
  height: 40px;
  width: auto;
}

header h1 {
  font-family: 'Pacifico', cursive;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  flex: 1 1 100%;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5px;
  text-align: center;
}

/* Retro Header Style */
.content h2 {
  font-family: 'Pacifico', cursive;
  /* Retro script font */
  font-size: 3rem;
  color: #ff6f61;
  /* Vibrant pinkish color */
  /* text-shadow: 4px 4px 0 #0b5d4d, -2px -2px 0 rgba(255, 255, 255, 0.6); */
  /* Layered retro shadow effect */
  margin-bottom: 1rem;
  text-align: center;
  z-index: 2;
  position: relative;
}

/* Retro Subheading Style */
.messagecolor {
  font-family: 'Pacifico', cursive;
  /* Modern sans-serif for readability */
  color: #007e6a;
  /* Retro teal color */
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
  z-index: 2;
  position: relative;
}


/* Content paragraph styling */
.content p {
  margin-top: 15px;
  margin: 20px auto;
  font-size: 1.2rem;
  max-width: 600px;
  line-height: 1.6;
  background: rgba(0, 0, 0, 0.5);
  /* Dark transparent background for text readability */
  padding: 2px 5px;
  border-radius: 12px;
  border: 2px solid #ff6f61;
  /* Pinkish border */
  color: white;
  text-align: center;
  z-index: 2;
  position: relative;
}

/* Button Style */
.btn {
  margin-top: 25px;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  background: #ff6f61;
  /* Retro pink color */
  color: white;
  cursor: pointer;
  transition: 0.3s;
  z-index: 2;
  position: relative;
}

.btn:hover {
  background: #ff6f61;
  /* Slight hover effect */
  transform: scale(1.05);
}

footer {
  background: rgba(0, 0, 0, 0.6);
  padding: 10px;
  font-size: 0.9rem;
  text-align: center;
  flex-shrink: 0;
}

footer a {
  color: #ff4b5c;
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  color: #ff2e44;
  text-decoration: underline;
}

/* Popup Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 15px;
}

.modal-content {
  background: white;
  color: black;
  padding: 10px;
  border-radius: 12px;
  text-align: center;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  position: relative;
}

.modal-content h3 {
  margin-bottom: 15px;
  color: #333;
  font-size: 1.2rem;
}

.modal-content input,
.modal-content select {
  font-family: 'Pacifico', cursive;
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.modal-content button {
  margin-top: 15px;
  padding: 10px 20px;
  border: none;
  background: #ff4b5c;
  color: white;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
}

.modal-content button:hover {
  background: #ff2e44;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  color: #555;
  cursor: pointer;
}

/* Toast Notification */
.toast {
  visibility: hidden;
  min-width: 250px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  padding: 14px;
  position: fixed;
  z-index: 2000;
  left: 50%;
  bottom: 30px;
  font-size: 0.9rem;
  transform: translateX(-50%);
  transition: visibility 0s, opacity 0.5s ease-in-out;
  opacity: 0;
}

.toast.show {
  visibility: visible;
  opacity: 1;
}

/* Sponsor Ribbon */
.sponsors {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 0;
}

.sponsor-track {
  display: flex;
  gap: 40px;
  animation: scrollSponsors 20s linear infinite;
  width: max-content;
  align-items: center;
}

.sponsor-track img {
  height: 40px;
  transition: transform 0.3s;
  object-fit: contain;
}

.sponsor-track img:hover {
  transform: scale(1.1);
}

@keyframes scrollSponsors {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

.contenth2 {
    font-size: 44px;
}
/* Responsive */
@media (max-width: 768px) {
  .content h2 {
    font-size: 2.5rem;
  }

  .messagecolor {
    font-size: 1rem;
  }

  .content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .content h2 {
    font-size: 2rem;
  }

  .messagecolor {
    font-size: 0.95rem;
  }

  .content p {
    font-size: 1rem;
  }
}


.link-gap {
  margin-right: 10px;
  /* Adjust the gap as needed */
}


.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  margin-top: 10px;
}

.video-container iframe,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}


/* Audio control button */
.audio-control {
  position: fixed;
  bottom: 550px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ff6f61;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 100;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
}

.audio-control:hover {
  background: #ff2e44;
  transform: scale(1.1);
}



.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 162.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px; /* optional rounded edges */
}

.video-container iframe,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures video fills the box */
  border: none;
}

 a {
    text-decoration: underline !important;
    transition: color 0.3s ease;
  }

  a:hover {
    color: red !important;
  }

footer a {
   text-decoration: underline; /* optional: remove underline */
}

footer a:hover {
   text-decoration: underline; /* optional: underline on hover */
}
#fireworks {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 22;
  background: transparent !important;
}

#audioControl.playing {
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

