/* =========================================================
   FLOATING OVERLAY STRIP (Premium Luxury Version)
========================================================= */

.overlay-strip {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    transform: translateY(-50%);
    width: 100%;
    padding: 0 5%;
    z-index: 20;
    pointer-events: none;
    background: transparent;
}

/* Container */
.overlay-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0;
    pointer-events: auto;
}

/* ================= CARD ================= */
.overlay-item {
    flex: 1 1 22%;
    min-width: 220px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 14px 10px;
    text-align: center;
    border-radius: 0;

    background: #02331d;

    border: 0;
    text-decoration: none;
    color: inherit;

    cursor: pointer;
    position: relative;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);

    transition: all 0.4s ease;

    opacity: 0;
    transform: translateY(40px);
}

/* Show animation */
.overlay-item.show {
    opacity: 1;
    transform: translateY(0);
}

/* Hover effect */
.overlay-item:hover {
    transform: translateY(-8px);
    background: #034728;
    border: 1px solid rgba(212, 175, 55, 0.6);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Card title */
.overlay-item h3 {
    font-size: 17px;
    font-family: 'League Spartan', sans-serif;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
    letter-spacing: 0.5px;
    line-height: 1.4;
    text-decoration: none;
}

/* =========================================================
   TABLET
========================================================= */
@media (max-width: 992px) {

    .overlay-strip {
        padding: 0 3%;
    }

    .overlay-item {
        min-width: 180px;
        padding: 12px 8px;
    }

    .overlay-item h3 {
        font-size: 15px;
    }
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 768px) {

    .overlay-strip {
        position: relative;
        top: 0;
        transform: none;
        width: 100%;
        padding: 15px 3%;
        margin: 0;
        z-index: 10;
    }

    .overlay-container {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin: 0 auto;
    }

    .overlay-item {
        width: 100%;
        min-width: auto;
        max-width: 100%;

        opacity: 1;
        transform: none;

        padding: 16px 12px;
        margin: 0;

        background: #02331d;
        border-radius: 0;

        box-sizing: border-box;
    }

    .overlay-item h3 {
        color: #ffffff;
        font-size: 15px;
        line-height: 1.4;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */
@media (max-width: 480px) {

    .overlay-strip {
        padding: 10px 2%;
    }

    .overlay-item {
        padding: 14px 10px;
    }

    .overlay-item h3 {
        font-size: 14px;
        letter-spacing: 0.3px;
    }
}