/* ===================================
    Mehmet Ozcan - site stilleri
====================================== */
/* font */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Bebas+Neue&display=swap');
/* variable */
:root {
    --primary-font: 'Manrope', sans-serif;
    --alt-font: var(--primary-font);
    /* monochrome palette: white accent on near-black ground */
    --base-color: #ffffff;
    --yellow: #ffffff;
    --dark-gray: #0f0f14;
    --medium-gray:#9a9aa1;
}
/* reset */
body {
    font-size: 17px;
    font-weight: 500;
}
/* primary font */
.primary-font {
    font-family: var(--primary-font) !important;
}
/* section */
section {
    padding-top: 130px;
    padding-bottom: 130px;
}
/* icon */
.icon-double-large {
    font-size: 70px;
}
/* header: üstte transparan başlar, kaydırınca koyu sticky bara döner.
   Logo ve marka boşluğu sticky'de de aynı kalır — tema bunları küçültünce
   header yüksekliği değişiyor ve menü kaydırmada yer değiştiriyordu. */
header .navbar-brand img,
header.sticky .navbar-brand img {
    max-height: 55px;
}
header .navbar-brand,
header.sticky .navbar-brand {
    padding: 8px 0;
}
header .navbar-nav .nav-link {
    letter-spacing: 1px;
    font-size: 14px;
}
header .navbar-nav .nav-link.active {
    opacity: 0.6;
}
header .navbar-toggler-line {
    background-color: #ffffff;
}
.header-social-links a {
    color: #ffffff;
    font-size: 16px;
    margin-left: 20px;
    transition: opacity 0.3s ease;
}
.header-social-links a:hover {
    opacity: 0.6;
}
/* Açık/beyaz hero fotoğrafı: js/hero-theme.js nav'a .hero-light ekler,
   menü koyu temaya döner (koyu logo + koyu yazı). Mobilde header zaten
   tamamen siyah olduğu için bu kural yalnızca masaüstünde geçerli. */
