
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "termina", sans-serif;
}

#parks {
    background: linear-gradient(160deg, #f5a0b8 0%, #e8006e 55%, #c5005e 100%);
    min-height: 100vh;
    padding: 50px 0;
}

#banner {
    background-image: url('img/banner.webp');
    background-size: cover;
    background-position: center;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#banner img {
    display: block;
    max-width: 95%;
    height: auto;
}

#banner::after {
    content: url('img/figure-top-left.png');
    position: absolute;
    top: 0;
    left: 0;
}
#banner::before {
    content: url('img/figure-top-right.png');
    position: absolute;
    top: 0;
    right: 0;
}

/* ── Intro text ── */
.intro {
    display: flex;
    justify-content: space-between;
}

.intro p {
    font-family: "termina", sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: #fff;
    line-height: 1.65;
    letter-spacing: 0.01em;
}

/* ── Section header ── */
.section-header {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

.section-title {
    font-family: "termina", sans-serif;
    font-weight: 800;
    font-size: 38px;
    color: #fff;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1;
}

.coupon-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #22c55e;
    border-radius: 20px;
    padding: 10px 24px;
    white-space: nowrap;
}

.coupon-badge .label {
    font-family: "termina", sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.coupon-badge .code {
    font-family: "termina", sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: #fff;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ── Cards grid ── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ── Single card ── */
.card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.card-image {
    padding: 15px 15px 0;
}

/* placeholder when no real image */
.card-image-placeholder {
    width: 100%;
    height: 190px;
    background: linear-gradient(135deg, #e2908d 0%, #94a3b8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.card-body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center;
}

.card-location {
    display: inline-block;
    background-color: #eee8df;
    border-radius: 20px;
    padding: 4px 14px;
    font-family: "termina", sans-serif;
    font-weight: 600;
    font-size: 10px;
    color: #000;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 auto 12px;
    align-self: flex-start;
}

.card-title {
    font-family: "termina", sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
    line-height: 1.2;
}

.card-desc {
    font-family: "termina", sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    flex: 1;
}

/* ── Card footer ── */
.card-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}

.card-price {
    display: flex;
    align-items: baseline;
    gap: 3px;
    background: #e2168d;
    border-radius: 10px;
    padding: 10px 18px;
}

.card-price .currency {
    font-family: "termina", sans-serif;
    font-weight: 700;
    font-size: 11px;
    color: #fff;
}

.card-price .amount {
    font-family: "termina", sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #fff;
    letter-spacing: -0.01em;
}

.card-btn {
    background: #22c55e;
    width: 100%;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 11px 16px;
    font-family: "termina", sans-serif;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    line-height: 1.3;
    text-align: center;
    transition: background 0.2s, transform 0.15s;
}

.card-btn:hover {
    background: #16a34a;
    transform: scale(1.04);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro {
        display: block;
    }

    h1 {
        font-size: 35px !important;
    }

    .intro, .section-header {
        padding: 20px;
    }
    .container {
        padding: 20px;
    }
}

@media (max-width: 600px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 26px;
    }
}

.container {
    width: 1400px;
    margin: auto;
    max-width: 99%;
}

h1 {
    font-size: 51px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
}

h1 span {
    color: #00fa9f;
}

.card-logo {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px auto 0;
}


footer {
    background-color: #ffc02c;
    position: relative;
}

footer .flex {
    min-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

@media (max-width: 1210px) {
    footer {
        padding: 50px 0;
    }
    footer .flex {
        flex-direction: column;
        gap: 30px;
    }

    :not(.hotel-card)::after,
    :not(.hotel-card)::before {
        display: none !important;
    }
}

footer::after {
    content: url('img/figure-bottom-left.png');
    position: absolute;
    bottom: 0;
    left: 0;
    height: 270px;
    overflow: hidden;
}

@media (max-width: 1600px) {
    footer::after {
        left: -280px;
    }
}

footer::before {
    content: url('img/figure-bottom-right.png');
    position: absolute;
    bottom: 0;
    right: 0;
    height: 160px;
    overflow: hidden;
}


