/**
 * Frontend styles for Hero Section block
 */

.ole-hero-section-block {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ole-hero-section-block .ole-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.ole-hero-section-block:hover .ole-hero-background {
    transform: scale(1);
}

.ole-hero-section-block .ole-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ole-hero-section-block .ole-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

.ole-hero-section-block .ole-hero-title {
    font-size: 64px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.ole-hero-section-block .ole-hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    margin: 0 0 40px 0;
    line-height: 1.6;
    opacity: 0.95;
}

.ole-hero-section-block .ole-hero-button {
    display: inline-block;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
}

.ole-hero-section-block .ole-hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.ole-hero-section-block .ole-hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.ole-hero-section-block .ole-hero-scroll-indicator span {
    display: block;
    font-size: 12px;
    margin-bottom: 8px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ole-hero-section-block .ole-hero-scroll-indicator svg {
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .ole-hero-section-block .ole-hero-title {
        font-size: 36px;
    }
    
    .ole-hero-section-block .ole-hero-subtitle {
        font-size: 18px;
    }
    
    .ole-hero-section-block .ole-hero-content {
        padding: 20px;
    }
}
