@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

.featured-card {
  position: relative;
  min-height: 400px;
  border-radius: 1.5rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.featured-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: white;
}

.news-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

body {
  font-family: "Inter", sans-serif;
}
.hero-gradient {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
}
.input-focus-effect:focus {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}
.suggestion-card {
  transition: all 0.2s ease;
}
.suggestion-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}
.social-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.footer-link:hover {
  color: #666;
  transform: translateX(4px);
}
.app-badge {
  transition: all 0.2s ease;
}
.app-badge:hover {
  transform: scale(1.05);
}

footer h3 {
  color: #666 !important;
}

.footer-bottom-links a:hover {
  color: #666;
  transition: color 0.2s ease;
}

.center,
.dot:after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.dot {
  height: 10px;
  width: 10px;
  background: RGBA(28, 185, 214, 1);
  border-radius: 50%;
  position: relative;
}
.dot:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  -webkit-animation: wave 1.7s infinite ease;
  animation: wave 1.7s infinite ease;
}

.circles {
  height: 18px;
  width: 18px;
  border-radius: 50%;
  position: absolute;
  perspective: 100%;
  top: -5px;
  left: -5px;
  -webkit-animation: dots 1.7s infinite ease;
  animation: dots 1.7s infinite ease;
}

@-webkit-keyframes wave {
  0% {
    background: RGBA(28, 185, 214, 1);
  }
  55% {
    height: 25px;
    width: 25px;
  }
  70% {
    background: RGBA(28, 185, 214, 0);
  }
}
@-webkit-keyframes dots {
  0%,
  100% {
    box-shadow: 0px -13px 0 -8px RGBA(28, 185, 214, 1),
      0px -13px 0 -8px RGBA(28, 185, 214, 0.7),
      0px -13px 0 -8px RGBA(28, 185, 214, 0.5),
      0px -13px 0 -8px RGBA(28, 185, 214, 0.2);
  }
  30% {
    box-shadow: 0px -13px 0 -8px RGBA(28, 185, 214, 1),
      -6px -12px 0 -8px RGBA(28, 185, 214, 0.7),
      -11px -8px 0 -8px RGBA(28, 185, 214, 0.5),
      -13px -1px 0 -8px RGBA(28, 185, 214, 0.2);
  }
  100% {
    transform: rotate(360deg);
  }
}

.notification {
  transition: all 0.5s ease;
  transform: translateY(-20px);
  opacity: 0;
}

.notification.show {
  transform: translateY(0);
  opacity: 1;
}

.progress-bar {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 0 0 4px 4px;
  overflow: hidden;
}

.progress-bar .progress {
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  animation: progress 5s linear forwards;
}

@keyframes progress {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.animate-float {
  animation: float 6s infinite ease-in-out;
}

.thank-you-message {
  margin-top: 1rem;
  padding: 1rem;
  background-color: #ecfdf5;
  border: 1px solid #10b981;
  color: #065f46;
  font-weight: 500;
  border-radius: 0.5rem;
  text-align: center;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
