/* =========================
  SALON INDEX PAGE STYLES
========================= */
.salon-page {
    color: #333;
    padding: 24px 0 40px;
    min-height: 60vh;
    background-image:
        radial-gradient(1200px 600px at 0% 0%, rgba(139, 0, 0, .04), transparent 60%),
        radial-gradient(1000px 500px at 100% 20%, rgba(44, 62, 80, .04), transparent 60%);
    background-size: cover;
    background-attachment: fixed;
}

    .salon-page .salon-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 16px;
    }

/* Geri butonu satırı (başlığın altında) */
.salon-page .header-back-row {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
}

/* ---- Salon Group Grid ---- */
.salon-group-grid {
    margin-top: 8px;
}

.salon-group {
    padding-bottom: 0;
}

/* ---- Salon Group Card (NEW: dikey showcase) ---- */
.salon-group-link {
    display: block;
    height: 100%;
}

.salon-group-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 22px;
    overflow: hidden;
    padding: 28px 24px 24px;
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, .04),
        0 10px 24px rgba(0, 0, 0, .06);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    isolation: isolate;
}

    /* Üst aksan şerit (kartın tepesi) */
    .salon-group-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--msb-bordo), #c0303a, var(--msb-bordo));
        opacity: 0;
        transition: opacity .3s ease;
        z-index: 2;
    }

    .salon-group-card:hover {
        transform: translateY(-8px);
        box-shadow:
            0 1px 2px rgba(0, 0, 0, .04),
            0 24px 48px rgba(139, 0, 0, .18);
        border-color: rgba(139, 0, 0, .25);
    }

        .salon-group-card:hover::before {
            opacity: 1;
        }

/* Köşedeki dekoratif şekil */
.salon-group-shape {
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 0, 0, .06), transparent 70%);
    pointer-events: none;
    transition: transform .5s ease, background .3s ease;
    z-index: 0;
}

.salon-group-card:hover .salon-group-shape {
    transform: scale(1.3);
    background: radial-gradient(circle, rgba(139, 0, 0, .12), transparent 70%);
}

/* Floating gradient ikon (üst sol) */
.icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--msb-bordo), #c0303a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    box-shadow:
        0 12px 26px rgba(139, 0, 0, .28),
        inset 0 1px 0 rgba(255, 255, 255, .2);
    flex-shrink: 0;
    transition: transform .35s ease, box-shadow .35s ease, border-radius .35s ease;
    position: relative;
    z-index: 2;
}

.salon-group-card:hover .icon-wrap {
    transform: scale(1.08) rotate(-6deg);
    border-radius: 24px;
    box-shadow:
        0 16px 32px rgba(139, 0, 0, .40),
        inset 0 1px 0 rgba(255, 255, 255, .3);
}

/* Body (başlık + alt başlık) */
.salon-group-body {
    flex-grow: 1;
    min-width: 0;
    position: relative;
    z-index: 2;
}

.salon-group-card .title {
    font-size: 1.25rem;
    font-weight: 750;
    line-height: 1.25;
    color: #1f2937;
    margin: 0 0 6px;
    transition: color .25s ease;
    word-break: break-word;
}

.salon-group-card:hover .title {
    color: var(--msb-bordo);
}

.salon-group-card .subtitle {
    font-size: .92rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
    word-break: break-word;
}

/* CTA satırı (alt) */
.salon-group-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--msb-bordo);
    font-weight: 650;
    font-size: .9rem;
    padding-top: 14px;
    border-top: 1px dashed rgba(139, 0, 0, .15);
    transition: gap .25s ease, color .25s ease;
    position: relative;
    z-index: 2;
}

    .salon-group-cta i {
        transition: transform .25s ease;
        font-size: .82rem;
    }

.salon-group-card:hover .salon-group-cta {
    gap: 12px;
    color: #a30000;
}

    .salon-group-card:hover .salon-group-cta i {
        transform: translateX(4px);
    }

    /* =========================
   SALON CTA BANNER (Sanal Gezi)
   ========================= */
.salon-cta-banner {
    margin-top: 40px;
    background: var(--msb-bordo);
    color: #fff;
    border-radius: 22px;
    padding: 30px 36px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 18px 36px rgba(139, 0, 0, .25);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

    /* Dekoratif yıldız */
    .salon-cta-banner::after {
        content: "\f005";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        position: absolute;
        right: 28px;
        bottom: -28px;
        font-size: 8rem;
        color: rgba(255, 255, 255, .06);
        pointer-events: none;
        z-index: 0;
    }

.salon-cta-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15);
    z-index: 1;
}

.salon-cta-content {
    flex-grow: 1;
    min-width: 0;
    z-index: 1;
}

    .salon-cta-content h3 {
        font-size: 1.4rem;
        font-weight: 750;
        margin: 0 0 4px;
        color: #fff;
    }

    .salon-cta-content p {
        margin: 0;
        font-size: .98rem;
        opacity: .9;
        line-height: 1.5;
    }

.salon-cta-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--msb-bordo);
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, background .2s ease;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
    z-index: 1;
}

    .salon-cta-btn i {
        transition: transform .25s ease;
        font-size: .85rem;
    }

    .salon-cta-btn:hover {
        background: #fff;
        color: var(--msb-bordo);
        text-decoration: none;
        transform: translateY(-2px);
        box-shadow: 0 14px 28px rgba(0, 0, 0, .26);
    }

        .salon-cta-btn:hover i {
            transform: translateX(4px);
        }

