/* Places Showcase Section */
.places-showcase-section {
    padding: 80px 0;
    background: var(--cream-bg);
}

.places-showcase-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.places-showcase-section .section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-pink);
    margin-bottom: 16px;
}

.places-showcase-section .section-title {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 16px;
}

.places-showcase-section .section-description {
    font-size: 1.125rem;
    color: rgba(64, 64, 65, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.places-showcase-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: start;
}

.place-showcase-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.6s ease-in-out;
}

.place-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.place-showcase-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.place-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease-in-out;
}

.place-showcase-card:hover .place-showcase-image img {
    transform: scale(1.05);
}

.place-showcase-content {
    padding: 2rem;
}

.place-showcase-title {
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.place-showcase-description,
.place-selection-description {
    color: rgba(64, 64, 65, 0.8);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    font-style: normal;
    transition: max-height 0.6s ease-in-out, opacity 0.4s ease-in-out;
    overflow: hidden;
    max-height: 100px;
}

.place-showcase-description .desc-short,
.place-showcase-description .desc-full,
.place-selection-description .desc-short,
.place-selection-description .desc-full {
    font-weight: 400;
    font-style: normal;
    transition: opacity 0.6s ease-in-out, max-height 0.8s ease-in-out;
}

/* Hidden state for description parts */
.place-showcase-description .desc-full,
.place-selection-description .desc-full {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
}

/* Expanded state */
.place-showcase-description.expanded .desc-full,
.place-selection-description.expanded .desc-full {
    max-height: 1000px;
    opacity: 1;
}

.place-showcase-description.expanded .desc-short,
.place-selection-description.expanded .desc-short {
    display: none;
}

/* Paragraph spacing inside expanded descriptions */
.place-showcase-description p,
.place-selection-description p {
    padding-bottom: 0.75rem;
    margin: 0;
}

.place-showcase-description p:last-child,
.place-selection-description p:last-child {
    padding-bottom: 0;
}

/* .desc-full is hidden by default, shown via inline styles when expanded */

.read-more-btn,
.read-more-btn-booking {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: rgba(64, 64, 65, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.2rem 0 0.8rem;
    transition: all 0.6s ease-in-out;
}

.read-more-btn:hover,
.read-more-btn-booking:hover {
    gap: 0.75rem;
    color: var(--dark-text);
}

.read-more-btn svg,
.read-more-btn-booking svg {
    transition: transform 0.6s ease-in-out;
}

@media (max-width: 768px) {
    .places-showcase-section {
        padding: 60px 0;
    }

    .places-showcase-section .section-title {
        font-size: 2rem;
    }

    .places-showcase-grid {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
        gap: 1.5rem;
    }

    .place-showcase-image {
        height: 200px;
    }

    .place-showcase-content {
        padding: 1.5rem;
    }
}