/* Header Component Styles */

header {
    text-align: center;
    margin-bottom: 48px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0 0 16px 0;
    letter-spacing: -0.03em;
    line-height: 1.5;
}

.subtitle {
    color: var(--text-secondary);
    font-size: 1.25rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    header {
        margin-bottom: 32px;
        padding: 0 16px;
    }

    h1 {
        font-size: 2.5rem;
        line-height: 1.75;
    }

    .subtitle {
        font-size: 1rem;
    }
}

.nowrap {
    white-space: nowrap;
}

.country-tag {
    display: inline-block;
    background: var(--accent-color);
    border: none;
    padding: 0 12px;
    border-radius: 16px;
    font-weight: 700;
    color: var(--tw-white);
    line-height: 1.25;
    transform: rotate(-3deg) translateY(-4px);
    position: relative;
}

.country-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: rgba(255, 255, 255, 0.2);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