@media (min-width: 992px) {
    /* açık/koyu tema geçişi hızlı ve üç öğede de eşzamanlı olsun:
       tema menü linklerini 0.3s'de geçiriyor, sosyal ikonlarda renk geçişi hiç yok
       (anında sıçrıyor), logo da anında değişiyordu */
    header .navbar .navbar-nav .nav-link,
    header .navbar .header-social-links a,
    header .navbar .navbar-brand img {
        transition: color 0.15s ease, opacity 0.15s ease, visibility 0.15s ease;
    }
    /* tema, sticky'de alt-logo'ya (koyu logo) geçiyor — bizim sticky barımız
       siyah olduğu için orada beyaz logo kalmalı, bu davranışı geri alıyoruz */
    header.sticky.sticky-active .navbar-brand .alt-logo {
        visibility: hidden;
        opacity: 0;
        width: 0;
    }
    header.sticky.sticky-active .navbar-brand .default-logo {
        visibility: visible;
        opacity: 1;
        width: auto;
    }
    /* açık hero: koyu logoya geç */
    header .navbar.hero-light .navbar-brand .default-logo {
        visibility: hidden;
        opacity: 0;
        width: 0;
    }
    header .navbar.hero-light .navbar-brand .alt-logo {
        visibility: visible;
        opacity: 1;
        width: auto;
    }
    /* açık hero: menü yazıları ve ikonlar koyu */
    header .navbar.hero-light .navbar-nav .nav-link,
    header .navbar.hero-light .header-social-links a {
        color: var(--dark-gray);
    }
    header .navbar.hero-light .navbar-nav .nav-item:hover .nav-link {
        color: var(--dark-gray);
        opacity: 0.6;
    }
    /* siyah sticky bara geçilince her şey yeniden beyaza döner */
    header.sticky.sticky-active .navbar.hero-light .navbar-nav .nav-link,
    header.sticky.sticky-active .navbar.hero-light .navbar-nav .nav-item:hover .nav-link,
    header.sticky.sticky-active .navbar.hero-light .header-social-links a {
        color: #ffffff;
    }
    header.sticky.sticky-active .navbar.hero-light .navbar-brand .alt-logo {
        visibility: hidden;
        opacity: 0;
        width: 0;
    }
    header.sticky.sticky-active .navbar.hero-light .navbar-brand .default-logo {
        visibility: visible;
        opacity: 1;
        width: auto;
    }
}
/* mobil menü: eski sol menüdeki gibi soldan kayan tam boy koyu panel */
@media (max-width: 991px) {
    /* mobilde header hep siyah kalır (sticky görünümü açılışta da geçerli) ve
       içeriğin üzerine binmez — slider/başlık bölümü barın altından başlar */
    header .navbar.bg-transparent {
        background-color: var(--dark-gray) !important;
    }
    header .navbar {
        min-height: 78px;
    }
    header .navbar-brand {
        padding: 14px 0 !important;
    }
    header .navbar-brand img {
        max-height: 50px;
    }
    .main-content {
        padding-top: 78px;
        background-color: var(--dark-gray);
    }
    #home .full-screen {
        height: calc(100vh - 78px);
    }
    /* panel js/nav.js tarafından body.navbar-collapse-show ile açılıp kapanır */
    /* tam ekran overlay: arkadaki sayfa içeriği menünün parçasıymış gibi görünmesin */
    header .navbar .navbar-collapse {
        /* responsive.css `.navbar-expand-lg .navbar-collapse`'e display:block !important veriyor */
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        bottom: 0;
        left: -100%;
        width: 100%;
        max-width: 100%;
        height: auto;
        /* responsive.css burada calc(100vh - 72px) sınırı koyuyor — tam ekran için kaldırılmalı */
        max-height: none !important;
        margin: 0;
        padding: 90px 0 25px;
        background-color: #000000;
        overflow-y: auto;
        overscroll-behavior: contain;
        z-index: 100;
        transition: left 0.4s cubic-bezier(0.5, 1, 0.89, 1);
    }
    body.navbar-collapse-show header .navbar .navbar-collapse {
        left: 0;
    }
    /* menü açıkken sabit müzik çalar ve scroll göstergesi panelin üstüne binmesin */
    body.navbar-collapse-show .hero-player,
    body.navbar-collapse-show .scroll-progress {
        display: none;
    }
    /* logo ve hamburger panelin üzerinde kalsın */
    header .navbar-brand,
    header .navbar-toggler {
        position: relative;
        z-index: 101;
    }
    header .navbar .navbar-nav {
        display: block;
        width: 100%;
        flex: 0 0 auto;
    }
    header .navbar [class*="col-"] .navbar-nav .nav-item,
    header .navbar .navbar-nav .nav-item {
        display: block;
        align-self: auto;
        border-bottom: 1px solid #18181e;
        padding: 4px 30px;
    }
    header .navbar .navbar-nav .nav-item:last-child {
        border-bottom: 0;
    }
    header .navbar .navbar-nav .nav-link {
        display: block;
        font-size: 18px;
        line-height: 24px;
        letter-spacing: 1px;
        padding: 9px 0;
        color: #ffffff;
    }
    /* sosyal ikonlar panelin en altında */
    .mobile-social {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 22px;
        margin-top: auto;
        padding: 25px 30px 0;
        border-top: 1px solid #18181e;
    }
    .mobile-social a {
        color: #ffffff;
        font-size: 17px;
        line-height: 1;
        transition: opacity 0.3s ease;
    }
    .mobile-social a:hover {
        opacity: 0.6;
    }
    /* header artık üstte yer kapladığı için ekstra boşluğa gerek yok */
    .main-content > section:first-child:not(#home) {
        padding-top: 95px;
    }
}
@media (max-width: 575px) {
    header .navbar .navbar-collapse {
        padding: 78px 0 18px;
    }
    header .navbar [class*="col-"] .navbar-nav .nav-item,
    header .navbar .navbar-nav .nav-item {
        padding: 2px 25px;
    }
    header .navbar .navbar-nav .nav-link {
        font-size: 17px;
        line-height: 22px;
        padding: 7px 0;
    }
    .mobile-social {
        gap: 18px;
        padding: 18px 25px 0;
    }
}
/* sabit menünün altında kalmaması için alt sayfaların ilk bölümü */
.main-content > section:first-child:not(#home) {
    padding-top: 200px;
}
.menu-item-list .nav-link {
    font-size: 25px;
    line-height: 33px;
    padding: 7px 20px 0 0;
}
.left-modern-menu .left-modern-header .modern-side-menu {
    padding: 75px 0;
    border-left: 1px solid #18181e;
}
.left-modern-menu .left-modern-header .modern-side-menu .mCustomScrollBox .mCSB_container {
    padding: 0;
}
.menu-item-list .menu-item {
    border-bottom: 1px solid #18181e;
    padding: 10px 60px;
}
.menu-item-list .menu-item:last-child {
    border-bottom: 0;
}
.menu-item-list .active .nav-link {
    opacity: 1; 
    color: var(--base-color);
}
.menu-item-list .nav-link:hover {
    opacity: 1;
    color: var(--base-color);
}
/* letter spacing */
.ls-15px {
    letter-spacing: 15px;
}
/* margin top bottom */
.mt-minus-30px {
    margin-top: -30px;
}
.mt-minus-50px {
    margin-top: -50px;
}
/* font size */
.fs-460 {
    font-size: 460px;
}
/* word break normal */
.word-break-normal {
    word-break: normal;
}
/* text color */
.text-black-russian-gray {
    color: #1d1d23;
}
/* bg color */
.bg-black-russian-gray {
    background-color: #1d1d23;
}
.bg-payne-gray {
    background-color: #45454a;
}
/* portfolio creative: single clean album title — no ghost duplicates */
.portfolio-creative .portfolio-box .portfolio-title::after,
.portfolio-creative .portfolio-box .portfolio-title::before {
    content: none;
}
.portfolio-creative .portfolio-box .portfolio-title {
    -webkit-transform: none;
    transform: none;
    font-size: 26px;
    line-height: 34px;
    letter-spacing: 1px;
}
.portfolio-creative .portfolio-box:hover .portfolio-title {
    -webkit-transform: none;
    transform: none;
}
.portfolio-creative .grid-item .popup-vimeo {
    display: block;
}
.portfolio-creative .portfolio-box i {
    margin-left: 3px;
}
/* tracklist style */
.tracklist-style:hover {
    background-color: #17171d;
}
/* countdown style 03 */
.countdown-style-03 .countdown-box {
    width: 90px;
    margin: 0 5px;
    text-align: left;
}
.countdown-style-03 .countdown-box .number {
    color: var(--white);
    font-size: 63px;
    line-height: 65px;
    font-weight: 400;
    letter-spacing: 1px;
}
.countdown-style-03 .countdown-box span {
    font-size: 14px;
    line-height: 16px;
    font-weight: 700;
    position: relative;
    top:-14px;
}
/* swiper number pagination progress */
.swiper-number-pagination-progress .swiper-pagination-wrapper .swiper-pagination-progress {
    background-color: #212128;
}
.swiper-number-pagination-progress .swiper-pagination-wrapper .number-prev, .swiper-number-pagination-progress .swiper-pagination-wrapper .number-next {
    color: var(--white); 
}
.services-box-style-01 .icon-box {
    margin-top: 0;
}
/* stack box */
.stack-box {
    height: 200vh;
}
/* footer */
.footer-navbar a {
    color: var(--white);
    text-transform: uppercase;
    font-size: 15px;
    padding: 0 30px;
}
footer {
    padding-top: 100px;
    padding-bottom: 100px;
}
/* ===================================
    Monochrome (siyah-beyaz) overrides
====================================== */
/* photographs and artwork render in grayscale */
img,
.cover-background,
.background-position-left-top {
    filter: grayscale(1);
}
/* white accent boxes must carry dark icons/text — never white on white */
.icon-box.bg-base-color i,
span.bg-base-color i {
    color: var(--dark-gray) !important;
}
/* giant hero word: outlined ghost type instead of a solid color block */
.fs-460.text-base-color {
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.35);
}
/* marquee quotes: hollow outlined type — clean ghost lettering */
.marquee-slide .text-base-color {
    font-family: 'Bebas Neue', var(--alt-font) !important;
    font-weight: 400 !important;
    letter-spacing: 5px;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.6);
    paint-order: stroke;
}
/* keep hearts/accents visible but quiet */
.tracklist-style .text-base-color {
    color: #ffffff;
}
/* social icons: no brand colors on hover — stay monochrome */
.elements-social a:hover,
.elements-social .facebook:hover,
.elements-social .instagram:hover,
.elements-social .spotify:hover,
.elements-social .youtube:hover,
.elements-social .itunes:hover {
    color: #ffffff !important;
}
/* inner pages: ghost page title */
.page-title-ghost {
    font-family: 'Bebas Neue', var(--alt-font);
    font-size: 150px;
    line-height: 1;
    letter-spacing: 8px;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.25);
    white-space: nowrap;
}
@media (max-width: 991px) {
    .page-title-ghost {
        font-size: 90px;
        letter-spacing: 5px;
    }
}
@media (max-width: 575px) {
    .page-title-ghost {
        font-size: 52px;
        letter-spacing: 3px;
        white-space: normal;
    }
}
/* inner pages: timeline */
.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 35px;
    padding: 30px 0;
    border-bottom: 1px solid #232329;
}
.timeline-item:last-child {
    border-bottom: 0;
}
.timeline-year {
    font-family: 'Bebas Neue', var(--alt-font);
    font-size: 44px;
    line-height: 1;
    letter-spacing: 3px;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
    min-width: 130px;
}
.timeline-body .timeline-title {
    display: block;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.timeline-body p {
    margin-bottom: 0;
}
@media (max-width: 575px) {
    .timeline-item {
        flex-direction: column;
        gap: 10px;
    }
    .timeline-year {
        min-width: 0;
    }
}
/* badge circles: smaller type so the label fits inside the disc */
.bg-yellow.w-150px h4 {
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 1px;
}
/* career counter: hollow outlined digits (border-only look) */
.counter-style-06 .counter-number {
    font-family: 'Bebas Neue', var(--alt-font) !important;
    font-weight: 400 !important;
    letter-spacing: 5px;
    color: transparent !important;
    -webkit-text-stroke: 3px #ffffff;
}
.section-light .counter-style-06 .counter-number {
    -webkit-text-stroke-color: var(--dark-gray);
}
/* counter title sits below the number instead of overlaying it */
.counter-style-06 .feature-box-content .counter-title {
    position: static;
    -webkit-transform: none;
    transform: none;
}
/* sticky music player — always visible at the bottom center of the viewport */
.hero-player {
    position: fixed;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 550px;
    max-width: calc(100% - 40px);
    padding: 12px 20px;
    background: rgba(15, 15, 20, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.hero-player-toggle {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: #ffffff;
    color: #0f0f14;
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
.hero-player-toggle:hover {
    transform: scale(1.08);
}
.hero-player-toggle i {
    position: relative;
    left: 1px;
}
.hero-player-info {
    flex-grow: 1;
    min-width: 0;
    text-align: left;
}
.hero-player-title {
    display: block;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 6px;
}
.hero-player-progress {
    position: relative;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
}
.hero-player-progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    border-radius: 4px;
    background: #ffffff;
    transition: width 0.15s linear;
}
.hero-player-time {
    flex-shrink: 0;
    color: #9a9aa1;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    min-width: 38px;
    text-align: right;
}
@media (max-width: 575px) {
    .hero-player {
        bottom: 20px;
        padding: 10px 15px;
        gap: 10px;
    }
    .hero-player-toggle {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
}
/* iletişim bölümü — sosyal ikonlar (yalnızca ikon, adres metni yok) */
.contact-social-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}
.contact-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.contact-social-icons a:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: var(--dark-gray);
}
/* satır başına 2 ikon (iletisim.html) */
.contact-social-icons.two-col {
    display: grid;
    grid-template-columns: repeat(2, 46px);
    gap: 14px;
}
.contact-social-icons.two-col.justify-content-center {
    justify-content: center;
}
@media (min-width: 768px) {
    .contact-social-icons.two-col.justify-content-md-start {
        justify-content: start;
    }
}
/* beyaz bölümde (ör. iletisim.html) ikonlar koyu kontura döner */
.section-light .contact-social-icons a {
    border-color: rgba(15, 15, 20, 0.2);
    color: var(--dark-gray) !important;
}
.section-light .contact-social-icons a:hover {
    background-color: var(--dark-gray);
    border-color: var(--dark-gray);
    color: #ffffff !important;
}
/* iletişim formu — koyu zemin, çizgi altı alanlar */
.contact-form-dark .mo-field {
    padding: 0 0 26px;
}
.contact-form-dark .col-md-6.mo-field:first-child {
    padding-right: 15px;
}
.contact-form-dark .col-md-6.mo-field:nth-child(2) {
    padding-left: 15px;
}
.contact-form-dark label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.contact-form-dark input,
.contact-form-dark textarea {
    padding: 12px 0;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    color: #ffffff;
    font-size: 16px;
    transition: border-color 0.3s ease;
}
.contact-form-dark input::placeholder,
.contact-form-dark textarea::placeholder {
    color: #6b6b73;
}
.contact-form-dark input:focus,
.contact-form-dark textarea:focus {
    border-bottom-color: #ffffff;
    box-shadow: none;
}
.contact-form-dark input.is-invalid,
.contact-form-dark textarea.is-invalid {
    border-color: transparent !important;
    border-bottom-color: #dc3545 !important;
    background-image: none !important;
}
/* beyaz bölümdeki (iletisim.html) form: koyu metin, koyu çizgiler */
.section-light .contact-form-dark label {
    color: var(--dark-gray);
}
.section-light .contact-form-dark input,
.section-light .contact-form-dark textarea {
    border-bottom-color: rgba(15, 15, 20, 0.2);
    color: var(--dark-gray);
}
.section-light .contact-form-dark input::placeholder,
.section-light .contact-form-dark textarea::placeholder {
    color: #9a9aa1;
}
.section-light .contact-form-dark input:focus,
.section-light .contact-form-dark textarea:focus {
    border-bottom-color: var(--dark-gray);
}
@media (max-width: 767px) {
    .contact-form-dark .col-md-6.mo-field:first-child,
    .contact-form-dark .col-md-6.mo-field:nth-child(2) {
        padding-right: 0;
        padding-left: 0;
    }
}
/* biyografi metni her ekranda iki yana yaslı.
   Kapsayıcıdaki Bootstrap `text-center` sınıfı `!important` ile geldiği için
   bu kuralın da `!important` olması gerekiyor. */
.bio-metin p {
    text-align: justify !important;
    hyphens: auto;
}
/* eserler sayfası: albüm kartları ve eser listeleri */
.album-eser-kart {
    height: 100%;
    padding: 35px 30px;
    background-color: #17171d;
    border: 1px solid #232329;
}
.album-eser-kart .album-yil {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #5d5d64;
    margin-bottom: 4px;
}
.album-eser-kart .album-ad {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #232329;
}
.eser-liste {
    list-style: none;
    margin: 0;
    padding: 0;
}
.eser-liste li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.eser-liste li:last-child {
    border-bottom: 0;
}
.eser-liste .eser-ad {
    flex: 1 1 auto;
    color: #ffffff;
    font-size: 16px;
    line-height: 24px;
}
.eser-liste .eser-yt {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 15px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
/* Bootstrap Icons glifi `::before`'a vertical-align: -.125em veriyor ve simge
   dairenin içinde ~2px aşağı kayıyor — hizalama sıfırlanıp glif blok yapılıyor */
.eser-liste .eser-yt i {
    display: block;
    line-height: 1;
}
.eser-liste .eser-yt i::before {
    display: block;
    vertical-align: 0;
    line-height: 1;
}
.eser-liste .eser-yt:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: var(--dark-gray);
}
/* kaydı olmayan eserlerde hizayı koru */
.eser-liste .eser-yt-yok {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
}
/* beyaz bölümdeki albüm kartları */
.section-light .album-eser-kart {
    background-color: #f6f6f8;
    border-color: #e3e3e7;
}
.section-light .album-eser-kart .album-ad {
    color: var(--dark-gray);
    border-bottom-color: #e3e3e7;
}
.section-light .album-eser-kart .album-yil {
    color: #a0a0a8;
}
.section-light .eser-liste li {
    border-bottom-color: rgba(15, 15, 20, 0.08);
}
.section-light .eser-liste .eser-ad {
    color: var(--dark-gray);
}
.section-light .eser-liste .eser-yt {
    border-color: rgba(15, 15, 20, 0.2);
    color: var(--dark-gray) !important;
}
.section-light .eser-liste .eser-yt:hover {
    background-color: var(--dark-gray);
    border-color: var(--dark-gray);
    color: #ffffff !important;
}
/* Dinleyici notları: erişilebilirlik için h5 yerine h3 kullanılıyor
   (başlık düzeyi h2'den h5'e atlıyordu). Görünüm eskisiyle birebir aynı kalmalı. */
.testimonials-style-10 h3 {
    font-size: 24px;
    line-height: 44px;
    font-weight: 100;
    letter-spacing: 0;
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .testimonials-style-10 h3 {
        font-size: 19px;
        line-height: 34px;
    }
}
/* Logolar width/height aldı; CSS ile ölçeklenmeye devam etsinler */
header .navbar-brand img {
    width: auto;
    height: auto;
}
/* iletişim formu sonucu */
.form-sonuc {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 22px 24px;
    border-radius: 6px;
    line-height: 26px;
}
.form-sonuc i { font-size: 22px; line-height: 26px; }
.form-sonuc strong { display: block; }
.form-sonuc-basarili { background-color: #edf7ee; border: 1px solid #cfe8d2; color: #1e4620; }
.form-sonuc-hata     { background-color: #fdecea; border: 1px solid #f5c6c2; color: #611a15; margin-bottom: 24px; }
/* eser detay sayfası: YouTube embed + sözler */
.eser-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #17171d;
    overflow: hidden;
}
.eser-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.eser-sozler {
    font-size: 18px;
    line-height: 34px;
    color: var(--dark-gray);
    text-align: center;
    white-space: normal;
}
.section-light .eser-sozler { color: var(--dark-gray); }
.bg-dark-gray .eser-sozler { color: #ffffff; }
.eser-bos {
    padding: 60px 20px;
    border: 1px dashed rgba(15, 15, 20, 0.2);
    color: #6b6b73;
}
.eser-bos i {
    font-size: 34px;
    display: block;
    margin-bottom: 14px;
    opacity: 0.5;
}
.eser-bilgi {
    border-top: 1px solid rgba(15, 15, 20, 0.1);
    padding-top: 24px;
}
.eser-bilgi-satir {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
    padding: 10px 0;
}
.eser-bilgi-etiket {
    flex: 0 0 190px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9a9aa1;
}
.eser-bilgi-deger { flex: 1 1 240px; }
.eser-bilgi-deger a { color: var(--dark-gray); text-decoration: underline; text-underline-offset: 3px; }
.eser-bilgi-deger a:hover { opacity: 0.65; }
@media (max-width: 575px) {
    .eser-sozler { font-size: 16px; line-height: 30px; }
    .eser-bilgi-etiket { flex-basis: 100%; }
}
/* eserler sayfasında eser adı artık link */
.eser-liste .eser-ad {
    color: var(--dark-gray);
    text-decoration: none;
}
.eser-liste .eser-ad:hover { text-decoration: underline; text-underline-offset: 3px; }
.album-eser-kart .album-ad a { color: inherit; }
.album-eser-kart .album-ad a:hover { opacity: 0.7; }
/* performers ("Şarkılarımı Seslendirenler") cards */
.performer-card {
    position: relative;
    overflow: hidden;
    background-color: #17171d;
    border: 1px solid #232329;
    padding: 40px 35px;
    height: 100%;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
/* her kartın arkasında aynı görsel — monokrom ve soluk, metin okunur kalsın */
.performer-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/mehmetozcan-bg-01.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: grayscale(1);
    opacity: 0.12;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.performer-card:hover::before {
    opacity: 0.22;
}
/* kart içeriği görselin üstünde kalır */
.performer-card > * {
    position: relative;
    z-index: 1;
}
.performer-card:hover {
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-5px);
}
.performer-card .performer-index {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #5d5d64;
    display: block;
    margin-bottom: 5px;
}
.performer-card .performer-name {
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    display: block;
    margin-bottom: 20px;
    border-bottom: 1px solid #232329;
    padding-bottom: 15px;
}
.performer-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.performer-card ul li {
    margin-bottom: 8px;
}
.performer-card ul li a {
    color: var(--medium-gray);
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 26px;
}
.performer-card ul li a:hover {
    color: #ffffff;
}
.performer-card ul li a i {
    color: #ffffff;
    font-size: 18px;
    margin-right: 12px;
    flex-shrink: 0;
}
/* ===================================
    Beyaz (light) bölümler
    Sayfa akışı: beyaz > koyu > beyaz > koyu > beyaz ...
====================================== */
.section-light {
    background-color: #ffffff;
    color: #5a5a63;
}
.section-light p,
.section-light .text-medium-gray {
    color: #5a5a63;
}
.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4,
.section-light h5,
.section-light h6,
.section-light .text-white,
.section-light .text-base-color,
.section-light a {
    color: var(--dark-gray) !important;
}
/* koyu adacıklar (rozet, pill, buton) beyaz bölüm içinde de koyu kalır */
.section-light .bg-dark-gray,
.section-light .bg-black-russian-gray {
    background-color: var(--dark-gray) !important;
    color: #ffffff;
}
.section-light .bg-dark-gray .text-white,
.section-light .bg-dark-gray a,
.section-light .bg-black-russian-gray .text-white,
.section-light .bg-black-russian-gray a {
    color: #ffffff !important;
}
/* beyaz üzerine beyaz vurgular koyuya döner */
.section-light .bg-base-color,
.section-light .bg-yellow {
    background-color: var(--dark-gray) !important;
}
.section-light .border-color-transparent-white-light {
    border-color: rgba(15, 15, 20, 0.12) !important;
}
/* dikey çizgi dokusu: beyaz zeminde görünmesi için ters çevrilir */
.section-light .background-position-left-top {
    filter: invert(1);
}
/* dev hayalet yazı (ör. "Sanatçı") beyaz zeminde açık gri */
.section-light .text-black-russian-gray {
    color: #f1f1f4;
}
/* eser listesi */
.section-light .tracklist-style:hover {
    background-color: #f4f4f6;
}
.section-light .tracklist-style .text-base-color {
    color: var(--dark-gray);
}
/* seslendirenler kartları */
.section-light .performer-card {
    background-color: #f6f6f8;
    border-color: #e3e3e7;
}
.section-light .performer-card:hover {
    border-color: rgba(15, 15, 20, 0.4);
}
.section-light .performer-card .performer-index {
    color: #a0a0a8;
}
.section-light .performer-card .performer-name {
    color: var(--dark-gray);
    border-bottom-color: #e3e3e7;
}
.section-light .performer-card ul li a {
    color: #5a5a63 !important;
}
.section-light .performer-card ul li a:hover,
.section-light .performer-card ul li a i {
    color: var(--dark-gray) !important;
}
/* albüm kutuları: koyu görsel + koyu hover katmanı beyaz bölümde de korunur */
.section-light .portfolio-hover .text-white,
.section-light .portfolio-hover .portfolio-title,
.section-light .portfolio-hover i {
    color: #ffffff !important;
}
.section-light .portfolio-hover .border-color-transparent-white-light {
    border-color: rgba(255, 255, 255, 0.25) !important;
}
/* marquee: beyaz zeminde koyu konturlu hayalet yazı */
.section-light .marquee-slide .text-base-color {
    color: transparent !important;
    -webkit-text-stroke: 2px rgba(15, 15, 20, 0.55);
}
/* yorumlar slider'ı */
.section-light .swiper-number-pagination-progress .swiper-pagination-wrapper .number-prev,
.section-light .swiper-number-pagination-progress .swiper-pagination-wrapper .number-next {
    color: var(--dark-gray);
}
.section-light .swiper-number-pagination-progress .swiper-pagination-wrapper .swiper-pagination-progress {
    background-color: #e3e3e7;
}
.section-light .swiper-progress {
    background-color: var(--dark-gray);
}
/* banner slider: yalnızca .grayscale-slide işaretli ilk fotoğraf gri, diğerleri renkli */
#home .swiper-slide.cover-background {
    filter: none;
}
#home .swiper-slide.cover-background.grayscale-slide {
    filter: grayscale(1);
}
/* beyaz buton beyaz zeminde koyuya döner */
.section-light .btn.btn-white {
    background-color: var(--dark-gray);
    color: #ffffff !important;
}
.section-light .btn.btn-white span {
    color: #ffffff !important;
}
/* media query responsive */
@media (max-width: 1600px){
    section {
        padding-top: 110px;
        padding-bottom: 110px;
    }
}
@media (max-width: 1399px) {
    .fs-460 {
        font-size: 370px;
    }
}
@media (max-width: 1199px) {
    .fs-460 {
        font-size: 270px;
    }
    section {
        padding-top: 95px;
        padding-bottom: 95px;
    }
}
@media (max-width: 991px) {
    .countdown-style-03 .countdown-box {
        width: 85px;
    }
    .countdown-style-03 .countdown-box .number {
        font-size: 60px;
        line-height: 62px;
    }
}
@media (max-width: 767px) {
    section {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .mt-minus-50px {
        margin-top: -10px;
    }
    .menu-item-list .menu-item {
        padding: 10px 35px;
    }
    .menu-item-list .nav-link {
        font-size: 30px;
        line-height: 34px;
    }
    .left-modern-menu .left-modern-header .modern-side-menu {
        padding: 40px 0;
    }
}
@media (max-width: 575px) {
    .countdown-style-03 .countdown-box {
        width: 45%;
    }
    .countdown-style-03 .countdown-box .number {
        text-align: center;
    }
    .countdown-style-03 .countdown-box span {
        text-align: center;
        width: 100%;
        display: block;
        margin-top: 5px;
    }
}