@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* Custom Variables and Classes */
:root {
  --background: 0 0% 98%;
  --foreground: 0 0% 0%;

  --card: 0 0% 100%;
  --card-foreground: 0 0% 0%;

  --primary: 3 85% 58%;
  --accent: 3 75% 48%;

  --border: 0 0% 88%;
}

body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

.text-gradient {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(to right, hsl(var(--primary)), hsl(var(--accent)));
}

.glass-card {
  background-color: hsl(var(--card)/0.8);
  backdrop-filter: blur(1rem);
  border: 1px solid hsl(var(--border)/0.5);
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.hover-lift {
  transition: all 0.3s;
}
.hover-lift:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.gradient-border {
  background: linear-gradient(hsl(var(--card)), hsl(var(--card))) padding-box,
              linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent))) border-box;
  border: 2px solid transparent;
}

.shimmer-bg {
  background: linear-gradient(90deg, transparent 0%, hsl(var(--primary)/0.1) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Custom CSS */
.headshot-image{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}
/* Podcast section on speaking page */
.podcast-section {
  padding: 30px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.podcast-title {
    font-size: 41px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 20px;
    text-align: center;
}

.podcast-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.podcast-card {
  position: relative;
  width: calc(33.3% - 15px);
  height: 197px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.podcast-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background-color: #e53935;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: none;
}

.play-button svg {
  width: 28px;
  height: 28px;
  color: white;
  margin-left: 4px;
}

.podcast-card:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(229, 57, 53, 0.5);
}
nav.fixed {
    position: fixed;
    background: #fff;
}
.btn-primary {
    background: #EF4239;
    color: #fff;
    width: 107px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-items {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-right: 35px;
    font-size: 14px;
}

.nav-items a {
    color: #1F242E;
    position: relative;
}
.nav-items li.current_page a:after {
    width: 24px;
    height: 4px;
    position: absolute;
    content: '';
    left: 50%;
    bottom: -10px;
    background: #EF4239;
    border-radius: 30px;
    margin-left: -12px;
}

.nav-items li.current_page a {
    color: #EF4239;
}

@media (max-width: 768px) {
  .podcast-section {
    padding: 40px 20px;
  }

  .podcast-title {
    font-size: 36px;
  }

  .podcast-grid {
    flex-direction: column;
    align-items: center;
  }

  .podcast-card {
    width: 100%;
    max-width: 351px;
  }
}
