/* Explore Page Styles */
.explore-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.explore-card:hover {
    transform: scale(1.05);
}

/* Make the entire card clickable */
.explore-card a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    text-decoration: none; /* Removes default underline */
}

.explore-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.explore-card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
    position: relative;
    z-index: 2; /* Keeps text above the clickable layer */
}

/* Make the entire card clickable but keep text normal */
.explore-card-link {
    text-decoration: none;
    color: inherit; /* Keeps the text looking normal */
    display: block;
}

.explore-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: inherit; /* Keeps the title text looking normal */
}

.explore-card-title:hover {
    text-decoration: none; /* Prevents underline on hover */
}

.btn-explore {
    background-color: #e54878;
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    position: relative;
    z-index: 2; /* Keeps button above */
}

.btn-explore:hover {
    background-color: #d33c6a;
}
