/* Homepage Mobile Responsive Styles */

/* Mobile menu toggle styles */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #3b82f6;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
}

/* Small devices (phones, 768px and down) */
@media (max-width: 768px) {
  /* Homepage header */
  .homepage-header {
    padding: 10px 0;
  }
  
  .homepage-nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    position: relative;
  }
  
  .homepage-logo {
    margin-bottom: 0;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .homepage-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  
  .homepage-nav-links.active {
    display: flex;
  }
  
  .homepage-nav-links li {
    margin-left: 0;
    margin-bottom: 15px;
    width: 100%;
    text-align: center;
  }
  
  .homepage-nav-links li:last-child {
    margin-bottom: 0;
  }
  
  /* Beta banner */
  .beta-banner-content {
    flex-direction: column;
    gap: 10px;
  }
  
  .beta-message {
    text-align: center;
  }
  
  .close-beta-banner {
    top: 10px;
    right: 10px;
    transform: none;
  }
  
  /* Hero section */
  .hero {
    padding: 130px 0 40px;
  }
  
  .homepage-container {
    flex-direction: column;
  }
  
  .hero .homepage-container {
    flex-direction: column;
  }
  
  .hero-content {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 18px;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .hero-image {
    width: 100%;
  }
  
  .hero-image div {
    width: 100% !important;
    height: 250px !important;
  }
  
  /* Value proposition section */
  .value-prop .homepage-container > div {
    flex-direction: column !important;
    gap: 30px !important;
  }
  
  .value-prop h2 {
    font-size: 32px !important;
    text-align: center;
  }
  
  .value-card {
    padding: 25px !important;
  }
  
  .value-card > div {
    flex-direction: column;
  }
  
  .value-card-icon {
    margin-right: 0 !important;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  .value-card h3 {
    text-align: center;
  }
  
  /* Feature Cards */
  .humor-content-wrapper {
    flex-direction: column;
  }
  
  .break-scenarios-grid {
    grid-template-columns: 1fr !important;
  }
  
  /* Footer adjustments */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Medium devices (tablets, between 769px and 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero .homepage-container {
    flex-direction: column;
  }
  
  .hero-content {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .hero-image div {
    width: 100% !important;
  }
  
  .value-card > div {
    flex-direction: column;
  }
  
  .value-card-icon {
    margin-right: 0 !important;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  .value-card h3 {
    text-align: center;
  }
}
