/* ================================
   PARKING SECTION
================================ */

.parking {
    background: #101c23;
    padding: 6rem 1rem;
    text-align: left;
}

.parking-container {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3.5rem;
    align-items: center;
}

.parking-label {
    display: inline-flex;
    margin-bottom: 1rem;
    color: #f5c98a;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.parking-content h2 {
    max-width: 520px;
    margin-bottom: 1.25rem;
    text-align: left;
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: 1.1;
}

.parking-content p {
    max-width: 560px;
    color: #b0c4cf;
    font-size: 1.05rem;
    line-height: 1.75;
}

.parking-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.parking-highlights span {
    border: 1px solid rgba(245, 201, 138, 0.22);
    border-radius: 999px;
    background: rgba(245, 201, 138, 0.08);
    color: #f5c98a;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    font-weight: 700;
}

.parking-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 155px;
    gap: 0.85rem;
}

.parking-photo {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #1a252f;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

.parking-photo-large {
    grid-column: span 2;
    grid-row: span 2;
}

.parking-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.parking-photo:hover img {
    filter: brightness(1.08);
    transform: scale(1.05);
}

@media (max-width: 980px) {
    .parking-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .parking-content,
    .parking-content h2,
    .parking-content p {
        max-width: 760px;
        text-align: center;
    }

    .parking-content {
        margin: 0 auto;
    }

    .parking-highlights {
        justify-content: center;
    }
}

@media (max-width: 680px) {
    .parking {
        padding: 5rem 1rem;
    }

    .parking-showcase {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 135px;
        gap: 0.7rem;
    }

    .parking-photo-large {
        grid-column: 1 / -1;
        grid-row: span 2;
    }
}

@media (max-width: 420px) {
    .parking-showcase {
        grid-auto-rows: 118px;
    }

    .parking-highlights span {
        width: 100%;
        text-align: center;
    }
}
