/* Home Page Styles - Mental Health Day 2025 */

/* ==========================================================================
   Variables and Base Setup
   ========================================================================== */

:root {
  /* Colors from Wix design */
  --primary-teal: #139c94;
  --primary-turquoise: #00c2c7;
  --dark-teal: #0f7a7a;
  --light-teal: #e0f8f8;
  --accent-yellow: #ffd700;
  --text-dark: #2c2c2c;
  --text-light: #666666;
  --text-white: #ffffff;
  --background-light: #f8f9fa;
  --border-light: #e6e6e6;
  
  /* Typography */
  --font-primary: 'Helvetica Neue', Arial, sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-max-width: 1200px;
  --container-padding: 0 20px;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

.home-page-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.home-page-hero-main {
  position: relative;
  background: 
    url('/main_asset_files/hero-background-pattern.png'),
    linear-gradient(135deg, #1a7e8c 0%, #2db5bd 100%);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-blend-mode: overlay;
  color: var(--text-white);
  overflow: hidden;
  padding: 120px 0 80px;
}

.home-page-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.home-page-hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.05;
  mix-blend-mode: multiply;
}

.home-page-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.home-page-hero-text {
  text-align: left;
  width: 100%;
  max-width: 100%;
}

.home-page-hero-date {
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.5px;
}

.home-page-hero-main h1 {
  font-size: 52px;
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  margin-bottom: 40px;
  color: var(--text-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  max-width: 800px;
}

.hero-text-highlight {
  color: #00e6e6;
}

.home-page-hero-main p {
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.92);
  max-width: 700px;
}

.home-page-hero-buttons {
  display: flex;
  gap: 25px;
  margin-top: 50px;
  flex-wrap: wrap;
  align-items: center;
}

.home-page-hero-buttons .home-page-btn {
  padding: 18px 36px;
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.home-page-hero-buttons .home-page-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
   Speaker Carousel Section
   ========================================================================== */

.home-page-speaker-carousel {
  display: none;
  background: var(--background-light);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.home-page-speaker-carousel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary-turquoise) 0%, var(--primary-teal) 100%);
  opacity: 0.05;
  z-index: 1;
}

.home-page-speaker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.home-page-speaker-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--primary-turquoise);
}

.home-page-speaker-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(19, 156, 148, 0.3);
}

.home-page-speaker-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid var(--primary-turquoise);
}

.home-page-speaker-info h3 {
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  margin-bottom: 5px;
}

.home-page-speaker-info p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

/* ==========================================================================
   Request Section
   ========================================================================== */

.home-page-request-section {
  display: none;
  padding: 60px 0;
  background: white;
  text-align: center;
}

.home-page-request-content img {
  max-width: 400px;
  height: auto;
  transition: transform 0.3s ease;
}

.home-page-request-content img:hover {
  transform: scale(1.05);
}

/* ==========================================================================
   Media Mentions Section
   ========================================================================== */

.home-page-media-mentions {
  padding: 60px 0;
  background: var(--background-light);
  text-align: center;
}

.home-page-media-mentions h2 {
  font-size: 24px;
  font-weight: var(--font-weight-medium);
  color: var(--text-dark);
  margin-bottom: 40px;
}

.home-page-media-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.home-page-media-logos img {
  height: 40px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.home-page-media-logos img:hover {
  opacity: 1;
}

/* ==========================================================================
   Clients Section
   ========================================================================== */

.home-page-clients-section {
  display: none;
  padding: 60px 0;
  background: white;
  text-align: center;
}

.home-page-clients-section h2 {
  font-size: 24px;
  font-weight: var(--font-weight-medium);
  color: var(--text-dark);
  margin-bottom: 40px;
}

/* ==========================================================================
   Features Section
   ========================================================================== */

.home-page-features-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--light-teal) 0%, rgba(225, 248, 248, 0.5) 100%);
}

.home-page-features-hero {
  text-align: center;
  margin-bottom: 60px;
}

.home-page-features-hero h2 {
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  line-height: 1.3;
  max-width: 800px;
  margin: 0 auto;
}

