/* Colors */
:root {
  --primary: #ff007f;
  --dark: #111;
  --secondary: #7b2ff7;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fafafa;
}

.main-nav {
  background: var(--dark);
}

/* Hero Section */
.hero {
  height: 80vh;
  background: linear-gradient(120deg, var(--primary), var(--secondary));
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Buttons */
.btn-primary-modern {
  background: var(--primary);
  border: none;
}
.btn-primary-modern:hover {
  background: #d6006b;
}

/* Podcast Cards */
.podcast-card {
  border: none;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
}
.podcast-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}


/* Glow hover */
.podcast-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Button Float Effect */
.btn:hover {
  transform: translateY(-3px);
}

/* Hero Zoom Animation */
.hero {
  animation: zoomHero 8s infinite alternate;
}
@keyframes zoomHero {
  0% { background-size: 100%; }
  100% { background-size: 110%; }
}


/* Floating Interview Button */
.interview-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--primary);
  color: white;
  padding: 14px 22px;
  border-radius: 40px;
  border: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  font-size: 17px;
  transition: 0.3s;
  z-index: 999;
}
.interview-btn:hover {
  transform: scale(1.07);
  background: #d6006b;
}

/* Footer */
.footer {
  background: #111;
  padding: 40px 0;
  color: white;
}
.footer a { color: #ddd; }
.footer a:hover { color: var(--primary); }
