/* ==========================================
   HERO BANNER COMPONENT
   ========================================== */

/* Custom Font */
@font-face {
    font-family: 'Shorelines Script';
    src: url('../assets/Shorelines Script Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

.hero-banner {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../assets/hero.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--container-padding);
    max-width: 1200px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 14vw, 10rem);
    font-weight: 900;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    text-transform: uppercase;
}

.hero-subtitle {
  width: 100%; 
  height: auto;
  color: #4AB0D3;
  text-shadow: 0 4px 20px rgb(255, 255, 255);
}
