/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/

/* Background only for the Popular Accommodations section */
#popular-accommodations {
	background-color: #f5f3ff;
}

/* =============================================
   GLOBAL SECTION HEADER — eyebrow label with decorative lines
   Usage: <x-section-header label="..." /> or <x-section-header label="..." light />
   ============================================= */
.section-header-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.section-header-line span:first-child,
.section-header-line .eyebrow-line-left,
.section-header-line .line-left {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--golden-sand, #d4a853));
}

.section-header-line span:last-child,
.section-header-line .eyebrow-line-right,
.section-header-line .line-right {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, var(--golden-sand, #d4a853), transparent);
}

.section-header-label,
.section-header-line .header-label,
.section-header-line .label-text {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--golden-sand, #d4a853);
    margin: 0;
    white-space: nowrap;
    line-height: 1;
}

/* Light variant — for dark / image backgrounds */
.section-header-label--light,
.section-header-label-light {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--golden-sand, #d4a853);
    margin: 0;
    white-space: nowrap;
    line-height: 1;
}

/* Legacy alias: .section-label-decorated (same pattern, different wrapper class) */
.section-label-decorated {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 0 24px 0;
}

.section-label-decorated .line-left {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--golden-sand, #d4a853));
}

.section-label-decorated .line-right {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, var(--golden-sand, #d4a853), transparent);
}

.section-label-decorated .label-text {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--golden-sand, #d4a853);
    white-space: nowrap;
}

/* Left-aligned variant */
.section-header-line--left {
    justify-content: flex-start;
}

/* Responsive: tighten on mobile */
@media (max-width: 768px) {
    .section-header-line,
    .section-label-decorated {
        gap: 12px;
    }

    .section-header-line span:first-child,
    .section-header-line span:last-child,
    .section-header-line .eyebrow-line-left,
    .section-header-line .eyebrow-line-right,
    .section-label-decorated .line-left,
    .section-label-decorated .line-right {
        width: 30px;
    }

    .section-header-label,
    .section-header-label--light,
    .section-header-label-light,
    .section-header-line .header-label,
    .section-header-line .label-text,
    .section-label-decorated .label-text {
        font-size: 0.7rem;
        letter-spacing: 2px;
        white-space: normal;
        text-align: center;
        max-width: 260px;
        line-height: 1.4;
    }

    /* Center left-aligned headers on mobile */
    .section-header-line--left {
        justify-content: center;
    }
}


