/* ================== OVER ONS (FULL UPDATED) ================== */

:root {
    --brand-gold: #d8b87a;
    --fg: #fff;
    --fg-dim: rgba(255,255,255,.85);
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    height: calc(100vh - var(--nav-h));
    min-height: 560px;
    color: #fff;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 2rem;
    background: url('../images/home1.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 60% at 50% 40%,rgba(0,0,0,0) 0%,rgba(0,0,0,.22) 55%,rgba(0,0,0,.38) 100%), linear-gradient(180deg,rgba(0,0,0,.10),rgba(0,0,0,.30));
    z-index: 0;
}

.bokeh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

    .bokeh span {
        position: absolute;
        width: 140px;
        height: 140px;
        border-radius: 50%;
        filter: blur(18px);
        opacity: .25;
        background: radial-gradient(circle,#fff 0%,rgba(255,255,255,0) 60%);
        animation: float 18s linear infinite;
    }

        .bokeh span:nth-child(1) {
            top: 10%;
            left: 5%;
            animation-duration: 24s;
        }

        .bokeh span:nth-child(2) {
            top: 20%;
            right: 10%;
            animation-duration: 28s;
        }

        .bokeh span:nth-child(3) {
            bottom: 15%;
            left: 20%;
            animation-duration: 26s;
        }

        .bokeh span:nth-child(4) {
            bottom: 10%;
            right: 15%;
            animation-duration: 22s;
        }

        .bokeh span:nth-child(5) {
            top: 45%;
            left: 55%;
            animation-duration: 30s;
        }

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) scale(1)
    }

    50% {
        transform: translateY(-20px) translateX(10px) scale(1.03)
    }

    100% {
        transform: translateY(0) translateX(0) scale(1)
    }
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
}

.hero__kicker {
    display: inline-block;
    letter-spacing: .12em;
    font-size: .85rem;
    text-transform: uppercase;
    padding: 6px 10px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 999px;
    background: rgba(0,0,0,.25);
    backdrop-filter: blur(4px);
}

.hero__title {
    margin: 18px auto 10px;
    font-size: clamp(2rem,4vw + 1rem,3.6rem);
    line-height: 1.1;
    font-weight: 700;
    font-family: 'Playfair Display',serif;
    max-width: 18ch;
    text-shadow: 0 2px 30px rgba(0,0,0,.35);
}

.hero__lead {
    margin: 10px auto 26px;
    max-width: 70ch;
    font-size: clamp(1rem,1vw + .8rem,1.25rem);
    color: var(--fg-dim);
}

.hero__cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 10px 0 18px;
}

.ornament {
    color: var(--brand-gold);
    opacity: .9;
    margin: 8px auto 12px;
    width: 160px;
}

/* badges */
.badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}

.badge {
    display: grid;
    gap: 2px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    min-width: 180px;
}

.badge__title {
    font-weight: 600;
}

.badge__desc, .badge__link {
    color: var(--fg-dim);
    text-decoration: none;
}

    .badge__link:hover {
        text-decoration: underline;
    }

/* promo card */
.promo-card {
    position: absolute;
    right: clamp(1rem,3vw,2rem);
    bottom: clamp(1rem,3vw,2rem);
    width: clamp(260px,28vw,340px);
    color: #fff;
    background: rgba(0,0,0,.38);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    box-shadow: 0 12px 30px rgba(0,0,0,.28);
    z-index: 3;
}

.promo-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
}

.promo-copy .eyebrow {
    display: inline-block;
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .9;
    color: var(--brand-gold);
    margin-bottom: 4px;
}

.promo-copy h3 {
    margin: .1rem 0 .2rem;
    font-size: 1.15rem;
    line-height: 1.2;
}

.promo-copy p {
    margin: .2rem 0 .6rem;
    font-size: .95rem;
    opacity: .95;
}

.promo-qr {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    background: #fff;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,.25);
}

/* pill button */
.btn-pill {
    display: inline-block;
    padding: .55rem .9rem;
    border-radius: 999px;
    background: linear-gradient(180deg,#e6d386,#caa94b);
    color: #1e1e1e;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.35);
    transition: transform .15s ease, box-shadow .2s ease;
    font-size: .95rem;
    line-height: 1;
    margin-right: .4rem;
}

    .btn-pill:hover {
        transform: translateY(-1px);
        box-shadow: 0 12px 24px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.45);
    }

    .btn-pill.ghost {
        background: transparent;
        color: #fff;
        border: 2px solid rgba(255,255,255,.6);
        box-shadow: none;
    }

