/**
 * Anasayfa – BARBARONESS logo renkleri
 * Krem beyaz, altın, siyah – lüks ve zarif
 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700&display=swap');

:root {
    --landing-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', sans-serif;
    --landing-font-serif: 'Playfair Display', 'SF Pro Display', Georgia, serif;
    /* Logo renkleri */
    --landing-cream: var(--site-surface-2, #F0EDE8);
    --landing-cream-light: var(--site-bg, #F8F8F8);
    --landing-gold: var(--site-accent, #D4AF37);
    --landing-gold-light: var(--site-accent-2, #FFD700);
    --landing-gold-dark: var(--site-accent-strong, #B8944A);
    --landing-black: var(--site-heading, #111827);
    --landing-grey: var(--site-divider, #CCC7C2);
    /* Uygulama */
    --landing-bg: var(--landing-cream-light);
    --landing-bg-alt: var(--landing-cream);
    --landing-bg-card: var(--site-surface, #FFFFFF);
    --landing-text: var(--site-text, #1D1D1F);
    --landing-text-secondary: var(--site-text-muted, #424245);
    --landing-text-muted: var(--site-text-muted, #6E6E73);
    --landing-accent: var(--landing-gold);
    --landing-accent-hover: var(--landing-gold-dark);
    --landing-accent-soft: rgba(212, 175, 55, 0.12);
    --landing-border: rgba(0, 0, 0, 0.12);
    --landing-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --landing-shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.12);
    --landing-radius: 18px;
    --landing-radius-sm: 12px;
    --landing-radius-lg: 24px;
    --landing-safe-top: env(safe-area-inset-top, 0);
    --landing-safe-bottom: env(safe-area-inset-bottom, 0);
}

/* ========== TAM EKRAN ========== */
html {
    width: 100%;
    overflow-x: hidden;
}
body.site-landing-body {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: var(--landing-bg);
}

/* ========== MAIN ========== */
body.site-landing-body main,
.landing-main {
    width: 100%;
    max-width: none;
    min-height: 100vh;
    padding-bottom: 0;
}

/* ========== HERO ========== */
.landing-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: calc(100vh + var(--landing-safe-top));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--landing-black);
}

.landing-hero-slide {
    display: none;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
}

.landing-hero-slide.active {
    display: flex;
}

.landing-hero-slide--default,
.landing-hero-slide .landing-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.landing-hero-slide--default {
    background: var(--landing-black);
}

.landing-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.landing-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 1.5rem;
    max-width: 640px;
}

.landing-hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.2);
    color: var(--landing-gold);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.landing-hero-title {
    margin: 0 0 1rem;
    font-family: var(--landing-font-serif);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.landing-hero-subtitle {
    margin: 0 0 2rem;
    font-family: var(--landing-font-sans);
    font-size: 1.125rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
}

.landing-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--landing-gold);
    color: var(--landing-black);
    font-family: var(--landing-font-sans);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 980px;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.landing-hero-cta:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 24px rgba(212, 175, 55, 0.4);
    background: var(--landing-gold-light);
}

.landing-hero-cta:active {
    transform: scale(0.98);
}

.landing-hero-cta-icon {
    display: inline-flex;
}

.landing-hero-slide-link {
    display: block;
    position: absolute;
    inset: 0;
}

.landing-hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
}

.landing-hero-arrow:hover {
    background: rgba(212, 175, 55, 0.3);
    color: var(--landing-gold);
}

.landing-hero-prev { left: 1.5rem; }
.landing-hero-next { right: 1.5rem; }

.landing-hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.landing-hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.landing-hero-dot:hover {
    background: rgba(255,255,255,0.6);
}

.landing-hero-dot.active {
    background: var(--landing-gold);
    transform: scale(1.2);
}

/* ========== QUICK ACTIONS ========== */
.landing-actions {
    width: 100%;
    padding: 5.5rem 1.5rem;
    background: var(--landing-bg-alt);
}

.landing-actions-head {
    max-width: 1100px;
    margin: 0 auto 2.25rem;
    text-align: center;
}

.landing-actions-kicker {
    margin: 0 0 .5rem;
    font-size: 1rem;
    letter-spacing: .01em;
    text-transform: none;
    color: #7b6a3f;
    font-weight: 600;
}

.landing-actions-title {
    margin: 0;
    font-family: var(--landing-font-serif);
    font-size: clamp(2.2rem, 3.8vw, 3.1rem);
    line-height: 1.2;
    color: var(--landing-text);
}

.landing-actions-lead {
    margin: .9rem auto 0;
    max-width: 760px;
    color: var(--landing-text-secondary);
    font-size: 1.08rem;
    line-height: 1.65;
}

.landing-actions-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
}

.landing-actions-secondary {
    max-width: 1100px;
    margin: 2rem auto 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 0.75rem;
    font-size: 0.9375rem;
}

.landing-actions-secondary a {
    color: var(--landing-text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.landing-actions-secondary a:hover {
    color: var(--landing-accent);
}

.landing-actions-secondary-sep {
    color: var(--landing-text-muted);
    user-select: none;
}

.landing-action-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2.4rem 2.2rem;
    background: var(--landing-bg-card);
    border-radius: var(--landing-radius);
    text-decoration: none;
    color: var(--landing-text);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    border: 1px solid var(--landing-border);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.landing-action-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.14);
    border-color: rgba(0,0,0,0.18);
}

.landing-action-card--primary {
    background: linear-gradient(135deg, var(--landing-gold) 0%, var(--landing-gold-dark) 100%);
    color: var(--landing-black);
    border: 1px solid rgba(0,0,0,0.15);
    box-shadow: 0 18px 40px rgba(40, 29, 0, 0.2);
}

.landing-action-card--blog {
    background: linear-gradient(150deg, #ffffff 0%, #f8fafc 55%, #eef2ff 100%);
    border-color: rgba(99, 102, 241, 0.25);
}

.landing-action-card--blog .landing-action-icon {
    color: #4f46e5;
}

.landing-action-card--blog .landing-action-btn {
    background: rgba(79, 70, 229, 0.08);
    border-color: rgba(79, 70, 229, 0.3);
    color: #3730a3;
}

.landing-action-card--blog:hover {
    border-color: rgba(79, 70, 229, 0.5);
    box-shadow: 0 20px 42px rgba(79, 70, 229, 0.16);
}

.landing-action-card--primary:hover {
    background: linear-gradient(135deg, var(--landing-gold-light) 0%, var(--landing-gold) 100%);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.landing-action-icon {
    display: flex;
    margin-bottom: 1.2rem;
    color: var(--landing-accent);
}

.landing-action-card--primary .landing-action-icon {
    color: var(--landing-black);
}

.landing-action-label {
    font-family: var(--landing-font-sans);
    font-size: 1.46rem;
    font-weight: 700;
    margin-bottom: 0.45rem;
    letter-spacing: -0.01em;
}

.landing-action-desc {
    font-size: 1.06rem;
    color: #4b5563;
    line-height: 1.6;
}

.landing-action-card--blog .landing-action-label {
    color: #1e1b4b;
}

.landing-action-card--blog .landing-action-desc {
    color: #4338ca;
}

.landing-action-card--primary .landing-action-desc {
    color: rgba(0,0,0,0.7);
}

.landing-action-btn {
    margin-top: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .72rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.14);
    font-size: .96rem;
    font-weight: 600;
    color: var(--landing-text);
    background: rgba(15,23,42,0.03);
}

.landing-action-card--primary .landing-action-btn {
    background: rgba(0,0,0,0.12);
    color: #111;
    border-color: rgba(0,0,0,0.25);
}

/* ========== FEATURES ========== */
.landing-features {
    width: 100%;
    padding: 5rem 1.5rem;
    background: var(--landing-bg);
}

.landing-features-inner {
    max-width: 980px;
    margin: 0 auto;
}

.landing-features-title {
    margin: 0 0 0.75rem;
    font-family: var(--landing-font-serif);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
    color: var(--landing-text);
    text-align: center;
    letter-spacing: -0.02em;
}

.landing-features-lead {
    margin: 0 0 3rem;
    font-size: 1.125rem;
    color: var(--landing-text-secondary);
    text-align: center;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.landing-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.landing-feature-card {
    padding: 2rem;
    background: var(--landing-bg-card);
    border-radius: var(--landing-radius);
    border: 1px solid var(--landing-border);
    box-shadow: var(--landing-shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.landing-feature-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--landing-shadow-hover);
    border-color: rgba(0,0,0,0.18);
}

.landing-feature-icon {
    display: flex;
    margin-bottom: 1.25rem;
    color: var(--landing-accent);
}

.landing-feature-title {
    margin: 0 0 0.5rem;
    font-family: var(--landing-font-sans);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--landing-text);
}

.landing-feature-desc {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--landing-text-muted);
    line-height: 1.5;
}

/* ========== CTA ========== */
.landing-cta {
    width: 100%;
    padding: 5rem 1.5rem;
    background: var(--landing-black);
    text-align: center;
}

.landing-cta-inner {
    max-width: 560px;
    margin: 0 auto;
}

.landing-cta-title {
    margin: 0 0 0.5rem;
    font-family: var(--landing-font-serif);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.landing-cta-desc {
    margin: 0 0 2rem;
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

.landing-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: var(--landing-gold);
    color: var(--landing-black);
    font-family: var(--landing-font-sans);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 980px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.landing-cta-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 24px rgba(212, 175, 55, 0.4);
    background: var(--landing-gold-light);
}

/* ========== FOOTER ========== */
.landing-footer {
    width: 100%;
    padding: 2.5rem 1.5rem;
    padding-bottom: calc(2.5rem + var(--landing-safe-bottom));
    background: var(--landing-bg-alt);
    border-top: 1px solid rgba(0,0,0,0.15);
}

.landing-footer-inner {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.landing-footer-logo {
    display: inline-block;
    font-family: var(--landing-font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--landing-text);
    text-decoration: none;
    margin-bottom: 1rem;
}

.landing-footer-logo:hover {
    color: var(--landing-accent);
}

.landing-footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.landing-footer-nav a {
    font-size: 0.9375rem;
    color: var(--landing-text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.landing-footer-nav a:hover {
    color: var(--landing-accent);
}

.landing-footer-copy {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--landing-text-muted);
}

.landing-footer-tursab {
    margin: 0.5rem 0;
}
.landing-footer-tursab-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--landing-text-muted);
    text-decoration: none;
    font-size: 0.875rem;
}
.landing-footer-tursab-link:hover {
    color: var(--landing-accent);
}
.landing-footer-tursab-img {
    max-height: 36px;
    width: auto;
    display: block;
}

.landing-referanslar {
    padding: 2rem 1.5rem;
    background: rgba(0,0,0,0.02);
}
.landing-referanslar-inner {
    max-width: 960px;
    margin: 0 auto;
}
.landing-referanslar-title {
    margin: 0 0 1.25rem;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    color: var(--landing-text);
}
/* Grid ve kartlar: site.css — .site-page-referanslar-grid / .site-page-referans-item (anasayfa ile referanslar sayfası ortak) */
.landing-referanslar .site-page-referanslar-grid {
    justify-content: center;
}

/* ========== HAKKIMIZDA MODAL ========== */
.landing-action-card--btn {
    cursor: pointer;
    border: none;
    width: 100%;
    text-align: left;
    font: inherit;
}

.landing-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.landing-modal-overlay.is-open {
    display: flex;
}

.landing-modal {
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    background: var(--landing-bg-card);
    border-radius: var(--landing-radius-lg);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--landing-border);
}

.landing-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--landing-border);
    flex-shrink: 0;
}

