* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  overflow: hidden;
}

/* Background */
.bg {
  position: fixed;
  inset: 0;
  background: url("../images/mmbg.png") center / cover no-repeat;
}

.overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 235, 0, 0.85), rgba(255, 220, 0, 0.9), rgba(255, 245, 150, 0.95));
}

/* Content */
.content {
  position: relative;
  z-index: 2;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* Logo */
.logo-text img {
  height: 125px;
}

/* Typing Text */
.typing-container {
  height: 70px;
  margin-bottom: 30px;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.typing-text {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -1px;
  min-height: 70px;
  display: flex;
  color:#761309;
  align-items: center;
}

.cursor {
  display: inline-block;
  width: 3px;
  height: 50px;
  background-color: white;
  margin-left: 5px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* Countdown */
.countdown {
  display: flex;
  gap: 25px;
  margin-bottom: 150px;
}

.box {
  min-width: 90px;
}

.value {
  font-size: 3rem;
  font-weight: 800;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* ==============================
   EXTRA SMOOTH SECONDS ANIMATION
   ============================== */
.seconds-container {
  position: relative;
  height: 70px;
  overflow: hidden;
}

.seconds-value {
  font-size: 3rem;
  font-weight: 800;
  color: #fe1a27;
  will-change: transform;
}

/* Gentle glide animation */
@keyframes smoothSlideUp {
  0% {
    transform: translateY(60%);
  }
  40% {
    transform: translateY(10%);
  }
  100% {
    transform: translateY(0);
  }
}

/* Contact Info */
.contact-info {
  display: flex;
  /* flex-direction: column; */
  gap: 50px;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: -120px;
  letter-spacing: 0.5px;
}

/* .contact-item {
        padding: 12px 25px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border-radius: 50px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
        cursor: pointer;
      } */

/* .contact-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
} */


.contact-item {
  color:#015eb4;
}

/* Responsive */
@media (max-width: 768px) {
  .typing-text {
    font-size: 2.5rem;
    min-height: 60px;
  }

  .cursor {
    height: 45px;
  }

  .countdown {
    gap: 15px;
  }

  .box {
    min-width: 70px;
  }

  .value,
  .seconds-value {
    font-size: 2.5rem;
  }

  .contact-info {
    font-size: 1.1rem;
  }

  .logo {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
  }

  .logo-text {
    width: 65px;
    height: 65px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .typing-text {
    font-size: 2rem;
    min-height: 50px;
  }

  .cursor {
    height: 35px;
  }

  .countdown {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .box {
    min-width: 60px;
  }

  .value,
  .seconds-value {
    font-size: 2rem;
  }

  .contact-info {
    font-size: 1rem;
  }

  .contact-item {
    padding: 10px 20px;
  }

  .logo {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .logo-text {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }
}

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
  opacity: 0;
}

.delay-1 {
  animation-delay: 0.3s;
}
.delay-2 {
  animation-delay: 0.6s;
}
.delay-3 {
  animation-delay: 0.9s;
}
