/* home.mobile.css – mobile + tablet (≤ 768px) */

:root {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  }
  
  /* reset limited to this iframe */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  html,
  body {
    margin: 0;
    height: 100%;
  }
  
  body {
    background: transparent;
  }
  
  /* =========================
     HERO LAYOUT
     ========================= */
  
  .home-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.25rem 3rem;
  
    background-image:
      linear-gradient(
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.75)
      ),
      url("../images/bg.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
  
  .home-hero {
    width: 100%;
    max-width: 40rem;
    margin: 0;
    color: #ffffff;
    text-align: left;
  }
  
  /* =========================
     TEXT
     ========================= */
  
  .home-title {
    font-size: clamp(2.1rem, 7vw, 2.7rem);
    line-height: 1.1;
    margin: 0 0 1.25rem 0;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: none;
  }
  
  .home-subtitle {
    font-size: clamp(1rem, 4vw, 1.2rem);
    line-height: 1.4;
    color: #ffffff;
    margin: 0 0 1.1rem 0;
    max-width: 36rem;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }
  
  .home-value {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1.7rem 0;
  }
  
  /* =========================
     CTA BUTTONS
     ========================= */
  
  .home-cta-row {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.8rem;
  }
  
  .home-cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0.85rem 1.2rem;
    border-radius: 999rem;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.9rem;
  }
  
  /* View my work */
  .home-cta-primary {
    background: #ffcc00;
    color: #000000;
    box-shadow: 0 0.9rem 2rem rgba(0, 0, 0, 0.7);
  }
  
  /* Contact me */
  .home-cta-secondary {
    background: transparent;
    color: #ffffff;
    border: 0.12rem solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 0.75rem 1.7rem rgba(0, 0, 0, 0.65);
  }
  
  /* pills and ctas on slightly larger phones / tablets */
  @media (min-width: 32rem) {
    .home-cta-row {
      flex-direction: row;
    }
  
    .home-cta {
      width: auto;
      flex: 1 1 auto;
    }
  }
  
  /* =========================
     FEATURE PILLS
     ========================= */
  
  .home-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  
  .home-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999rem;
    border: 0.09rem solid rgba(255, 255, 255, 0.65);
    background: rgba(0, 0, 0, 0.55);
    color: #ffffff;
    font-size: 0.88rem;
    white-space: nowrap;
  }
  
  .home-pill-icon {
    font-size: 1.05rem;
  }