.home-page-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.home-page-feature-card {
  background: white;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.home-page-feature-card:hover {
  transform: translateY(-8px);
}

.home-page-feature-icon {
  margin-bottom: 20px;
}

.home-page-feature-icon img {
  width: 60px;
  height: 60px;
}

.home-page-feature-card h3 {
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  margin-bottom: 15px;
}

.home-page-feature-card p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
}

.home-page-features-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.home-page-features-description p {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.home-page-landing-page-features {
  text-align: center;
}

.home-page-landing-page-features h3 {
  font-size: 28px;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  margin-bottom: 30px;
}

.home-page-feature-diagram {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  padding: 20px;
}

/* ==========================================================================
   How It Works Section
   ========================================================================== */

.home-page-how-it-works {
  padding: var(--section-padding);
  background: #000000;
  color: var(--text-white);
}

.home-page-how-it-works h2 {
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  color: var(--text-white);
  text-align: center;
  margin-bottom: 60px;
}

.home-page-steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.home-page-step {
  text-align: left;
  padding: 30px 20px;
}

.home-page-step-number {
  display: inline-block;
  color: var(--text-white);
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  margin-bottom: 20px;
}

.home-page-step h4 {
  font-size: 18px;
  font-weight: var(--font-weight-medium);
  color: var(--text-white);
  line-height: 1.5;
  margin: 0;
}



/* ==========================================================================
   Demo Preview Section
   ========================================================================== */

.home-page-demo-preview-section {
  padding: var(--section-padding);
  background: white;
}

.home-page-demo-preview-section h2 {
  text-align: center;
  font-size: 32px;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  margin-bottom: 40px;
}



.home-page-demo-video-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  aspect-ratio: 16/9;
}

.home-page-demo-video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  object-fit: cover;
}

@media (max-width: 768px) {
  .home-page-demo-video-container {
    max-width: 100%;
    margin: 0 20px;
  }
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */

.home-page-pricing-section {
  padding: var(--section-padding);
  background: var(--background-light);
}

.home-page-pricing-section h2 {
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 15px;
}

.home-page-pricing-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 60px;
}

.home-page-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.home-page-pricing-card {
  background: white;
  border-radius: 15px;
  padding: 20px 20px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border-top: 5px solid var(--primary-turquoise);
}

.home-page-pricing-card.home-page-featured {
  border-top-color: var(--accent-yellow);
  transform: scale(1.05);
}

.home-page-pricing-card:hover {
  /* transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(19, 156, 148, 0.2); */
}

.home-page-pricing-card.home-page-featured:hover {
  /* transform: scale(1.05) translateY(-10px); */
}

.home-page-best-seller-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--accent-yellow);
  color: var(--text-dark);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: var(--font-weight-bold);
}

.home-page-package-header h3 {
  font-size: 22px;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  margin-bottom: 20px;
}

.home-page-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 5px;
}

.home-page-currency {
  font-size: 24px;
  font-weight: var(--font-weight-medium);
  color: var(--primary-teal);
}

.home-page-amount {
  font-size: 48px;
  font-weight: var(--font-weight-bold);
  color: var(--primary-teal);
  margin-left: 5px;
}

.home-page-price-alt {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.home-page-package-features {
  margin-bottom: 20px;
}

.home-page-package-features p {
  font-size: 16px;
  margin-bottom: 3px;
}

.home-page-features-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.home-page-features-list li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-light);
  position: relative;
  padding-left: 25px;
}

.home-page-features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-turquoise);
  font-weight: var(--font-weight-bold);
}

/* Add-ons */
.home-page-addons-section {
  margin-top: 60px;
}

.home-page-addons-section h3 {
  font-size: 28px;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 40px;
}

.home-page-addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.home-page-addon-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--primary-turquoise);
}

.home-page-addon-card h4 {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  margin-bottom: 15px;
}

.home-page-addon-price {
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  color: var(--primary-teal);
  margin-bottom: 5px;
}

