/* TAMGAM - Halka açık Deneyimler dizini
   Bu dosya yalnızca pages/experiences.html için yüklenir. */

.experiences-page .experiences-filter-bar {
    align-items: end;
}

.experiences-page .experiences-filter-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.experiences-page .experiences-clear-button {
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid #cfdcd4;
    border-radius: 9px;
    background: #ffffff;
    color: #205b42;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: background-color 160ms ease, border-color 160ms ease;
}

.experiences-page .experiences-clear-button:hover {
    border-color: #9fbbaa;
    background: #f4f8f5;
}

.experiences-page .experiences-filter-button:disabled,
.experiences-page .experiences-clear-button:disabled {
    opacity: 0.65;
    cursor: wait;
}

.experiences-page .experiences-result-count {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid #dce6df;
    border-radius: 999px;
    background: #ffffff;
    color: #617269;
    font-size: 0.84rem;
    font-weight: 700;
}

.experiences-page .tamgam-experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.experiences-page .tamgam-experience-grid[hidden] {
    display: none !important;
}

.experiences-page .tamgam-experience-card {
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #dbe5df;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 8px 26px rgba(24, 67, 50, 0.05);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.experiences-page .tamgam-experience-card:hover {
    transform: translateY(-4px);
    border-color: #bad0c2;
    box-shadow: 0 18px 42px rgba(24, 67, 50, 0.10);
}

.experiences-page .tamgam-experience-image {
    position: relative;
    display: block;
    width: 100%;
    height: 205px;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 22%, rgba(255,255,255,.14) 0 50px, transparent 51px),
        linear-gradient(135deg, #dfece4, #b9d3c3);
    color: #49675a;
    text-decoration: none;
}

.experiences-page .tamgam-experience-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 250ms ease;
}

.experiences-page .tamgam-experience-card:hover .tamgam-experience-image img {
    transform: scale(1.035);
}

.experiences-page .tamgam-experience-image.is-placeholder {
    display: grid;
    place-items: center;
}

.experiences-page .tamgam-experience-image-label {
    padding: 0 20px;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 800;
}

.experiences-page .tamgam-experience-type-badge {
    position: absolute;
    left: 16px;
    top: 16px;
    display: inline-flex;
    align-items: center;
    min-height: 31px;
    padding: 0 11px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #205b42;
    box-shadow: 0 6px 18px rgba(22, 63, 46, 0.10);
    font-size: 0.72rem;
    font-weight: 850;
}

.experiences-page .tamgam-experience-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.experiences-page .tamgam-experience-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
    color: #718078;
    font-size: 0.76rem;
    font-weight: 700;
}

.experiences-page .tamgam-experience-location,
.experiences-page .tamgam-experience-capacity {
    min-width: 0;
}

.experiences-page .tamgam-experience-location {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.experiences-page .tamgam-experience-capacity {
    flex: 0 0 auto;
}

.experiences-page .tamgam-experience-content h3 {
    margin: 0 0 6px;
    font-size: 1.3rem;
    line-height: 1.24;
    letter-spacing: -0.02em;
}

.experiences-page .tamgam-experience-content h3 a {
    color: #173f30;
    text-decoration: none;
}

.experiences-page .tamgam-experience-content h3 a:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.experiences-page .tamgam-experience-provider {
    margin: 0 0 13px;
    color: #748179;
    font-size: 0.82rem;
    font-weight: 650;
}

.experiences-page .tamgam-experience-provider a {
    color: #2b7253;
    font-weight: 800;
    text-decoration: none;
}

.experiences-page .tamgam-experience-provider a:hover {
    text-decoration: underline;
}

.experiences-page .tamgam-experience-description {
    min-height: 68px;
    margin: 0 0 16px;
    color: #596a61;
    font-size: 0.88rem;
    line-height: 1.6;
}

.experiences-page .tamgam-experience-schedule {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    margin-bottom: 16px;
    padding: 12px 13px;
    border-radius: 12px;
    background: #f5f8f6;
    color: #4f655a;
    font-size: 0.78rem;
}

.experiences-page .tamgam-experience-schedule-label {
    flex: 0 0 auto;
    color: #829087;
    font-weight: 700;
}

.experiences-page .tamgam-experience-schedule strong {
    min-width: 0;
    text-align: right;
    color: #294e3d;
    font-weight: 850;
}

.experiences-page .tamgam-experience-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 15px;
    border-top: 1px solid #e7ece9;
}

.experiences-page .tamgam-experience-price {
    color: #173f30;
    font-size: 1rem;
    line-height: 1.2;
}

.experiences-page .tamgam-experience-detail-link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid #205b42;
    border-radius: 10px;
    background: #205b42;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 850;
    transition: background-color 160ms ease, transform 160ms ease;
}

.experiences-page .tamgam-experience-detail-link:hover {
    background: #174633;
    transform: translateY(-1px);
}

.experiences-page .tamgam-experience-empty {
    margin-top: 12px;
}

@media (max-width: 1000px) {
    .experiences-page .experiences-filter-bar {
        grid-template-columns: 1fr 1fr;
    }

    .experiences-page .experiences-filter-actions {
        width: 100%;
    }

    .experiences-page .experiences-filter-actions > button {
        flex: 1 1 0;
    }
}

@media (max-width: 760px) {
    .experiences-page .experiences-filter-bar {
        grid-template-columns: 1fr;
    }

    .experiences-page .experiences-list-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .experiences-page .tamgam-experience-grid {
        grid-template-columns: 1fr;
    }

    .experiences-page .tamgam-experience-card {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .experiences-page .experiences-filter-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .experiences-page .tamgam-experience-image {
        height: 180px;
    }

    .experiences-page .tamgam-experience-meta,
    .experiences-page .tamgam-experience-footer,
    .experiences-page .tamgam-experience-schedule {
        align-items: stretch;
        flex-direction: column;
    }

    .experiences-page .tamgam-experience-schedule strong {
        text-align: left;
    }

    .experiences-page .tamgam-experience-detail-link {
        width: 100%;
    }
}
