/**
 * Hero Content Component Styles
 */

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.75rem;
    max-width: 640px;
}

.hero-align-center {
    align-items: center;
    text-align: center;
}

.hero-align-right {
    align-items: flex-end;
    text-align: right;
}

.hero-tagline {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-align: inherit;
}

.tagline-primary {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.1;
    color: #f8fafc;
    letter-spacing: -0.02em;
}

.tagline-secondary {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: clamp(1.1rem, 2.2vw, 1.6rem);
    color: rgba(226, 232, 240, 0.72);
    line-height: 1.4;
}

.tagline-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(248, 191, 48, 0), rgba(248, 191, 48, 0.5), rgba(248, 191, 48, 0));
}

.divider-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(248, 191, 48, 0.8);
}

.tagline-description {
    font-size: 1rem;
    color: rgba(226, 232, 240, 0.68);
    line-height: 1.75;
    max-width: 560px;
}

.tagline-location span {
    color: rgba(226, 232, 240, 0.75);
    transition: color 0.2s ease;
}

.tagline-location span:hover {
    color: #fbbf24;
}

.separator {
    color: rgba(248, 191, 48, 0.8);
}

@media (max-width: 639px) {
    .hero-content {
        gap: 1.25rem;
    }

    .tagline-primary {
        font-size: clamp(2rem, 8vw, 3rem);
    }
}