.home-page-addon-price-alt {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.home-page-movember-logo {
  width: 100px;
  height: auto;
  margin: 20px 0;
}

.home-page-pricing-card .home-page-movember-logo {
  display: block;
  margin: 20px auto;
  text-align: center;
}

.home-page-pricing-card p + .home-page-features-list {
  margin-top: 15px;
}

.home-page-demo-cta {
  text-align: center;
  margin-top: 40px;
}

/* ==========================================================================
   Global Times Section
   ========================================================================== */

.home-page-global-times {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--light-teal) 0%, rgba(225, 248, 248, 0.5) 100%);
}

.home-page-global-times h2 {
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.3;
}

.home-page-timezone-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.home-page-timezone-card {
  background: white;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.home-page-timezone-card:hover {
  transform: translateY(-5px);
}

.home-page-timezone-card h3 {
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  margin-bottom: 10px;
}

.home-page-timezone-card .home-page-time {
  font-size: 16px;
  font-weight: var(--font-weight-medium);
  color: var(--primary-teal);
  margin-bottom: 20px;
}

.home-page-timezone-card img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.home-page-timezone-icon {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--primary-teal);
}

/* ==========================================================================
   Speakers Schedule Section
   ========================================================================== */

.home-page-speakers-schedule {
  padding: var(--section-padding);
  background: var(--background-light);
}

.home-page-speakers-schedule h2 {
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 15px;
}

.home-page-speakers-schedule h3 {
  font-size: 20px;
  font-weight: var(--font-weight-medium);
  color: var(--text-light);
  text-align: center;
  margin-bottom: 60px;
}

.home-page-schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.home-page-session-card {
  background: white;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-top: 3px solid var(--primary-turquoise);
}

.home-page-session-card:hover {
  transform: translateY(-5px);
}

.home-page-session-time {
  font-size: 12px;
  color: var(--text-light);
  font-weight: var(--font-weight-medium);
  margin-bottom: 15px;
  background: var(--light-teal);
  padding: 5px 10px;
  border-radius: 15px;
  display: inline-block;
}

.home-page-session-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 2px solid var(--primary-turquoise);
}

.home-page-session-card h4 {
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  margin-bottom: 8px;
}

.home-page-session-card p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.4;
}

/* ==========================================================================
   Expert Sessions Section
   ========================================================================== */

.home-page-expert-sessions-section {
  padding: var(--section-padding);
  background: #000000;
  text-align: center;
}

.home-page-expert-sessions-section h2 {
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  color: var(--text-white);
  margin-bottom: 20px;
}

