/* Previous CSS remains, add these for dynamics */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/css/bootstrap.min.css');

body {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(135deg, #00B7EB 0%, #1A1A1A 100%);
  color: #F5F5F5;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* For parallax */
}

h1, h2 {
  font-family: 'Montserrat', sans-serif;
  color: #FF2E63;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Enhanced navbar with hover animation */
.navbar {
  background-color: #1A1A1A !important;
  border-bottom: 2px solid #00B7EB;
}

.nav-link {
  color: #D3D3D3 !important;
  font-weight: bold;
  transition: color 0.3s, transform 0.3s;
}

.nav-link:hover {
  color: #FF2E63 !important;
  transform: scale(1.1); /* Scale on hover for excitement */
}

/* Hero with parallax scroll */
.hero {
  background: url('images/basketball-action.jpg') center/cover no-repeat fixed; /* Fixed for parallax */
  padding: 100px 0;
  text-align: center;
  color: #F5F5F5;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,183,235,0.5), rgba(255,46,99,0.5)); /* Overlay gradient for speed */
  animation: gradientShift 5s infinite alternate;
}

@keyframes gradientShift {
  0% { opacity: 0.5; }
  100% { opacity: 0.8; }
}

/* Section fade-in */
.section {
  padding: 60px 0;
  background: rgba(26,26,26,0.8);
  margin: 20px 0;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Button hover pulse */
.btn-primary {
  background-color: #FF2E63;
  border-color: #FF2E63;
  transition: background-color 0.3s, transform 0.3s;
}

.btn-primary:hover {
  background-color: #DC143C;
  transform: scale(1.05); /* Pulse scale */
}

/* Bouncing animation for icons or text */
.bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-20px); }
  60% { transform: translateY(-10px); }
}

/* Footer with subtle fade */
.footer {
  background-color: #1A1A1A;
  padding: 20px 0;
  text-align: center;
  color: #D3D3D3;
  border-top: 2px solid #00B7EB;
  opacity: 0;
  transition: opacity 1s ease-in;
}

.footer.visible {
  opacity: 1;
}