/* ============================================
   YOUNA - Home Container Styles
   ============================================ */

.ahz-home-container {
    position: fixed;
    inset-x: 0;
    z-index: 30;
    width: 100%;
    transition: all 0.3s ease;
    padding: 0 0.5rem;
    top: 80px;
    bottom: 160px;
}

.ahz-home-container > div {
    border-radius: 0.75rem;
    padding: 1rem;
    margin: 0 auto;
    height: 100%;
    max-width: 95%;
}

.ahz-tagline {
    text-align: center;
    margin-bottom: 0.75rem;
    letter-spacing: 0.3em;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 
        0 0 10px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), text-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    text-transform: uppercase;
    will-change: transform;
    backface-visibility: hidden;
}

.ahz-role {
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 0.3em;
    color: #ffffff;
    font-weight: 400;
    text-shadow: 
        0 0 10px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), text-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    text-transform: uppercase;
    will-change: transform;
    backface-visibility: hidden;
}

.ahz-bottom-content {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 10;
}

.ahz-tagline:hover {
    text-shadow: 
        0 0 15px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(255, 255, 255, 0.3),
        0 0 30px rgba(255, 255, 255, 0.2);
    transform: translate3d(0, 0, 0) scale(1.02);
}

.ahz-role:hover {
    text-shadow: 
        0 0 12px rgba(0, 0, 0, 0.6),
        0 0 15px rgba(255, 255, 255, 0.2),
        0 0 25px rgba(255, 255, 255, 0.1);
    transform: translate3d(0, 0, 0) scale(1.01);
}

#ahz-content {
    position: relative;
    height: 100%;
    width: 100%;
}

/* ============================================
   Responsive Design
   ============================================ */

/* Extra small mobile: < 480px */
@media (max-width: 479px) {
    .ahz-tagline {
        font-size: 1.5rem;
        letter-spacing: 0.2em;
    }
    
    .ahz-role {
        font-size: 0.8rem;
        letter-spacing: 0.2em;
    }

    .ahz-bottom-content {
        padding: 0 1rem;
    }
}

/* Mobile: 480px - 767px */
@media (min-width: 480px) and (max-width: 767px) {
    .ahz-tagline {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .ahz-role {
        font-size: 0.9rem;
    }

    .ahz-bottom-content {
        padding: 0 1rem;
    }
}

/* Tablet: 768px - 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
    .ahz-tagline {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .ahz-role {
        font-size: 0.9rem;
    }

    .ahz-bottom-content {
        padding: 0 1rem;
    }
}

/* Desktop: 1024px - 1439px */
@media (min-width: 1024px) and (max-width: 1439px) {
    .ahz-tagline {
        font-size: 2rem;
    }
    
    .ahz-role {
        font-size: 1rem;
    }
    
    .ahz-home-container {
        padding: 0 1rem;
    }
    
    .ahz-home-container > div {
        padding: 1.5rem;
        max-width: 85%;
    }
}

/* Large screens: ≥ 1440px */
@media (min-width: 1440px) {
    .ahz-tagline {
        font-size: 2.5rem;
    }
    
    .ahz-role {
        font-size: 1.25rem;
    }
    
    .ahz-home-container {
        padding: 0 1rem;
    }
    
    .ahz-home-container > div {
        padding: 1.5rem;
        max-width: 85%;
    }
}

/* Landscape Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .ahz-bottom-content {
        transform: translate(-50%, -40%);
    }
    
    .ahz-tagline {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }
    
    .ahz-role {
        font-size: 0.8rem;
    }
}

