/* ============================================================
   attraction-detail.css
   Attraction-specific styles only.
   Requires: show-details.css
   Version: 1.0 | Date: 30-06-2026
   ============================================================ */

.att-description {
    font-size: 0.95rem;
    color: var(--tx);
    line-height: 1.7;
}

.att-description p { margin-bottom: 1rem; }
.att-description p:last-child { margin-bottom: 0; }

.att-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.75rem;
}

.att-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--tx);
    background: var(--bg);
    border: 1px solid var(--bd);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
}

.att-feature i { color: var(--pr); font-size: 0.9rem; flex-shrink: 0; }

.att-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s;
    border: none;
    cursor: pointer;
}

.att-btn-accent { background: var(--ac); color: #fff; }
.att-btn-accent:hover { background: #ca6f1e; color: #fff; }

.att-btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 0.6rem;
}

/* ============================================================
   RANDOM ATTRACTION CARD
   ============================================================ */
.att-random-card {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.15s;
}

.att-random-card:hover { opacity: 0.85; }

.att-random-img {
    width: 80px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg);
}

.att-random-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.att-random-placeholder {
    width: 80px;
    height: 60px;
    border-radius: 6px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #1a3a5c, #2471a3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    font-size: 1.5rem;
}

.att-random-body { flex: 1; min-width: 0; }

.att-random-cat {
    font-size: 0.72rem;
    color: var(--ac);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.att-random-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--tx);
    line-height: 1.3;
}
