/* ---------------------------------------------------------------------------
   Tema: paartherapie-kaarst.de esintili minimal / editoryal görünüm.
   Beyaz zemin, koyu gri metin, bordo vurgu, bej bölümler.
   İnce serif başlıklar (Cormorant Garamond) + Montserrat gövde.
   Bootstrap 5 üzerine bir katman; ana renkler CSS değişkenlerinde.
--------------------------------------------------------------------------- */

:root {
    --ink: #4a4a49;           /* koyu sıcak gri (metin) */
    --ink-soft: #6f6f6d;      /* ikincil metin */
    --accent: #ab3e47;        /* bordo vurgu */
    --accent-dark: #8c3038;
    --elev: #e9e4e0;          /* bej zemin / kart */
    --elev-soft: #f4f1ee;     /* daha açık bej */
    --bronze: #a77a50;
    --line: rgba(74, 74, 73, 0.5);       /* ince ayraç çizgileri */
    --line-soft: rgba(74, 74, 73, 0.14);
    --font-serif: "Cormorant Garamond", Georgia, serif;
    --font-sans: "Montserrat", "Segoe UI", Arial, sans-serif;
}

body {
    background-color: #ffffff;
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
}

h1, .h1 {
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.2;
    color: var(--ink);
}

h2, h3, h4, h5, h6,
.h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-sans);
    font-weight: 300;
    letter-spacing: 0.5px;
    color: var(--ink);
}

h2, .h2 { font-size: 30px; line-height: 1.25; }
h3, .h3 { font-size: 26px; line-height: 1.2; }

.lead {
    font-weight: 300;
    font-size: 20px;
    line-height: 1.55;
}

.text-muted { color: var(--ink-soft) !important; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--ink); text-decoration: underline; }

.text-accent { color: var(--accent) !important; }
.bg-soft { background-color: var(--elev); }

.font-serif { font-family: var(--font-serif); }

::selection { background: rgba(171, 62, 71, 0.16); }

/* ---- Butonlar: hap biçimli, büyük harf, ince ---- */
.btn {
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 60px;
    font-size: 14px;
    font-weight: 400;
    padding: 0.55rem 1.5rem;
}

.btn-lg { font-size: 15px; padding: 0.75rem 1.9rem; }
.btn-sm { font-size: 12px; padding: 0.35rem 1.1rem; }

.btn-primary {
    --bs-btn-bg: var(--accent);
    --bs-btn-border-color: var(--accent);
    --bs-btn-hover-bg: var(--accent-dark);
    --bs-btn-hover-border-color: var(--accent-dark);
    --bs-btn-active-bg: var(--accent-dark);
    --bs-btn-active-border-color: var(--accent-dark);
}

.btn-outline-primary {
    --bs-btn-color: var(--accent);
    --bs-btn-border-color: var(--accent);
    --bs-btn-hover-bg: var(--accent);
    --bs-btn-hover-border-color: var(--accent);
    --bs-btn-active-bg: var(--accent);
    --bs-btn-active-border-color: var(--accent);
}

.btn-outline-secondary {
    --bs-btn-color: var(--ink);
    --bs-btn-border-color: var(--line);
    --bs-btn-hover-color: var(--ink);
    --bs-btn-hover-bg: var(--elev);
    --bs-btn-hover-border-color: var(--line);
    --bs-btn-active-color: var(--ink);
    --bs-btn-active-bg: var(--elev);
    --bs-btn-active-border-color: var(--line);
}

.nav-pills { --bs-nav-pills-link-active-bg: var(--accent); }
.pagination {
    --bs-pagination-active-bg: var(--accent);
    --bs-pagination-active-border-color: var(--accent);
    --bs-pagination-color: var(--accent);
}
.form-check-input:checked {
    background-color: var(--accent);
    border-color: var(--accent);
}

.form-control, .form-select {
    border-color: var(--line-soft);
    border-radius: 8px;
    color: var(--ink);
}
.form-control:focus, .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.2rem rgba(171, 62, 71, 0.12);
}

/* ---- Navbar ---- */
.site-navbar {
    background-color: #ffffff;
    min-height: 84px;
    border-bottom: 1px solid var(--line-soft);
}

.site-navbar .navbar-brand {
    font-family: var(--font-serif);
    font-size: 26px;
    letter-spacing: 1px;
    color: var(--ink);
}

.site-navbar .nav-link {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
    font-weight: 400;
}

