/* =======================================================================
   FİLİZ ÇELİK — Shibumi Kurucu Profili
   Filiz Çelik Menajerlik · 2026

   Philosophy: Elegance through humility. The guide behind the stars.
   Palette: #f8f6f3 (warm parchment) · #111 (deep ink) · #b89a6a (muted gold)
   Font: Poppins — weight as hierarchy
   ======================================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg:         #f8f6f3;
    --bg-white:   #ffffff;
    --ink:        #111111;
    --ink-60:     rgba(17,17,17,0.60);
    --ink-15:     rgba(17,17,17,0.15);
    --gold:       #b89a6a;
    --sans:       'Poppins', sans-serif;
}

body.fc-page {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* =======================================================================
   HEADER — birebir menajerlik.css
   ======================================================================= */
.mini-header {
    position: relative;
    width: 100%;
    height: 90px;
    background: #fff;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    z-index: 50;
}

.mini-header .hero-logo img {
    filter: brightness(0);
}

.mini-header .mobile-menu-btn span {
    background: #000;
}

.mini-header .home-nav ul li a {
    color: #000 !important;
}

/* =======================================================================
   PROFILE LAYOUT — Naif, Zarif, Mütevazı
   ======================================================================= */
.fc-wrapper {
    position: relative;
    background: var(--bg);
    min-height: calc(100vh - 90px);
    display: flex;
    flex-direction: column;
}

.fc-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 80px 140px;
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 100px;
    align-items: center;
}

/* --- Sol Taraf: Fotoğraf --- */
.fc-image-col {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fcFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fc-image-wrapper {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #e9e6e0;
    position: relative;
}

.fc-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(80%) contrast(1.05); /* Zarif bir ton */
    transition: filter 1.5s ease, transform 2s ease;
}

.fc-image-wrapper:hover img {
    filter: grayscale(10%) contrast(1.05);
    transform: scale(1.02);
}

/* Dekoratif çerçeve */
.fc-image-col::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 40%;
    height: 30%;
    border-top: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
    z-index: 1;
    opacity: 0.5;
}

.fc-image-col::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 40%;
    height: 30%;
    border-bottom: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
    z-index: 1;
    opacity: 0.5;
}

/* --- Sağ Taraf: Biyografi --- */
.fc-content-col {
    opacity: 0;
    transform: translateY(30px);
    animation: fcFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.fc-eyebrow {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 24px;
}

.fc-title {
    font-size: clamp(3.2rem, 5vw, 4.5rem);
    font-weight: 200;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 40px;
}

.fc-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
}

.fc-bio {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 520px;
}

.fc-bio p {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--ink-60);
    letter-spacing: 0.01em;
}

.fc-bio p.fc-highlight {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--ink);
    border-left: 2px solid var(--gold);
    padding-left: 20px;
    margin: 10px 0;
    line-height: 1.6;
}

.fc-signature {
    margin-top: 50px;
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    font-weight: 200;
    font-size: 1.8rem;
    color: var(--ink);
    opacity: 0.8;
}

/* =======================================================================
   FOOTER OVERRIDE
   ======================================================================= */
.fc-page .footer-logo {
    /* logo1_black.png */
}

/* =======================================================================
   ANIMATIONS
   ======================================================================= */
@keyframes fcFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =======================================================================
   RESPONSIVE
   ======================================================================= */
@media (max-width: 1100px) {
    .fc-hero {
        padding: 80px 48px 100px;
        gap: 60px;
    }
}

@media (max-width: 900px) {
    .fc-hero {
        grid-template-columns: 1fr;
        padding: 60px 32px 80px;
        gap: 60px;
    }

    .fc-image-col {
        max-width: 500px;
        margin: 0 auto;
    }

    .fc-content-col {
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }

    .fc-bio {
        align-items: center;
        text-align: left;
    }

    .fc-bio p.fc-highlight {
        border-left: none;
        border-top: 1px solid var(--gold);
        padding-left: 0;
        padding-top: 20px;
        text-align: center;
    }

    .fc-image-col::before, .fc-image-col::after {
        display: none;
    }
}

@media (max-width: 600px) {
    .fc-hero {
        padding: 40px 20px 60px;
    }
    
    .fc-title {
        font-size: 2.6rem;
    }
    
    .fc-bio p {
        font-size: 0.95rem;
    }
}

/* =======================================================================
   RESUME / CREDITS SECTION
   ======================================================================= */
.fc-resume {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 80px 140px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.fc-resume-col {
    opacity: 0;
    transform: translateY(20px);
    animation: fcFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.fc-resume-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--ink);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gold);
    display: flex;
    align-items: center;
    gap: 12px;
}

.fc-resume-title::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

.fc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.fc-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fc-list-year {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--gold);
}

.fc-list-name {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--ink);
}

.fc-list-desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--ink-60);
}

@media (max-width: 900px) {
    .fc-resume {
        grid-template-columns: 1fr;
        padding: 0 32px 100px;
        gap: 60px;
    }
}
@media (max-width: 600px) {
    .fc-resume {
        padding: 0 20px 80px;
    }
}

/* =======================================================================
   SOCIAL SIDEBAR
   ======================================================================= */
.fc-social-sidebar {
    position: absolute;
    left: 40px;
    top: 450px;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    opacity: 0;
    animation: fcFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

.fc-social-sidebar .sidebar-title {
    color: var(--ink);
    font-size: 0.65rem;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.2em;
    padding-right: 12px;
    position: relative;
}

.fc-social-sidebar .sidebar-title::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: var(--ink-15);
}

.fc-social-sidebar .sidebar-icons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.fc-social-sidebar .sidebar-icons a {
    color: var(--ink);
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fc-social-sidebar .sidebar-icons a:hover {
    opacity: 1;
    transform: translateX(4px);
}

.fc-social-sidebar .sidebar-icons img,
.fc-social-sidebar .sidebar-icons svg {
    width: 18px;
    height: auto;
    max-height: 18px;
    display: block;
    filter: brightness(0); /* Ensure they are black */
}

@media (max-width: 1300px) {
    .fc-social-sidebar { left: 20px; }
}

@media (max-width: 900px) {
    .fc-social-sidebar { display: none; }
}

.fc-resume-intro {
    grid-column: 1 / -1;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--ink-60);
    max-width: 1000px;
    margin-bottom: -30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fcFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}
