/* --- HERO SECTION --- */
.rec-hero {
    background-color: var(--bg-peach);
    padding: 80px 0 60px 0;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    margin-bottom: 50px;
}

.section-title {
    font-weight: 700;
    color: var(--brand-pink);
    position: relative;
    display: inline-block;
}

.bg-light-section {
    background-color: #fafafa;
    padding: 60px 20px;
}

/* --- CARD STYLE --- */
.rec-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.rec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.rec-img-wrapper {
    height: 220px;
    width: 100%;
    position: relative;
    flex-shrink: 0;
}

.rec-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- CONTENT FIXES --- */
.rec-content {
    /* Reduced padding slightly to prevent text from being 'smashed' */
    padding: 20px 18px; 
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
    height: 100%;
}

.rec-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
    line-height: 1.3;
}

.rec-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px; 
}

/* --- BADGES (Labels on images) --- */
.rec-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.badge-culture { background-color: #8E44AD; }
.badge-food { background-color: var(--brand-pink); }
.badge-trip { background-color: #27AE60; }


/* --- HORIZONTAL CARD (For Street Food) --- */
.horizontal-card {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .horizontal-card {
        flex-direction: row;
        align-items: center;
        height: auto;
    }
    
    .horizontal-img {
        width: 40%;
        height: 100%;
        min-height: 200px;
    }
    
    .rec-content {
        width: 100%;
        padding: 30px;
        align-items: flex-start;
    }
}

/* --- NEW ELEMENTS --- */

/* Entry Fee / Price Style */
.entrance-fee {
    display: inline-block;
    background-color: #fff3e9;
    color: var(--brand-pink);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 10px;
}

/* Map Button Style */
.btn-map {
    margin-top: auto; /* Pushes button to bottom of card */
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #495057;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap; /* Prevents button text from wrapping */
    width: fit-content;
}

.btn-map:hover {
    background-color: #e2e6ea;
    border-color: #ced4da;
    color: #000;
    transform: translateY(-2px);
}