.site-navbar .nav-link.active,
.site-navbar .nav-link:hover {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.site-navbar .dropdown-menu {
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    font-size: 14px;
}
.site-navbar .dropdown-item.active,
.site-navbar .dropdown-item:active {
    background-color: var(--accent);
}

/* ---- Hero (ana sayfa) ---- */
.hero-top {
    padding: 90px 24px 40px;
    text-align: center;
}

.hero-mark {
    font-size: 44px;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 24px;
    display: inline-block;
}

.hero-title {
    font-size: clamp(32px, 4.5vw, 52px);
    margin-bottom: 18px;
}

.hero-sub {
    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: 300;
    margin-bottom: 28px;
}

/* Hero altındaki yatay görsel şeridi */
.hero-strip {
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: 100%;
    margin-top: 40px;
}

.hero-strip-inner {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 0 24px;
}

.hero-strip-item {
    background: #ffffff;
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    padding: 28px;
    width: min(320px, 30vw);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-strip-item img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.hero-strip-item.hero-strip-single {
    width: min(400px, 46vw);
}

.hero-strip-item.hero-strip-single img {
    height: 250px;
}

/* ---- Alıntı bölümü (bej, hero şeridinin altına girer) ---- */
.quote-section {
    background-color: var(--elev);
    margin-top: -130px;
    padding: 200px 24px 90px;
    text-align: center;
}

.quote-section .quote-mark {
    font-family: var(--font-serif);
    font-size: 110px;
    line-height: 0.6;
    color: var(--accent);
    display: block;
    margin-bottom: 36px;
}

.quote-section .quote-text {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 54px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
    max-width: 1020px;
    margin: 0 auto 28px;
}

.quote-section .quote-author {
    font-size: 16px;
    color: var(--ink-soft);
    margin-bottom: 0;
}

/* ---- Bölüm başlıkları ---- */
.section-pad { padding: 90px 0; }

.heading-flex {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 36px;
}

.heading-flex .heading-icon {
    font-size: 48px;
    color: var(--accent);
    line-height: 1;
}

.heading-flex h2 { margin: 0; }

.lead-large {
    font-size: 20px;
    line-height: 1.55;
    max-width: 1008px;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: clamp(26px, 2.5vw, 34px);
    margin-bottom: 0.75rem;
}

.section-header p {
    max-width: 720px;
    color: var(--ink-soft);
    margin-left: auto;
    margin-right: auto;
}

/* ---- Hizmet satırları (referans "Therapieangebot" listesi) ---- */
.service-rows { max-width: 1008px; margin: 0 auto; }

.service-row {
    border-top: 1px solid var(--line);
    padding: 44px 30px 44px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
}

.service-row:last-child { border-bottom: 1px solid var(--line); }

.service-row-title {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 30px;
    line-height: 1.15;
    color: var(--accent);
    text-decoration: none;
    display: inline-block;
}

.service-row-title:hover { color: var(--ink); text-decoration: none; }

.service-row p { margin: 10px 0 0; max-width: 560px; color: var(--ink-soft); }

.service-row img {
    width: 30%;
    max-width: 190px;
    max-height: 170px;
    object-fit: contain;
    flex-shrink: 0;
}

/* ---- Konu kartları / bej kartlar (referans "single-faq") ---- */
.topic-card {
    background-color: var(--elev);
    border-radius: 8px;
    padding: 30px;
    height: 100%;
}

.topic-card h3 {
    font-size: 26px;
    margin: 0 0 26px;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list li .bi {
    color: var(--accent);
    font-size: 20px;
    flex-shrink: 0;
}

/* ---- Kartlar (site geneli) ---- */
.info-card,
.service-card,
.auth-card,
.admin-card,
.appointment-card,
.comment-card,
.stat-card,
.section-card,
.process-step {
    background: var(--elev);
    border: none;
    border-radius: 8px;
    padding: 30px;
    box-shadow: none;
}

/* Bej zemin üzerindeki kartlar beyaz olur */
.bg-soft .info-card,
.bg-soft .service-card,
.bg-soft .auth-card,
.bg-soft .appointment-card,
.bg-soft .comment-card,
.bg-soft .section-card,
.bg-soft .process-step,
.quote-section .info-card {
    background: #ffffff;
}

.service-card { transition: transform 0.15s ease; }
.service-card:hover { transform: translateY(-2px); }

.info-card h3, .service-card h3 { font-size: 20px; }
.info-card p, .service-card p { color: var(--ink-soft); }

.stat-card { text-align: center; }
.stat-card .stat-value {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--accent);
}
.stat-card .stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--ink-soft);
}

.icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 100px;
    display: grid;
    place-items: center;
    background: #ffffff;
    color: var(--accent);
}

.icon-wrap .fs-2 { font-size: 22px !important; }

.bg-soft .icon-wrap { background: #ffffff; }
.info-card .icon-wrap { background: #ffffff; }

/* ---- Hakkımda sayfası ---- */
.hero-section,
.about-hero {
    background: #ffffff;
}

.hero-figure {
    position: relative;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    max-width: 420px;
}

.hero-figure img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 100%;
    object-fit: cover;
    min-height: 0;
}

.hero-panel {
    background: var(--elev);
    border-radius: 8px;
    box-shadow: none;
    margin-top: 1.5rem;
    position: relative;
}

.hero-panel h5 { color: var(--ink); font-weight: 400; }

.hero-panel .badge {
    background: #ffffff !important;
    color: var(--accent) !important;
    border: none !important;
}

.hero-caption {
    margin-top: 1rem;
    color: var(--ink-soft);
    font-size: 0.95rem;
    text-align: center;
}

.focus-list li {
    position: relative;
    padding-left: 2.25rem;
    margin-bottom: 1rem;
    color: var(--ink);
}

.focus-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-size: 1.1rem;
    line-height: inherit;
}

