/* ==========================================
   Navire Marketing Page
   ========================================== */

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #000000;
}

/* ==========================================
   Hero Section
   ========================================== */

.marketing-hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
      /* TOP layer (vertical fade) */
      linear-gradient(to bottom,
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,0.0) 20%,
        rgba(0,0,0,0.0) 50%,
        rgba(0,0,0,0.0) 100%
      ),
      /* UNDER layer (horizontal fade) */
      linear-gradient(to right,
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,0.5) 20%,
        rgba(0,0,0,0.2) 50%,
        rgba(0,0,0,0) 100%
      );
  }

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 32px;
    max-width: 1400px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-primary);
    margin: 0;
    max-width: 700px;
    letter-spacing: -0.02em;
}

/* ==========================================
   Responsive Design
   ========================================== */

@media (max-width: 1024px) {
    .hero-content {
        padding-left: 32px;
    }
    
    .hero-title {
        font-size: 26px;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .marketing-nav {
        padding: 16px 24px;
    }
    
    .marketing-nav__actions {
        gap: 8px;
    }
    
    .hero-content {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .hero-title {
        font-size: 26px;
        max-width: 100%;
    }
    
    .hero-gradient {
        position: absolute;
        inset: 0;
        z-index: 2;
        background:
          /* TOP layer (vertical fade) */
          linear-gradient(to bottom,
            rgba(0,0,0,1) 0%,
            rgba(0,0,0,0.0) 20%,
            rgba(0,0,0,0.0) 50%,
            rgba(0,0,0,0.0) 100%
          ),
          /* UNDER layer (horizontal fade) */
          linear-gradient(to right,
            rgba(0,0,0,1) 0%,
            rgba(0,0,0,0.5) 20%,
            rgba(0,0,0,0.2) 50%,
            rgba(0,0,0,0) 100%
          );
      }
}

@media (max-width: 480px) {
    .marketing-nav {
        padding: 12px 20px;
    }
    
    .brand-text {
        font-size: 16px;
    }
    
    .hero-content {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}