.home-page-expert-sessions-section p {
  font-size: 18px;
  color: var(--text-white);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.home-page-expert-sessions-cta {
  margin-bottom: 0;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.home-page-testimonials {
  padding: var(--section-padding);
  background: white;
}

.home-page-testimonials h2 {
  font-size: 32px;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 30px;
}

.home-page-rating {
  text-align: center;
  margin-bottom: 50px;
}

.home-page-rating-score {
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  color: var(--primary-teal);
}

.home-page-stars {
  font-size: 20px;
  color: var(--accent-yellow);
  margin: 10px 0;
}

.home-page-rating p {
  font-size: 16px;
  color: var(--text-light);
}

.home-page-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.home-page-testimonials-grid blockquote {
  background: var(--light-teal);
  padding: 30px;
  border-radius: 15px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  border-left: 5px solid var(--primary-turquoise);
  margin: 0;
  font-style: italic;
}

/* ==========================================================================
   Stats Section
   ========================================================================== */

.home-page-stats-section {
  padding: var(--section-padding);
  background: 
    url('/main_asset_files/hero-background-pattern.png'),
    linear-gradient(135deg, #1a7e8c 0%, #2db5bd 100%);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-blend-mode: overlay;
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.home-page-stats-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.home-page-stats-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

.home-page-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

.home-page-stat-item {
  text-align: left;
  padding: 20px;
}

.home-page-stat-item h3 {
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
  margin: 0;
}

/* ==========================================================================
   Demo Booking Section
   ========================================================================== */

.home-page-demo-booking {
  padding: var(--section-padding);
  background: var(--background-light);
}

.home-page-demo-booking h2 {
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 20px;
}

.home-page-demo-booking > .container > p {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.home-page-demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.home-page-demo-left h3 {
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  margin-bottom: 20px;
}

.home-page-demo-left p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.home-page-demo-left ul {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.home-page-demo-left li {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 5px;
}

.home-page-signup-form {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.home-page-signup-form h4 {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  margin-bottom: 20px;
  text-align: center;
}

.home-page-form-group {
  margin-bottom: 20px;
}

.home-page-form-group label {
  display: block;
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  color: var(--text-dark);
  margin-bottom: 5px;
}

.home-page-form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--border-light);
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.home-page-form-group input:focus {
  outline: none;
  border-color: var(--primary-turquoise);
}

.home-page-submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--primary-turquoise);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.home-page-submit-btn:hover {
  background: var(--dark-teal);
}

.home-page-demo-right iframe {
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.home-page-founder-section {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.home-page-founder-section img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid var(--primary-turquoise);
}

.home-page-founder-section h4 {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  margin: 0;
}

/* ==========================================================================
   Blog Posts Section
   ========================================================================== */

.home-page-blog-posts {
  display: none;
  padding: var(--section-padding);
  background: white;
}

.home-page-blog-posts h2 {
  font-size: 32px;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 50px;
}

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

.home-page-blog-post {
  background: var(--light-teal);
  padding: 30px;
  border-radius: 15px;
  transition: transform 0.3s ease;
  border-top: 4px solid var(--primary-turquoise);
}

.home-page-blog-post:hover {
  transform: translateY(-5px);
}

.home-page-blog-post h3 {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 15px;
}

.home-page-post-date {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 15px;
}

.home-page-read-more {
  color: var(--primary-teal);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  font-size: 14px;
  transition: color 0.3s ease;
}

.home-page-read-more:hover {
  color: var(--dark-teal);
  text-decoration: underline;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.home-page-btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 25px;
  font-weight: var(--font-weight-bold);
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.home-page-btn-primary {
  background: var(--primary-turquoise);
  color: white;
  padding: 15px 30px;
  font-size: 16px;
}

.home-page-btn-primary:hover {
  background: var(--dark-teal);
  transform: translateY(-2px);
}

.home-page-btn-secondary {
  background: transparent;
  color: var(--primary-turquoise);
  border: 2px solid var(--primary-turquoise);
  padding: 13px 28px;
  font-size: 16px;
}

.home-page-btn-secondary:hover {
  background: var(--primary-turquoise);
  color: white;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1024px) and (min-width: 769px) {
  .home-page-timezone-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .home-page-steps-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
    --container-padding: 0 15px;
  }

  .home-page-hero-content {
    align-items: center;
  }

  .home-page-hero-text {
    text-align: center;
  }

  .home-page-hero-main h1 {
    font-size: 38px;
    line-height: 1.2;
  }

  .home-page-speaker-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
  }

  .home-page-features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .home-page-pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home-page-pricing-card.home-page-featured {
    transform: none;
  }

  .home-page-timezone-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-page-demo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-page-hero-buttons {
    justify-content: center;
  }

  .home-page-hero-buttons img {
    height: 40px;
  }

  .home-page-features-hero h2 {
    font-size: 28px;
  }

  .home-page-timezone-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
  }

  .home-page-schedule-grid {
    grid-template-columns: 1fr;
  }

  .home-page-addon-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .home-page-hero-main h1 {
    font-size: 28px;
  }

  .home-page-hero-main p {
    font-size: 16px;
  }

  .home-page-features-hero h2 {
    font-size: 24px;
  }

  .home-page-steps-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .home-page-stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .home-page-speaker-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   Accessibility
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus states */
.home-page-btn:focus,
input:focus,
button:focus {
  outline: 3px solid var(--primary-turquoise);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-teal: #0066cc;
    --primary-turquoise: #0066cc;
    --text-light: #333333;
  }
}
