/* Hot Section page — extends the shared index.css theme (purple/yellow) */

.hotpicks {
    padding: 60px 0 20px;
}

.hotpicks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media only screen and (max-width: 992px) {
    .hotpicks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 480px) {
    .hotpicks-grid {
        grid-template-columns: 1fr;
    }
}

.hotpick-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .hotpick-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
    }

.hotpick-media {
    position: relative;
    aspect-ratio: 4 / 3;
    background-color: #ffd204;
    overflow: hidden;
}

    .hotpick-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .hotpick-media .fallback-icon {
        display: none;
        width: 100%;
        height: 100%;
        align-items: center;
        justify-content: center;
        font-size: 60px;
    }

    .hotpick-media.no-image img {
        display: none;
    }

    .hotpick-media.no-image .fallback-icon {
        display: flex;
    }

.hotpick-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #6f3a86;
    color: #ffd204;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.hotpick-body {
    padding: 16px 18px 20px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hotpick-name {
    color: #6f3a86;
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 4px;
    font-family: 'degulardemo-black';
}

/* Locations (shown inside each hotpick card, under the title) */
.location-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

    .location-tags span {
        background-color: #f4ecf9;
        color: #5c3070;
        font-size: 13px;
        font-weight: 600;
        padding: 6px 12px;
        border-radius: 999px;
        width: 110px;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

/* CTA */
.hotsection-cta {
    text-align: center;
    padding: 45px 0 20px;
}

    .hotsection-cta a {
        display: inline-block;
        background-color: #6f3a86;
        color: #ffd204;
        font-weight: bold;
        font-size: 16px;
        text-decoration: none;
        padding: 14px 40px;
        border-radius: 999px;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        transition: transform 0.2s ease, background-color 0.2s ease;
    }

        .hotsection-cta a:hover {
            transform: translateY(-2px);
            background-color: #5c3070;
            color: #ffd204;
        }


.location-tag {
    width: 120px;
    height: 36px;
    border: none;
    border-radius: 20px;
    background: #eee;
    color: #333;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
    font-family: 'degulardemo-regular';
}

    .location-tag:hover {
        color: #fff;
        background: linear-gradient(90deg, #6f3a86, #ffd204);
    }