.landing-modal-title {
    margin: 0;
    font-family: var(--landing-font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--landing-text);
}

.landing-modal-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 50%;
    font-size: 1.75rem;
    line-height: 1;
    color: var(--landing-text-muted);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.landing-modal-close:hover {
    background: var(--landing-accent-soft);
    color: var(--landing-accent);
}

.landing-modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

.landing-modal-empty {
    margin: 0;
    color: var(--landing-text-muted);
    line-height: 1.6;
}

.landing-modal-section {
    margin-bottom: 1.75rem;
}

.landing-modal-section:last-child {
    margin-bottom: 0;
}

.landing-modal-section-title {
    margin: 0 0 0.75rem;
    font-family: var(--landing-font-sans);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--landing-text);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--landing-border);
}

.landing-modal-section-content {
    font-size: 0.9375rem;
    color: var(--landing-text-secondary);
    line-height: 1.6;
}

.landing-modal-section-content p:first-child { margin-top: 0; }
.landing-modal-section-content p:last-child { margin-bottom: 0; }

.landing-modal-ekip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.35rem;
    align-items: start;
}

.landing-modal-ekip-item {
    padding: 1rem;
    background: var(--landing-bg);
    border-radius: var(--landing-radius-sm);
    border: 1px solid var(--landing-border);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
}