/* =========================
  SALON GROUP PAGE STYLES
========================= */
.salon-page .filters {
    background: #fff;
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
    margin-bottom: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.salon-page .search-box {
    flex: 1;
    min-width: 280px;
    position: relative;
}

    .salon-page .search-box input {
        width: 100%;
        padding: 12px 16px 12px 44px;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        font-size: 1rem;
        transition: .2s;
    }

        .salon-page .search-box input:focus {
            outline: none;
            border-color: var(--msb-bordo);
            box-shadow: 0 0 0 3px rgba(139,0,0,.10);
        }

    .salon-page .search-box i {
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--msb-bordo);
    }

.salon-page .results-info {
    font-size: 1.0rem;
    color: #2c3e50;
    font-weight: 700;
    background: #f8f9fa;
    padding: 10px 14px;
    border-radius: 8px;
    border-left: 4px solid var(--msb-bordo);
    white-space: nowrap;
}

.salon-page .events-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 18px;
    margin-top: 10px;
}

.salon-page .event-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
    transition: .25s ease;
    position: relative;
    border-left: 5px solid var(--msb-bordo);
    margin-bottom:10px;
}

    .salon-page .event-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 30px rgba(0,0,0,.14);
    }

.salon-page .event-content {
    padding: 18px;
}

.salon-page .event-title {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.35;
    font-weight: 800;
}

.salon-page .event-details {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #666;
}

    .salon-page .event-details i {
        color: var(--msb-bordo);
        width: 18px;
    }

.salon-page .event-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 12px;
}

.salon-page .event-actions {
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.salon-page .event-type {
    background: #f0f0f0;
    color: var(--msb-bordo);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 600;
}

.salon-page .empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 30px;
    color: #6b7280;
    background: #fff;
    border: 1px dashed rgba(139, 0, 0, .2);
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .04);
    margin-top: 20px;
}

    .salon-page .empty-state i {
        font-size: 3.5rem;
        color: var(--msb-bordo);
        margin-bottom: 14px;
        opacity: .55;
        display: block;
    }

    .salon-page .empty-state h3 {
        font-size: 1.25rem;
        margin: 0;
        color: #4b5563;
        font-weight: 700;
    }

@media (max-width: 768px) {
    .salon-page .events-container {
        grid-template-columns: 1fr;
    }

    .salon-page .filters {
        flex-direction: column;
        align-items: stretch;
    }

    .salon-page .search-box {
        min-width: 100%;
    }
}

/* =========================
  SALON ALBUM PAGE STYLES
========================= */

.object-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 992px) {
    .object-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .object-grid {
        grid-template-columns: 1fr;
    }
}

.object-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    display: flex;
    flex-direction: column;
    isolation: isolate;
}

    /* Sol kenarda bordo aksan */
    .object-card::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 3px;
        background: linear-gradient(180deg, var(--msb-bordo), #c0303a);
        z-index: 2;
        opacity: 0;
        transition: opacity .3s ease;
    }

    .object-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 36px rgba(139, 0, 0, .15);
        border-color: rgba(139, 0, 0, .2);
    }

        .object-card:hover::before {
            opacity: 1;
        }

.object-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #f3f5f7;
}

    .object-image::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, .2));
        opacity: 0;
        transition: opacity .35s ease;
        pointer-events: none;
    }

    .object-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .55s ease;
    }

    .object-card:hover .object-image img {
        transform: scale(1.07);
    }

    .object-card:hover .object-image::after {
        opacity: 1;
    }

.object-content {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.object-title {
    margin: 0 0 10px;
    font-size: 1.08rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
    transition: color .2s ease;
}

.object-card:hover .object-title {
    color: var(--msb-bordo);
}

.object-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 0;
    margin-bottom: 8px;
    border-top: 1px dashed rgba(0, 0, 0, .08);
    border-bottom: 1px dashed rgba(0, 0, 0, .08);
}

.object-meta .meta-line {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: .85rem;
    color: #4b5563;
    margin-bottom: 0;
}

    .object-meta .meta-line i {
        color: var(--msb-bordo);
        font-size: .8rem;
        width: 16px;
        text-align: center;
    }

.object-desc {
    margin: 8px 0 0;
    font-size: .92rem;
    line-height: 1.55;
    color: #6b7280;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =========================
   RESPONSIVE - SALON
   ========================= */
@media (max-width: 992px) {
    .salon-page {
        padding: 16px 0 32px;
        background-attachment: scroll;
    }

    .salon-page .events-container {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .salon-group-card {
        min-height: 240px;
        padding: 24px 22px;
    }

    .salon-group-card .title {
        font-size: 1.15rem;
    }

    .salon-group-no {
        font-size: 2rem;
        top: 14px;
        right: 18px;
    }

    .icon-wrap {
        width: 60px;
        height: 60px;
        border-radius: 18px;
        font-size: 22px;
    }

    /* CTA banner */
    .salon-cta-banner {
        padding: 24px 26px;
        gap: 18px;
    }

    .salon-cta-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .salon-cta-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .salon-page {
        padding: 12px 0 24px;
    }

    .salon-page .filters {
        padding: 14px;
    }

    .salon-page .results-info {
        white-space: normal;
        font-size: 0.9rem;
        text-align: center;
    }

    .salon-page .event-title {
        font-size: 1.1rem;
    }

    .salon-page .event-content {
        padding: 14px;
    }

    .salon-lead {
        font-size: .92rem;
    }

    .salon-group-card {
        min-height: 220px;
        padding: 22px 20px;
        gap: 14px;
    }

    .object-image img {
        height: 160px;
    }

    .object-title {
        font-size: 0.98rem;
    }

    /* CTA banner mobil: dikey */
    .salon-cta-banner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 22px 22px 24px;
        gap: 16px;
    }

    .salon-cta-banner::after {
        right: 12px;
        bottom: -32px;
        font-size: 6rem;
    }

    .salon-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .salon-group-card {
        min-height: auto;
        padding: 20px 18px;
    }

    .object-image img {
        height: 200px;
    }
}

