/* =====================================
   PLACE CARD WRAPPER
===================================== */
.place-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 1rem;
    overflow: hidden;
    transition: 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
}

.place-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(59, 130, 246, 0.4);
}

/* =====================================
   IMAGE
===================================== */
.place-card-image {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

/* =====================================
   CONTENT AREA
===================================== */
.place-card-content {
    padding: 1rem;
    text-align: center;
    color: white;
}

/* TITLE */
.place-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 0.5rem;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
}

/* DESCRIPTION */
.place-card-desc {
    font-size: 0.95rem;
    margin: 0.6rem 0 1rem 0;
    opacity: 0.9;
    line-height: 1.3;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
    min-height: 40px;
}

/* =====================================
   BUTTON
===================================== */
.place-card-button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: rgba(59, 130, 246, 0.25);
    border: 1px solid rgba(147, 197, 253, 0.5);
    border-radius: 0.5rem;
    color: white;
    font-weight: 600;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.place-card-button:hover {
    background: rgba(59, 130, 246, 0.35);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}
