/* Stevie Wood Recovery - Hero Section Styles */

.hero {
    height: 88vh;
    min-height: 650px;
    max-height: 950px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    background-image: url('https://github.com/level-one-ai/Stevie-Wood-Recovery/blob/main/images/b0gd6vme9drmy0cw14w8eqw7t8_result_0.jpg?raw=true');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 40px 15px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.5) 50%, rgba(15, 23, 42, 0.8) 100%);
    z-index: 1;
}

.hero-top-bubble {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    margin-top: 0;
    opacity: 0;
    transform: translateY(-30px);
    animation: fadeSlideDown 0.8s ease forwards;
    animation-delay: 0.2s;
}

.hero-bubble {
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.4);
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-block;
}

.hero-bubble span {
    font-size: 14px;
    font-weight: 600;
    color: #f1f5f9;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-content-centered {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content-centered h1 {
    font-size: 80px;
    font-weight: 800;
    margin-bottom: 0;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #6366f1 50%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.8));
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 0.4s;
    white-space: nowrap;
}

.hero-buttons {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 2;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 0.6s;
}

@keyframes fadeSlideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