/* ---------- TEAM ---------- */
.team-luxury-section {
    position: relative;
    padding: clamp(3rem,6vw,6rem) 2rem;
    background: linear-gradient(rgba(0,0,0,.40), rgba(0,0,0,.40)), url('../images/hero4.jpg') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

    .team-luxury-section .team-bg-overlay {
        position: absolute;
        inset: 0;
        background: url('../images/team-bg.jpg') center/cover no-repeat;
        opacity: .25;
        filter: blur(2px);
        z-index: 0;
    }

.team-heading {
    text-align: center;
    font-size: 3rem;
    font-family: 'Playfair Display',serif;
    color: #fff4ec;
    margin: 0 0 2.5rem;
    position: relative;
    z-index: 1;
}

.team-carousel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 1.6rem;
    align-items: stretch;
}

.team-member-card {
    background: rgba(0,0,0,.35);
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0,0,0,.28);
    text-align: center;
    padding: 1.8rem 1.4rem;
    backdrop-filter: blur(10px);
    transition: transform .3s ease, box-shadow .3s ease;
}

    .team-member-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 45px rgba(0,0,0,.36);
    }

/* AVATAR — net, zoom yok; tıklanabilir */
.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 0 4px gold, 0 12px 28px rgba(0,0,0,.30);
    margin: 0 auto 1rem;
}

    .team-photo img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: 50% 42%;
        transform: none !important;
        transition: none;
        image-rendering: auto;
    }

    .team-photo .avatar-link {
        display: block;
        width: 100%;
        height: 100%;
    }

.team-member-card:hover .team-photo img {
    transform: none;
}

/* 1 & 3: sadece kadraj oynat */
.team-carousel .team-member-card:nth-child(1) .team-photo img {
    object-position: 50% 45%;
}

.team-carousel .team-member-card:nth-child(3) .team-photo img {
    object-position: 50% 48%;
}

.team-member-card h4 {
    margin: .5rem 0 0;
    font-size: 1.25rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

.team-member-card .badge {
    background: gold;
    color: #2d2d2d;
    font-size: .75rem;
    padding: .3rem .6rem;
    border-radius: 12px;
}

.team-member-card .role {
    color: #eaeaea;
    font-size: 1rem;
    margin: .35rem 0 .25rem;
}

.team-member-card blockquote {
    font-style: italic;
    color: #f5f5f5;
    font-size: .98rem;
    margin: 1rem auto 0;
    max-width: 28ch;
    line-height: 1.5;
}

/* LIGHTBOX (CSS only) */
.team-lightbox {
    position: fixed;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.88);
    z-index: 9999;
    transition: opacity .2s ease, visibility 0s .2s;
    padding: 4vmin;
}

    .team-lightbox:target {
        visibility: visible;
        opacity: 1;
        transition: opacity .2s ease;
    }

    /* kapanış alanı (tüm arka plan tıklanabilir) */
    .team-lightbox .lb-bg {
        position: absolute;
        inset: 0;
        display: block;
    }

    .team-lightbox img {
        position: relative;
        max-width: 92vw;
        max-height: 92vh;
        border-radius: 14px;
        box-shadow: 0 12px 30px rgba(0,0,0,.45);
    }

/* ---------- WAAROM WIJ ---------- */
.waaromwij {
    padding: clamp(2.5rem,5vw,4rem) clamp(1.25rem,3vw,2rem);
    background: #f9f9f9;
    text-align: center;
}

    .waaromwij h2 {
        font-size: 2.5rem;
        margin: 0 0 2rem;
        font-family: 'Playfair Display',serif;
    }

.why-container {
    display: grid;
    grid-template-columns: repeat(3,minmax(260px,1fr));
    gap: clamp(1rem,3vw,2rem);
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.why-col {
    display: grid;
    gap: clamp(1rem,1.6vw,1.25rem);
    align-content: start;
}

.why-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .why-image img {
        width: 100%;
        max-width: 520px;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,.08);
    }

