/* All the CSS styles for the application */

@import url('reset.css');
@import url('navbar.css');
@import url('hero.css');
@import url('about.css');
@import url('event.css');
@import url('features.css');
@import url('team.css');
@import url('footer.css');

/*Animation Keyframes*/
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 5px #00aaff, 0 0 10px #00aaff, 0 0 15px #00aaff; }
  50% { box-shadow: 0 0 10px #00aaff, 0 0 20px #00aaff, 0 0 30px #00aaff; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-100px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(100px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/*Hero Section */
.hero-content-right {
  flex: 1;
  min-height: 400px;
  max-width: 500px;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.6s ease-in-out;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.hero-visual {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 12px;
  background-color: #f5faff;
  box-shadow: 0 4px 20px rgba(0, 170, 255, 0.2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*CTA Button*/
.btn-cta {
  background: linear-gradient(135deg, #00aaff, #0077ff);
  color: #fff;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  margin-left: 1rem;
  border: none; /* No border */
  box-shadow: none; /* Removed glow */
}

.btn-cta:hover {
  background: linear-gradient(135deg, #0077ff, #00aaff);
  transform: scale(1.05);
  box-shadow: none; 
}



/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .hero-wrapper {
    flex-direction: column;
    padding: 0 1rem;
  }

  .hero-content-left,
  .hero-content-right {
    min-width: 100%;
    max-width: 100%;
  }

  .hero-visual {
    max-width: 300px;
  }

  .btn-cta {
    align-self: center;
    margin-left: 0;
    margin-top: 1rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .events-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .about-container {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .stats-container {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 250px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }
}
