/* ═══════════════════════════════════════════════════════════════════════
   Destinations All Grid  (destinations_all)
   v1.0.0 — Frame 269: centered header + 4-col destination card grid.
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Section ─────────────────────────────────────────────────────────── */
.zadra-dest-all {
    width: 100%;
    padding: 120px 0;
    box-sizing: border-box;
    background: #FFFFFF;
}

/* ── Header: centered suptitle + H2 + description ───────────────────── */
.zadra-dest-all__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 64px;
    text-align: center;
}

.zadra-dest-all__suptitle {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5;
    text-transform: uppercase;
    color: #D7C09B;
}

.zadra-dest-all__title {
    margin: 0;
    padding: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.3;
    color: #1E1F2E;
    text-transform: none;
}

.zadra-dest-all__description {
    margin: 16px 0 0;
    max-width: 764px;
    font-family: "Merriweather", serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #1E1F2E;
    text-align: center;
}

/* ── Card grid: 4 columns ────────────────────────────────────────────── */
.zadra-dest-all__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ── Card ────────────────────────────────────────────────────────────── */
.zadra-dest-all__card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 24px;
    height: 364px;
    border-radius: 24px;
    background-color: #1E1F2E;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.zadra-dest-all__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

/* ── Frosted label ───────────────────────────────────────────────────── */
.zadra-dest-all__label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-radius: 24px;
    box-sizing: border-box;
}

.zadra-dest-all__label-text {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.35;
    color: #FFFFFF;
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .zadra-dest-all { padding: 96px 0; }
}

@media (max-width: 991px) {
    .zadra-dest-all             { padding: 80px 0; }
    .zadra-dest-all__grid       { grid-template-columns: repeat(3, 1fr); }
    .zadra-dest-all__title      { font-size: 40px; }
}

@media (max-width: 767px) {
    .zadra-dest-all             { padding: 64px 0; }
    .zadra-dest-all__grid       { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .zadra-dest-all__card       { height: 280px; }
    .zadra-dest-all__title      { font-size: 34px; }
    .zadra-dest-all__header     { margin-bottom: 40px; }
}

@media (max-width: 480px) {
    .zadra-dest-all__grid       { grid-template-columns: 1fr; }
    .zadra-dest-all__card       { height: 240px; }
}
