/* ===================================
   Talki Toki - Responsive Styles
   =================================== */

/* ===================================
   Mobile Default (< 768px)
   =================================== */
.footer .container {
  flex-direction: column;
  align-items: flex-start;
}

.footer__bottom {
  flex-direction: column;
  align-items: flex-start;
  gap: var(--spacing-xs);
}

/* ===================================
   Tablet (768px - 1023px)
   =================================== */
@media (min-width: 768px) {
  .hero__title {
    font-size: var(--font-size-headline-tablet);
  }

  .hero__content {
    max-width: 600px;
  }

  /* Larger phone on tablet */
  .phone-mockup {
    width: 320px;
    height: 640px;
  }

  /* Adjust badge positions for larger phone */
  .character-badge--boss-cat {
    top: 80px;
    left: -80px;
  }

  .character-badge--hidden-baby {
    top: 180px;
    right: -90px;
  }

  .character-badge--devil-angel {
    bottom: 140px;
    left: -80px;
  }

  /* Footer tablet layout */
  .footer__bottom {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}

/* ===================================
   Desktop (1024px+)
   =================================== */
@media (min-width: 1024px) {
  .hero .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-3xl);
  }

  .hero__content {
    text-align: left;
    flex: 1;
    max-width: 500px;
  }

  .hero__title {
    font-size: var(--font-size-headline-desktop);
  }

  .hero__buttons {
    justify-content: flex-start;
  }

  .hero__visual {
    flex-shrink: 0;
  }

  /* Even larger phone on desktop */
  .phone-mockup {
    width: 340px;
    height: 680px;
  }

  /* Adjust badge positions for desktop */
  .character-badge--boss-cat {
    top: 80px;
    left: -100px;
  }

  .character-badge--hidden-baby {
    top: 200px;
    right: -110px;
  }

  .character-badge--devil-angel {
    bottom: 160px;
    left: -100px;
  }

  /* Footer desktop layout */
  .footer .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__bottom {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}

/* ===================================
   Large Desktop (1280px+)
   =================================== */
@media (min-width: 1280px) {
  .container {
    padding: 0 var(--spacing-xl);
  }

  .phone-mockup {
    width: 360px;
    height: 720px;
  }

  .character-badge--boss-cat {
    left: -120px;
  }

  .character-badge--hidden-baby {
    right: -130px;
  }

  .character-badge--devil-angel {
    left: -120px;
  }
}

/* ===================================
   Small Mobile (< 375px)
   =================================== */
@media (max-width: 374px) {
  .hero__title {
    font-size: 24px;
  }

  .phone-mockup {
    width: 240px;
    height: 480px;
  }

  /* Heart pattern for small mobile */
  .heart-pattern {
    width: 200px;
    height: 400px;
  }

  .character-badge {
    font-size: 10px;
    padding: 6px 10px;
  }

  .character-badge__icon {
    width: 20px;
    height: 20px;
  }

  .character-badge--boss-cat {
    top: 40px;
    left: -40px;
  }

  .character-badge--hidden-baby {
    top: 100px;
    right: -50px;
  }

  .character-badge--devil-angel {
    bottom: 100px;
    left: -40px;
  }
}

/* ===================================
   Accessibility: Reduced Motion
   =================================== */
@media (prefers-reduced-motion: reduce) {
  .character-badge,
  .heart {
    animation: none;
  }

  .btn {
    transition: none;
  }
}

/* ===================================
   Print Styles
   =================================== */
@media print {
  body {
    background: white;
  }

  .hero__buttons {
    display: none;
  }

  .character-badge {
    animation: none;
  }
}