.landing-modal-ekip-foto {
    width: 100%;
    aspect-ratio: 1;
    min-height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    display: block;
}

.landing-modal-ekip-name {
    margin: 0 0 0.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--landing-text);
}

.landing-modal-ekip-unvan {
    margin: 0 0 0.5rem;
    font-size: 0.8125rem;
    color: var(--landing-accent);
    font-weight: 500;
}

.landing-modal-ekip-ozet {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--landing-text-muted);
    line-height: 1.5;
}

.landing-modal-referans-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
    align-items: stretch;
}

.landing-modal-referans-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 4.75rem;
    min-width: min(100%, 10rem);
    padding: 0.85rem 1.1rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--landing-border);
    text-decoration: none;
    color: var(--landing-text);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.landing-modal-referans-item:hover {
    border-color: var(--landing-accent);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.landing-modal-referans-item img {
    max-height: 72px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

.landing-modal-referans-item span {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.landing-modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--landing-border);
    flex-shrink: 0;
}

.landing-modal-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--landing-accent);
    text-decoration: none;
}

.landing-modal-link:hover {
    text-decoration: underline;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .landing-hero {
        min-height: 75vh;
    }
    .landing-hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    .landing-hero-prev { left: 1rem; }
    .landing-hero-next { right: 1rem; }
    .landing-actions {
        padding: 3rem 1rem;
    }
    .landing-features {
        padding: 3rem 1rem;
    }
    .landing-features-grid {
        grid-template-columns: 1fr;
    }
    .landing-cta {
        padding: 3rem 1rem;
    }
}

@media (max-width: 720px) {
    .landing-actions-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .landing-modal-overlay {
        padding: 0;
        align-items: flex-end;
    }
    .landing-modal {
        max-height: 85vh;
        border-radius: var(--landing-radius-lg) var(--landing-radius-lg) 0 0;
    }
    .landing-modal-ekip-grid {
        grid-template-columns: 1fr;
    }
}

/* Anasayfa – WhatsApp (admin: Site Tasarımı → Metinler → iletisim_whatsapp) */
.landing-whatsapp-fab {
    position: fixed;
    z-index: 9990;
    right: max(1rem, env(safe-area-inset-right, 0px));
    bottom: max(1.25rem, calc(1rem + env(safe-area-inset-bottom, 0px)));
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.landing-whatsapp-fab:hover {
    background: #20bd5a;
    color: #fff;
    transform: scale(1.06);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0, 0, 0, 0.14);
}
.landing-whatsapp-fab:focus-visible {
    outline: 3px solid var(--landing-gold, #d4af37);
    outline-offset: 3px;
}
