/* ═══════════════════════════════════════════════════════════
   Shared across: index.html, about.html, contact.html
   ═══════════════════════════════════════════════════════════ */

   .hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  
  .hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.65));
    z-index: 1;
  }
  
  .hero-content {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    width: min(1000px, 92%);
    padding: 0 16px;
  }
  
  .hero-content h1 {
    margin: 0;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 6vw, 5.5rem);
    letter-spacing: 3px;
    line-height: 0.95;
  }
  
  .hero-content p {
    margin: 0;
    color: rgba(255,255,255,0.92);
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    font-weight: 500;
  }