.why-card {
    background: #fff;
    padding: 1.4rem 1.25rem;
    border-radius: 14px;
    box-shadow: 0 6px 22px rgba(0,0,0,.06);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

    .why-card img {
        width: 48px;
        height: 48px;
        object-fit: contain;
        margin-bottom: .75rem;
        background: #fffaf5;
        padding: 10px;
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(0,0,0,.06) inset, 0 4px 10px rgba(0,0,0,.03);
    }

    .why-card h3 {
        font-size: 1.15rem;
        margin: .25rem 0 .35rem;
        font-weight: 700;
    }

    .why-card p {
        font-size: .98rem;
        line-height: 1.55;
        margin: 0;
        color: #444;
        max-width: 36ch;
    }
/* ---------- VIDEOS ---------- */
.videos {
    padding: clamp(2rem,6vw,4rem) clamp(1rem,4vw,2rem);
    background: var(--bg-color);
}

    .videos h2 {
        text-align: center;
        font-size: clamp(1.6rem,4.5vw,2.5rem);
        margin: 0 0 clamp(1rem,3vw,1.75rem);
    }

.vid-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.vid-card {
    flex: 1 1 340px;
    max-width: 380px;
    min-width: 260px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(0,0,0,.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

    .vid-card .media {
        background: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: clamp(150px,22vw,240px);
    }

        .vid-card .media > video, .vid-card .media > iframe, .vid-card .media > img {
            width: auto;
            height: auto;
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            object-position: center;
            display: block;
            border: 0;
        }

    .vid-card .body {
        padding: 12px 16px 16px;
        text-align: center;
    }

        .vid-card .body h3 {
            margin: 0;
            font-size: 1.05rem;
        }

/* ---------- RESPONSIVE ---------- */
@media (max-width:1024px) {
    .why-container {
        grid-template-columns: 1fr 1fr;
    }

    .why-image {
        grid-column: 1 / -1;
        order: -1;
        margin-bottom: 1rem;
    }
}

@media (max-width:768px) {
    .hero {
        height: auto;
        min-height: 88vh;
        padding: 96px 16px 24px;
        background-position: center 35%;
    }

    .hero__title {
        font-size: clamp(1.8rem,6vw + .8rem,2.2rem);
        line-height: 1.15;
        margin-bottom: 8px;
    }

    .hero__lead {
        font-size: 1rem;
        margin: 6px auto 16px;
        max-width: 60ch;
    }

    .hero__cta {
        gap: 10px;
        margin: 8px 0 10px;
    }

    .ornament {
        display: none;
    }

    .badges {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-top: 10px;
    }

    .badge {
        width: 100%;
        max-width: 520px;
        min-width: 0;
        padding: 12px 14px;
    }

    .promo-card {
        position: static;
        width: 100%;
        max-width: 560px;
        margin: 12px auto 0;
        border-radius: 14px;
        background: rgba(0,0,0,.55);
        border: 1px solid rgba(255,255,255,.18);
        backdrop-filter: blur(12px);
        box-shadow: 0 10px 28px rgba(0,0,0,.28);
        z-index: 2;
    }

    .promo-inner {
        grid-template-columns: 1fr auto;
        gap: 10px;
        padding: 12px 14px;
    }

    .promo-qr {
        width: 56px;
        height: 56px;
        border-radius: 8px;
    }

    .bokeh span {
        opacity: .12;
        filter: blur(16px);
    }
}

@media (max-width:680px) {
    .btn-pill {
        padding: .5rem .8rem;
        font-size: .9rem;
    }

    .badge {


        padding: 10px 14px;
     
    }
}

@media (max-height:680px) {
    .badges {
        gap: 6px;
       
    }
 
}

/* === FIX: Team kartındaki sarı rozet çok uzun === */
.team-member-card h4 .badge {
    /* hero'daki .badge kurallarını ezer */
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 0 !important;
    padding: .35rem .8rem !important;
    border-radius: 999px !important;
    background: gold !important; /* istersen #ffd400 yap */
    color: #2d2d2d !important;
    font-size: .85rem !important;
    font-weight: 700;
    line-height: 1;
    border: 0;
    box-shadow: none;
}

/* === Team kartındaki sarı rozet: mobilde uzunluğu düzelt === */
.team-member-card h4 .badge {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    min-width: 0 !important; /* global min-width:180px'i ezer */
    flex: 0 0 auto !important; /* esnemesin */
    white-space: nowrap; /* tek satır, taşmasın */
    padding: .28rem .62rem; /* küçük pill */
    font-size: .82rem;
    border-radius: 999px;
}

/* Küçük ekranlarda biraz daha kompakt */
@media (max-width: 480px) {
    .team-member-card h4 {
        gap: .35rem; /* başlık ile rozet arası */
    }

        .team-member-card h4 .badge {
            padding: .24rem .55rem;
            font-size: .78rem;
        }
}

/* === WAAROM WIJ: Mobilde kayma/taşma düzeltmesi === */
@media (max-width: 640px) {
    .waaromwij {
        padding: 1.25rem 0.9rem;
    }

    .why-container {
        grid-template-columns: 1fr !important; /* tek sütun */
        gap: 14px; /* daha sıkı boşluk */
    }

    .why-card {
        padding: 1rem 0.9rem;
        min-height: unset;
        border-radius: 12px;
    }

        .why-card img {
            width: 36px;
            height: 36px;
            padding: 8px;
            margin-bottom: 0.5rem;
        }

        .why-card h3 {
            font-size: 1.05rem;
            margin: .2rem 0 .3rem;
        }

        .why-card p {
            font-size: .95rem;
            line-height: 1.55;
        }
}

/* Tablet aralığında daha dengeli iki sütun (isteğe bağlı,
   mevcut 1024px kuralını biraz daha aşağı çekmek için) */
@media (max-width: 900px) and (min-width: 641px) {
    .why-container {
        grid-template-columns: 1fr 1fr;
    }
}
