/* ── PRICES PAGE ─────────────────────────────────────── */

/* force navbar dark */
.main_nav {
    background: rgba(13,13,13,0.97) !important;
    box-shadow: 0 1px 20px rgba(0,0,0,0.4);
}
.main_nav .nav_link { color: #AE906F !important; }
.main_nav .nav_link:hover { color: #fff !important; }

/* ── PAGE HEADER ─────────────────────────────────────── */
.prices_page {
    min-height: 100vh;
    background: #f9f7f4;
}

.prices_hero {
    position: relative;
    background-image: url('../../images/more.jpg');
    background-size: cover;
    background-position: center;
    padding: 140px 48px 70px;
    text-align: center;
}

.prices_hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(8, 20, 35, 0.65);
}

.prices_hero p,
.prices_hero h1,
.prices_gold_line {
    position: relative;
    z-index: 1;
}

.prices_hero p {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 4px;
    color: #AE906F;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.prices_hero h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 54px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 4px;
    margin: 0 0 20px;
    line-height: 1.1;
}

.prices_gold_line {
    width: 48px;
    height: 2px;
    background: #AE906F;
    margin: 0 auto;
}

/* ── SEASONS WRAPPER ─────────────────────────────────── */
.prices_content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 40px 100px;
}

/* ── SEASON BLOCK ────────────────────────────────────── */
.season_block {
    margin-bottom: 48px;
}

.season_label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.season_label_dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #AE906F;
    flex-shrink: 0;
}

.season_label h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    color: #0d1b2a;
    margin: 0;
}

.season_label_line {
    flex: 1;
    height: 1px;
    background: rgba(174,144,111,0.25);
}

/* ── TABLE ───────────────────────────────────────────── */
.single_table {
    background: #fff;
    border: 1px solid rgba(174,144,111,0.18);
    overflow: hidden;
    margin: 0;
}

.table_row {
    display: grid;
    grid-template-columns: 1.4fr 1.4fr 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(174,144,111,0.1);
}
.table_row:last-child { border-bottom: none; }

.table_row_h {
    background: #0d1b2a;
}

.table_row_h .table_col p {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.table_col {
    padding: 16px 20px;
    border-right: 1px solid rgba(174,144,111,0.1);
}
.table_col:last-child,
.table_col_last { border-right: none; }

.table_col p {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #444;
    margin: 0;
}

.table_row:not(.table_row_h):hover {
    background: rgba(174,144,111,0.04);
}

/* first col (apartment name) styled differently */
.table_row:not(.table_row_h) .table_col:first-child p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 16px;
    font-weight: 400;
    color: #0d1b2a;
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
    .prices_hero { padding: 120px 24px 50px; }
    .prices_hero h1 { font-size: 36px; }
    .prices_content { padding: 48px 20px 70px; }
    .table_row { grid-template-columns: 1.2fr 1.2fr 1fr 1fr 1fr 1fr; }
    .table_col { padding: 12px 12px; }
    .table_col p { font-size: 12px; }
    .table_row_h .table_col p { font-size: 10px; letter-spacing: 0.5px; }
}

@media (max-width: 650px) {
    .prices_hero h1 { font-size: 28px; letter-spacing: 2px; }
    .single_table { overflow-x: auto; display: block; }
    .table_row {
        min-width: 560px;
    }
}
