/* Mobile-First Hero Section for Weekend Incubator */

/* Hide the desktop hero section on mobile */
@media (max-width: 767px) {
  .desktop-hero {
    display: none !important;
  }
  
  .mobile-hero {
    display: block !important;
  }
  
  /* Basic mobile styling */
  .mobile-hero {
    padding: 20px 0;
    text-align: center;
    background-color: #f9f9f9;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  
  /* Ensure proper spacing with header */
  .container-line, 
  .line-item {
    display: none !important;
  }
  
  /* Add padding at the top to prevent header overlap */
  .mobile-hero {
    padding-top: 80px !important;
    padding-bottom: 0 !important;
  }
  
  .mobile-hero .logo {
    margin: 10px auto 20px;
    max-width: 100px;
  }
  
  .mobile-hero .title {
    font-size: 24px;
    line-height: 1.3;
    margin: 0 auto 15px;
    color: #333;
    font-weight: 700;
  }
  
  .mobile-hero .title span {
    color: #ff003c;
  }
  
  .mobile-hero .intro {
    font-size: 14px;
    margin-bottom: 15px;
    color: #666;
  }
  
  /* Dark box styling */
  .mobile-hero .dark-box {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 20px 15px;
    margin: 0 -15px;
    color: white;
    position: relative;
    z-index: 5;
  }
  
  /* Improve text readability */
  .mobile-hero .dark-box p {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    color: white !important;
  }
  
  .mobile-hero .dark-box p {
    margin: 0 0 10px;
    font-size: 15px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
  }
  
  .mobile-hero .dark-box .highlight {
    color: #ff003c !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 1px rgba(0,0,0,0.5) !important;
  }
  
  /* Countdown styling */
  .mobile-hero .countdown {
    display: flex;
    justify-content: center;
    margin: 15px 0;
    flex-wrap: wrap;
  }
  
  .mobile-hero .countdown-item {
    margin: 0 8px;
    text-align: center;
  }
  
  .mobile-hero .countdown-number {
    font-size: 22px;
    font-weight: 700;
    color: #ff003c;
  }
  
  .mobile-hero .countdown-label {
    font-size: 10px;
    text-transform: uppercase;
  }
  
  /* Register button */
  .mobile-hero .register-btn {
    background-color: #ff003c;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
  }
}

/* Add hero image for mobile */
@media (max-width: 767px) {
  /* Create space for the image */
  .mobile-hero {
    margin-bottom: 20px;
  }
  
  /* Hero image styling */
  .mobile-hero-image {
    display: block !important;
    text-align: center;
    margin: 20px auto 0;
    max-width: 90%;
  }
}

/* Show desktop version on larger screens */
@media (min-width: 768px) {
  .desktop-hero {
    display: block !important;
  }
  
  .mobile-hero, .mobile-hero-image {
    display: none !important;
  }
}
