/* homepage.css */

/* Variables */
:root {
  --bg-primary: #f4f4f4;
  --bg-secondary: #ffffff;
  --text-primary: #333333;
  --accent: #ffae42;
  --shadow: rgba(0,0,0,0.1);
  --radius: 0.5rem;
}

/* Container */
.hp-container {
  background: var(--bg-primary);
  color: var(--text-primary);
}

/* Hero */
.hp-hero {
  height: 80vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}
.hp-hero__content {
  background: rgba(255,255,255,0.8);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px var(--shadow);
}
.hp-hero__title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hp-hero__subtitle {
  margin-bottom: 1.5rem;
}
.hp-hero__btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 2px 6px var(--shadow);
  transition: transform 0.2s;
}
.hp-hero__btn:hover {
  transform: translateY(-2px);
}

/* Updates Cards */
.hp-updates {
  padding: 4rem 0;
  background: var(--bg-secondary);
}
.hp-updates h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.hp-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.hp-card {
  background: var(--bg-primary);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hp-card img {
  width: 100%;
  height: auto;
}
.hp-card h3 {
  margin: 1rem;
}
.hp-card__excerpt {
  flex: 1;
  margin: 0 1rem 1rem;
}
.hp-card__link {
  margin: 0 1rem 1rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: bold;
}

/* Podcast Section */
.hp-podcast {
  padding: 4rem 0;
  background: var(--bg-primary);
}
.hp-podcast h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.hp-podcast__embed {
  max-width: 700px;
  margin: 0 auto 1.5rem;
}
.hp-podcast__intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
