/* Attractions Page Styles */

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.premium-tabs {
    border-bottom: 2px solid #eee;
}

.premium-card {
    background: #fff;
    transition: transform 0.3s;
}

.premium-card:hover {
    transform: translateY(-5px);
}

.location-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.4s;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.card-img-container {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.4));
}

.card-body-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.card-body-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.card-body-content .text-teal {
    color: var(--teal);
}