/* ===== VARIABLES & ROOT ===== */
:root {
  --primary-green: #2ecc71;
  --dark-green: #145a32;
  --light-green: #d5f5e3;
  --accent-teal: #1abc9c;
  --accent-lime: #82e0aa;
  --pop-yellow: #f4d03f;
  --pop-pink: #ff6b81;
  --pop-orange: #e67e22;
  --off-white: #f8f9fa;
  --charcoal: #2d3436;
  --shadow: rgba(20, 90, 50, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--off-white);
  color: var(--charcoal);
  line-height: 1.6;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--dark-green);
}

/* ===== NAVIGATION ===== */
.navbar {
  background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px var(--shadow);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
  text-decoration: none;
  text-shadow: 2px 2px 0 var(--accent-teal);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  background: var(--pop-yellow);
  color: var(--dark-green);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, var(--primary-green), var(--accent-teal), var(--dark-green));
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.3), transparent);
  border-radius: 50%;
  top: -200px;
  right: -200px;
}

.hero-content {
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-size: 4rem;
  color: white;
  text-shadow: 3px 3px 0 var(--dark-green);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.4rem;
  color: var(--light-green);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: var(--pop-yellow);
  color: var(--dark-green);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 3px solid white;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* ===== PODCAST PLAYER SECTION ===== */
.podcast-grid {
  max-width: 1400px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--dark-green);
}

.episode-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px var(--shadow);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.episode-card:hover {
  transform: translateY(-10px);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: var(--charcoal);
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-teal), var(--dark-green));
  color: white;
  flex-direction: column;
}

.play-button {
  width: 80px;
  height: 80px;
  background: var(--pop-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.play-button:hover {
  transform: scale(1.1);
}

.episode-info {
  padding: 2rem;
}

.episode-info h3 {
  margin-bottom: 0.5rem;
  color: var(--dark-green);
}

/* ===== BLOG GRID ===== */
.blog-grid {
  max-width: 1400px;
  margin: 4rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--shadow);
}

.blog-image {
  height: 200px;
  background: linear-gradient(135deg, var(--accent-lime), var(--primary-green));
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  color: var(--primary-green);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.blog-link {
  color: var(--accent-teal);
  text-decoration: none;
  font-weight: 700;
}

/* ===== FORMS ===== */
.form-section {
  max-width: 800px;
  margin: 4rem auto;
  padding: 3rem 2rem;
  background: white;
  border-radius: 25px;
  box-shadow: 0 10px 40px var(--shadow);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--dark-green);
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 3px solid var(--light-green);
  border-radius: 15px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-green);
}

textarea.form-control {
  min-height: 200px;
  resize: vertical;
  font-family: monospace;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-teal));
  color: white;
  font-size: 1.2rem;
}

/* ===== CONTACT PAGE SPECIFIC ===== */
.contact-grid {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  padding: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* ===== ABOUT PAGE SPECIFIC ===== */
.about-hero {
  background: linear-gradient(135deg, var(--primary-green), var(--accent-teal));
  padding: 6rem 2rem;
  text-align: center;
}

.team-grid {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-avatar {
  width: 120px;
  height: 120px;
  background: var(--accent-lime);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-green);
  color: white;
  padding: 4rem 2rem 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}

.footer h4 {
  color: var(--accent-lime);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-bottom {
  max-width: 1400px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  opacity: 0.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-green);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
}