/* Hero Content Styling */
.hero h1 {
    font-family: 'TildaSans', sans-serif;
    font-weight: 700;
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    transform: translateY(20px);
    opacity: 0;
    animation: fade-in-up 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.hero .location {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    transform: translateY(20px);
    opacity: 0;
    animation: fade-in-up 0.8s ease-out forwards;
    animation-delay: 0.4s;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in-up 0.8s ease-out forwards;
    animation-delay: 0.6s;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in-up 0.8s ease-out forwards;
    animation-delay: 0.8s;
}
