@font-face {
  font-family: 'Momentz';
  src: url('fonts/Momentz.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'bahnschrift';
  src: url('fonts/bahnschrift') format('truetype');
  font-weight: 900;
  font-style: normal;
} 

/* Headings (optional, if you want them Momentz) */
h1, h2 {
  font-family: 'Momentz', cursive;
}

/* Mascot tagline */
.mascot-text {
  font-family: 'Momentz', cursive;
  font-weight: bold;
}

/* Countdown only uses Gilroy */
.countdown {
  font-family: 'GilroyHeavy', sans-serif;
  font-weight: 900;
}


  .mascot-text {
    margin-top: 10px;
    color: #ffffff;
    font-size: 3rem;
    max-width: 90%;
    font-weight: 700;
    line-height: 1.3;
    animation: bounceText 2s infinite;
    letter-spacing: 4px;
  }

.mascot-text {
  font-family: 'Momentz', cursive;
  font-size: 48px;
  text-align: center;
  color: #333;
  line-height: 1.3;
}

.mascot-text .highlight {
  color: #FF5E5E; /* bright red or pick your theme color */
}


.subscribe-section {
  padding-top: 50px; /* Adjust this value as needed */
  min-height: 50vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.subscribe-box {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  padding: 25px 35px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  max-width: 480px;
  width: 90%;
  z-index: 20;
}

.subscribe-line {
  font-family: 'bahnschrift';
  font-size: 22px;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.subscribe-form input[type="text"],
.subscribe-form input[type="tel"],
.subscribe-form input[type="email"] {
  padding: 12px 15px;
  border: none;
  border-radius: 10px;
  outline: none;
  font-size: 16px;
  background: #fff;
  color: #333;
  transition: 0.3s;
}

.subscribe-form input:focus {
  box-shadow: 0 0 0 2px #06D6A0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  font-family: 'bahnschrift';
  font-size: 14px;
  color: #fff;
  gap: 8px;
  justify-content: flex-start;
}

.subscribe-form button {
  background: #FFD166;
  color: #333;
  border: none;
  border-radius: 10px;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.subscribe-form button:hover {
  background: #06D6A0;
  color: #fff;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .subscribe-section {
    padding-top: 50px; /* slightly less padding for mobile */
    padding-bottom: 100px;
  }

  .subscribe-box {
    width: 70%;
  }
} 


/* ✅ Toast message styling */
.toast {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #06D6A0;
  color: white;
  text-align: center;
  border-radius: 8px;
  padding: 15px;
  position: fixed;
  z-index: 9999;
  left: 50%;
  bottom: 30px;
  font-size: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: opacity 0.5s, bottom 0.5s;
  opacity: 0;
}

.toast.show {
  visibility: visible;
  opacity: 1;
  bottom: 50px;
}

/* Error toast variant */
.toast.error {
  background-color: #EF476F;
}

/* Social section */
.social-section {
  text-align: center;
  color: #fff;
  z-index: 20;
}

.follow-text {
  font-family: 'bahnschrift', sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  font-size: 36px;
}

.social-icons a {
  color: #FFD166;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #06D6A0;
}

/* Footer */
.footer {
  margin-top: 50px;
  padding: 20px 10px;
  text-align: center;
  font-size: 14px;
  font-family: 'bahnschrift', sans-serif;
  color: #fff;
  opacity: 0.85;
  z-index: 20;
}

.footer a {
  color: #FFD166;
  font-family: 'bahnschrift', sans-serif;
  font-weight: 600;
}

.footer a:hover {
  color: #06D6A0;
}