.about-summary {
    max-width: 720px;
    padding: 2rem;
    border-radius: 8px;
    background: var(--elev);
    box-shadow: none;
}

.bg-soft .about-summary { background: #ffffff; }

.process-step { text-align: left; }

.step-number {
    font-family: var(--font-serif);
    font-size: 44px;
    line-height: 1;
    color: var(--accent);
    background: none;
    width: auto;
    height: auto;
    border-radius: 0;
    display: block;
    margin-bottom: 1rem;
    font-weight: 400;
}

/* ---- Rozetler ---- */
.delivery-badge {
    background-color: #ffffff;
    color: var(--accent);
    border: 1px solid rgba(171, 62, 71, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 11px;
    font-weight: 400;
    border-radius: 60px;
    padding: 0.4em 0.9em;
}

.badge.text-bg-success,
.badge.text-bg-warning,
.badge.text-bg-danger,
.badge.text-bg-secondary { border-radius: 60px; }

/* ---- Hizmet illüstrasyonları ---- */
.service-illustration {
    display: block;
    height: 150px;
    max-width: 100%;
    margin: 0 auto 1rem;
    object-fit: contain;
}

.service-illustration-sm { height: 110px; }

/* ---- Randevu slot seçici ---- */
.slot-day-header {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--ink);
    text-transform: capitalize;
}

.slot-btn.active {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* ---- Blog ---- */
.blog-card {
    overflow: hidden;
    border: none;
    border-radius: 8px;
    background: var(--elev);
}
.blog-cover {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.blog-cover-placeholder {
    background: var(--elev-soft);
    color: var(--accent);
    font-size: 2.5rem;
}
.blog-card h2 a { color: var(--ink); }
.blog-card h2 a:hover { color: var(--accent); }

.blog-content { line-height: 1.8; }
.blog-content img { max-width: 100%; height: auto; border-radius: 8px; }
.blog-content blockquote {
    border-left: 5px solid var(--accent);
    font-family: var(--font-serif);
    font-size: 1.35rem;
    line-height: 1.3;
    margin: 2.5rem 0;
    padding: 1.75rem 2.5rem;
    color: var(--ink);
}

/* ---- Ön-footer ve footer ---- */
.prefooter {
    text-align: center;
    padding: 60px 24px 30px;
}

.prefooter .prefooter-brand {
    font-family: var(--font-serif);
    font-size: 30px;
    letter-spacing: 1px;
    color: var(--ink);
    text-decoration: none;
    display: inline-block;
}

.prefooter .prefooter-brand:hover { color: var(--accent); }

.prefooter .prefooter-role {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
    color: var(--ink-soft);
    margin-top: 6px;
}

.prefooter .img-rund {
    width: 150px;
    height: 150px;
    border-radius: 100%;
    object-fit: cover;
    margin-top: 24px;
}

.site-footer {
    background-color: var(--ink);
    color: #ffffff;
    border-top: none;
    font-size: 14px;
}

.site-footer a {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
    text-decoration: none;
}

.site-footer a:hover { text-decoration: underline; color: #ffffff; }

.site-footer .text-muted { color: rgba(255, 255, 255, 0.65) !important; }

/* ---- Flash / uyarı balonları ----
   Ekrana (viewport) sabit: scroll ve pencere boyutundan etkilenmez,
   alt kenara yakın durur ama kenarlara değmez. */
.flash-container {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1090; /* Bootstrap modal (1055) ve navbar'ın üzerinde */
    width: min(560px, calc(100vw - 2rem));
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.flash-container .alert { margin-bottom: 0; border-radius: 8px; }

/* ---- Admin ---- */
.admin-sidebar {
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    padding: 1rem 0.5rem;
    position: sticky;
    top: 100px;
}

/* Quill editör yüksekliği */
.quill-editor { min-height: 220px; background: #fff; }

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    h2, .h2 { font-size: 26px; }
    h3, .h3 { font-size: 22px; }
    .hero-top { padding-top: 60px; }
    .quote-section { margin-top: -90px; padding-top: 150px; }
    .service-row-title { font-size: 24px; }
    .section-pad { padding: 70px 0; }
}

@media (max-width: 767.98px) {
    .hero-strip-inner { gap: 12px; padding: 0 12px; }
    .hero-strip-item { padding: 16px; width: 31vw; }
    .hero-strip-item img { height: 110px; }
    .hero-strip-item.hero-strip-single { width: 64vw; }
    .hero-strip-item.hero-strip-single img { height: 170px; }
    .quote-section { margin-top: -60px; padding: 110px 20px 70px; }
    .quote-section .quote-mark { font-size: 80px; margin-bottom: 24px; }
    .service-row { flex-direction: row; padding: 36px 6px; }
    .service-row img { width: 28%; }
    .service-row-title { font-size: 20px; }
    .heading-flex .heading-icon { font-size: 36px; }
    .lead-large { font-size: 18px; }
    .section-pad { padding: 56px 0; }
    .prefooter { padding-top: 40px; }
}
