/* CSS code */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.2;
  color: #2c3e50;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  flex-wrap: wrap;
}

.logo-area {
  flex: 0 0 auto;
}

.logo-placeholder {
  height: 60px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-weight: 600;
  color: #2c3e50;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #e74c3c;
}

.nav-cta {
  margin-left: 30px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-bar {
  display: block;
  width: 25px;
  height: 3px;
  background: #2c3e50;
  margin: 4px 0;
  transition: 0.3s;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background-color: #e74c3c;
  color: #fff;
}

.btn-primary:hover {
  background-color: #c0392b;
}

.btn-secondary {
  background-color: transparent;
  color: #2c3e50;
  border-color: #2c3e50;
}

.btn-secondary:hover {
  background-color: #2c3e50;
  color: #fff;
}

.btn-accent {
  background-color: #f39c12;
  color: #fff;
}

.btn-accent:hover {
  background-color: #e67e22;
}

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
}

.btn-text {
  background: none;
  border: none;
  color: #e74c3c;
  font-weight: 700;
  padding: 0;
  text-decoration: underline;
}

.btn-text:hover {
  color: #c0392b;
}

/* Hero Section */
.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-content {
  flex: 1;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #2c3e50;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: #555;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-visual {
  flex: 1;
}

.hero-image-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-image {
  width: 100%;
  height: auto;
}

/* Section header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-intro {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #555;
}

/* Experience Grid */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.experience-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-5px);
}

.experience-icon {
  margin-bottom: 20px;
}

.icon-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
}

.experience-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #e74c3c;
}

.experience-text {
  color: #666;
}

/* Featured Section */
.featured-section {
  padding: 80px 0;
}

.featured-card {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  background: #f8f9fa;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.featured-artwork {
  flex: 1;
  min-width: 300px;
}

.featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.episode-label {
  font-weight: 700;
  color: #e74c3c;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.featured-title,
.story-title {
  font-size: 2rem;
  margin-bottom: 15px;
}

.featured-description {
  color: #555;
  margin-bottom: 20px;
}

.featured-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Stories Grid */
.stories-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.story-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.story-card:hover {
  transform: translateY(-5px);
}

.story-artwork {
  overflow: hidden;
}

.story-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.story-content {
  padding: 20px;
}

.story-title {
  font-size: 1.5rem;
}

.story-description {
  color: #666;
  margin-bottom: 15px;
}

.story-card-coming {
  opacity: 0.7;
}

/* Parents Section */
.parents-section {
  padding: 80px 0;
}

.parents-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.parents-content {
  flex: 1;
}

.parents-visual {
  flex: 1;
}

.parents-image {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.section-text {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
}

/* Scripture Section */
.scripture-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #fff;
  text-align: center;
}

.scripture-section .section-title {
  color: #fff;
}

.scripture-section .section-text {
  color: #ddd;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* Newsletter Section */
.newsletter-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.newsletter-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.form-group {
  flex: 1;
  min-width: 200px;
}

.form-group input {
  width: 100%;
  padding: 12px 20px;
  border: 2px solid #ddd;
  border-radius: 50px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #e74c3c;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Footer */
.site-footer {
  background: #2c3e50;
  color: #fff;
  padding: 40px 0 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  padding-bottom: 30px;
}

.footer-brand {
  flex: 1;
  min-width: 200px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 10px;
}

.footer-tagline {
  color: #ddd;
  font-size: 0.9rem;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: #ddd;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #e74c3c;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-bottom {
  background: #1a252f;
  padding: 15px 0;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .main-nav {
    display: none;
    width: 100%;
    order: 3;
  }

  .main-nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
  }

  .nav-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero-inner {
    flex-direction: column;
    gap: 30px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .featured-card {
    flex-direction: column;
  }

  .featured-content {
    padding: 20px;
  }

  .parents-inner {
    flex-direction: column;
    gap: 30px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-nav-list {
    align-items: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .stories-grid {
    grid-template-columns: 1fr;
  }
}