/* Elegant Hero Typography & Elements */

.hero-title {
    font-family: 'Schoolbell', cursive;
    font-size: 4.5rem;
    font-weight: normal;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--atomic-tangerine), var(--portland-orange));
    margin: 0 auto 30px;
    border-radius: 2px;
    animation: expandWidth 1.5s ease-out 0.5s both;
}

@keyframes expandWidth {
    0% {
        width: 0;
    }
    100% {
        width: 80px;
    }
}

.hero-subtitle {
    font-family: 'Schoolbell', cursive;
    font-size: 1.8rem;
    color: var(--dutch-white);
    margin-bottom: 25px;
    font-weight: normal;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-description {
    font-family: 'Schoolbell', cursive;
    font-size: 1.2rem;
    color: var(--dutch-white);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.btn-primary, .btn-secondary {
    font-family: 'Schoolbell', cursive;
    font-size: 1.1rem;
    padding: 15px 35px;
    border: none;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--atomic-tangerine);
    color: var(--white);
    border: 2px solid var(--atomic-tangerine);
}

.btn-secondary {
    background-color: transparent;
    color: var(--dutch-white);
    border: 2px solid var(--dutch-white);
}

.btn-primary:hover {
    background-color: var(--portland-orange);
    border-color: var(--portland-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 155, 120, 0.4);
}

.btn-secondary:hover {
    background-color: var(--dutch-white);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(246, 221, 191, 0.4);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    text-align: center;
    color: var(--dutch-white);
    font-family: 'Schoolbell', cursive;
    font-size: 0.9rem;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--atomic-tangerine);
    border-bottom: 2px solid var(--atomic-tangerine);
    transform: rotate(45deg);
    margin: 0 auto 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(-10px);
    }
    60% {
        transform: rotate(45deg) translateY(-5px);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Hero Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 200px;
        text-align: center;
    }
    
    .hero-content-wrapper {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
