:root {
    --yf-red: #8E682F;
    --yf-red-dark: #6B4D21;
    --yf-red-soft: rgba(200, 174, 114, 0.12);
    --yf-navy: #1D1810;
    --yf-navy-2: #2A2318;
    --yf-navy-3: #342A1C;
    --yf-white: #ffffff;
    --yf-cream: #F4EFE4;
    --yf-gray: #958C7D;
    --yf-gray-2: #D1CCC2;
    --yf-border: rgba(255, 255, 255, 0.12);
    --yf-border-dark: rgba(29, 24, 16, 0.12);
    --yf-shadow: 0 24px 70px rgba(29, 24, 16, 0.22);
    --yf-shadow-soft: 0 14px 40px rgba(29, 24, 16, 0.12);
    --yf-radius-sm: 12px;
    --yf-radius-md: 18px;
    --yf-radius-lg: 28px;
    --yf-font-main: "Manrope", Arial, sans-serif;
    --yf-font-title: "Barlow Condensed", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--yf-font-main);
    color: var(--yf-navy);
    background: #ffffff;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all .25s ease;
}

a:hover {
    color: var(--yf-red);
}

img {
    max-width: 100%;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

::selection {
    color: #ffffff;
    background: var(--yf-red);
}

.yf-container {
    width: 100%;
    max-width: 1600px;
    padding-left: 46px;
    padding-right: 46px;
    margin-left: auto;
    margin-right: auto;
}

.yf-site-shell {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(200, 174, 114, 0.09), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #F7F4EE 100%);
}

.yf-main {
    min-height: 60vh;
}

/* Butonlar */

.yf-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    isolation: isolate;
}

.yf-btn i {
    font-size: 17px;
}

.yf-btn-primary {
    color: #ffffff;
    background:
        linear-gradient(135deg, #9B7940 0%, var(--yf-red) 46%, #5E431C 100%);
    box-shadow: 0 16px 36px rgba(200, 174, 114, 0.28);
}

.yf-btn-primary:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(200, 174, 114, 0.38);
}

.yf-btn-ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(16px);
}

.yf-btn-ghost:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-2px);
}

.yf-btn-light {
    color: var(--yf-navy);
    background: #ffffff;
    border-color: rgba(255, 255, 255, 0.8);
}

.yf-btn-light:hover {
    color: var(--yf-red);
    transform: translateY(-2px);
}

.yf-btn-dark {
    color: #ffffff;
    background: var(--yf-navy);
}

.yf-btn-dark:hover {
    color: #ffffff;
    background: var(--yf-red);
}

/* Topbar */

.yf-topbar {
    position: relative;
    z-index: 80;
    color: rgba(255, 255, 255, 0.78);
    background:
        linear-gradient(90deg, #17130D 0%, #30281B 55%, #2C2116 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.yf-topbar-left,
.yf-topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 42px;
    font-size: 13px;
    font-weight: 600;
}

.yf-topbar-left span,
.yf-topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.yf-topbar-left i,
.yf-topbar-link i {
    color: #E6D197;
}

.yf-topbar-right {
    justify-content: flex-end;
}

.yf-topbar-link {
    color: rgba(255, 255, 255, 0.78);
}

.yf-topbar-link:hover {
    color: #ffffff;
}

.yf-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.yf-social a,
.yf-mobile-social a,
.yf-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.yf-social a:hover,
.yf-mobile-social a:hover,
.yf-footer-social a:hover {
    color: #ffffff;
    background: var(--yf-red);
    border-color: var(--yf-red);
    transform: translateY(-2px);
}

/* Header */

.yf-header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 70;
    background:
        linear-gradient(180deg, rgba(29, 24, 16, 0.96) 0%, rgba(29, 24, 16, 0.88) 100%);
    backdrop-filter: blur(22px);
    transition: all .25s ease;
}

.yf-header::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 0%, rgba(200, 174, 114, 0.18), transparent 32%),
        radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.07), transparent 28%);
}

.yf-header-sticky {
    box-shadow: 0 20px 60px rgba(29, 24, 16, 0.28);
}

.yf-navbar {
    position: relative;
    z-index: 2;
    min-height: 92px;
    padding-top: 0;
    padding-bottom: 0;
}

.yf-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    min-width: 230px;
    margin-right: 22px;
}

.yf-brand:hover {
    color: #ffffff;
}

.yf-brand-logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    padding: 8px;
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 16px 40px rgba(29, 24, 16, 0.25);
}

.yf-brand-logo::after {
    content: "";
    position: absolute;
    right: -5px;
    bottom: -5px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--yf-red);
    border: 4px solid var(--yf-navy);
}

.yf-logo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.yf-logo-light {
    display: none;
}

.yf-brand-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    line-height: 1;
}

.yf-brand-text strong {
    display: block;
    font-family: var(--yf-font-title);
    font-size: 34px;
    font-weight: 800;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.yf-brand-text small {
    color: rgba(255, 255, 255, 0.66);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.yf-nav {
    align-items: center;
    gap: 2px;
}

.yf-nav .nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.82);
    padding: 36px 13px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .2px;
    text-transform: uppercase;
}

.yf-nav .nav-link::before {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 27px;
    height: 3px;
    border-radius: 999px;
    background: var(--yf-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}

.yf-nav .nav-link:hover,
.yf-nav .nav-link:focus,
.yf-nav .nav-link.active {
    color: #ffffff;
}

.yf-nav .nav-link:hover::before,
.yf-nav .nav-link.active::before {
    transform: scaleX(1);
}

.yf-dropdown {
    min-width: 190px;
    margin-top: 0;
    padding: 10px;
    border: 0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(29, 24, 16, 0.24);
}

.yf-dropdown .dropdown-item {
    border-radius: 12px;
    padding: 11px 13px;
    color: var(--yf-navy);
    font-size: 14px;
    font-weight: 800;
}

.yf-dropdown .dropdown-item:hover {
    color: #ffffff;
    background: var(--yf-red);
}

.yf-dropdown .dropdown-divider {
    margin: 8px 4px;
    opacity: .12;
}

.yf-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 18px;
}

.yf-search-box {
    position: relative;
    display: flex;
    align-items: center;
    width: 210px;
    height: 46px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.yf-search-input {
    width: 100%;
    height: 100%;
    padding: 0 48px 0 17px;
    color: #ffffff;
    border: 0;
    outline: none;
    background: transparent;
    font-size: 13px;
    font-weight: 700;
}

.yf-search-input::placeholder {
    color: rgba(255, 255, 255, 0.52);
}

.yf-search-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: var(--yf-red);
}

.yf-search-btn:hover {
    background: #9B7940;
}

.yf-menu-btn {
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.09);
}

.yf-menu-btn:focus {
    box-shadow: none;
}

.yf-menu-btn span {
    display: block;
    height: 2px;
    width: 100%;
    margin: 5px 0;
    border-radius: 999px;
    background: #ffffff;
}

/* Branş şeridi */

.yf-branch-strip {
    position: relative;
    z-index: 50;
    color: #ffffff;
    background:
        linear-gradient(90deg, var(--yf-red-dark) 0%, var(--yf-red) 42%, #9B7940 100%);
    box-shadow: 0 14px 34px rgba(200, 174, 114, 0.22);
}

.yf-branch-inner {
    display: flex;
    align-items: center;
    gap: 22px;
    min-height: 66px;
}

.yf-branch-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 110px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.yf-branch-list {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: thin;
    padding: 8px 0;
}

.yf-branch-list a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex: 0 0 auto;
    min-height: 42px;
    padding: 7px 14px 7px 8px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 13px;
    font-weight: 800;
}

.yf-branch-list a:hover {
    color: var(--yf-navy);
    background: #ffffff;
    border-color: #ffffff;
}

.yf-branch-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 29px;
    height: 29px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    overflow: hidden;
}

.yf-branch-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* Mobil menü */

.yf-offcanvas {
    color: #ffffff;
    background:
        radial-gradient(circle at top right, rgba(200, 174, 114, 0.28), transparent 32%),
        linear-gradient(180deg, #1D1810 0%, #30281B 100%);
}

.yf-offcanvas .offcanvas-header {
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.yf-mobile-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-family: var(--yf-font-title);
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
}

.yf-mobile-logo:hover {
    color: #ffffff;
}

.yf-mobile-logo img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.yf-mobile-close {
    filter: invert(1);
    opacity: .9;
}

.yf-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.yf-mobile-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    padding: 11px 14px;
    border-radius: 15px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 15px;
    font-weight: 800;
}

.yf-mobile-nav a i {
    color: #E6D197;
    font-size: 19px;
}

.yf-mobile-nav a:hover {
    color: #ffffff;
    background: var(--yf-red);
    border-color: var(--yf-red);
}

.yf-mobile-nav a:hover i {
    color: #ffffff;
}

.yf-mobile-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
}

/* Footer */

.yf-footer {
    position: relative;
    color: rgba(255, 255, 255, 0.76);
    background:
        radial-gradient(circle at 12% 0%, rgba(200, 174, 114, 0.24), transparent 30%),
        radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.08), transparent 28%),
        linear-gradient(180deg, #1D1810 0%, #17130D 100%);
    overflow: hidden;
}

.yf-footer::before {
    content: "YALOVA FK";
    position: absolute;
    right: -30px;
    bottom: 25px;
    color: rgba(255, 255, 255, 0.025);
    font-family: var(--yf-font-title);
    font-size: 180px;
    font-weight: 800;
    line-height: .8;
    letter-spacing: 4px;
    pointer-events: none;
}

.yf-footer-top {
    position: relative;
    z-index: 2;
    padding: 72px 0 54px;
}

.yf-footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.yf-footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 82px;
    height: 82px;
    padding: 10px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
}

.yf-footer-brand h5 {
    margin: 0 0 10px;
    color: #ffffff;
    font-family: var(--yf-font-title);
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
}

.yf-footer-brand p {
    max-width: 430px;
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.75;
}

.yf-footer-social {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
}

.yf-footer-menu h6 {
    position: relative;
    margin: 0 0 18px;
    color: #ffffff;
    font-family: var(--yf-font-title);
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
}

.yf-footer-menu h6::after {
    content: "";
    display: block;
    width: 34px;
    height: 3px;
    margin-top: 8px;
    border-radius: 999px;
    background: var(--yf-red);
}

.yf-footer-menu a {
    display: block;
    width: max-content;
    max-width: 100%;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 14px;
    font-weight: 700;
}

.yf-footer-menu a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.yf-footer-bottom {
    position: relative;
    z-index: 2;
    padding: 22px 0;
    background: rgba(29, 24, 16, 0.24);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.yf-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    font-weight: 700;
}

.yf-footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.yf-footer-bottom-links a {
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    font-weight: 800;
}

.yf-footer-bottom-links a:hover {
    color: #ffffff;
}

/* Sabit butonlar */

.yf-floating-mail {
    position: fixed;
    right: 24px;
    bottom: 94px;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: #ffffff;
    background:
        linear-gradient(135deg, #9B7940 0%, var(--yf-red) 100%);
    box-shadow: 0 18px 42px rgba(200, 174, 114, 0.35);
}

.yf-floating-mail:hover {
    color: #ffffff;
    transform: translateY(-3px) scale(1.03);
}

.yf-floating-mail i {
    font-size: 23px;
}

.yf-backtop {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: var(--yf-navy);
    box-shadow: 0 16px 38px rgba(29, 24, 16, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all .25s ease;
}

.yf-backtop.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.yf-backtop:hover {
    background: var(--yf-red);
}

/* İç sayfa varsayılanları */

.yf-page-header {
    position: relative;
    padding: 92px 0;
    color: #ffffff;
    background:
        radial-gradient(circle at 10% 0%, rgba(200, 174, 114, 0.32), transparent 36%),
        linear-gradient(135deg, #1D1810 0%, #342A1C 55%, #3A2B1B 100%);
    overflow: hidden;
}

.yf-page-header::after {
    content: "";
    position: absolute;
    inset: auto -10% -50% -10%;
    height: 180px;
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(-2deg);
}

.yf-page-header-content {
    position: relative;
    z-index: 2;
}

.yf-page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    color: #E8D8AF;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.yf-page-kicker::before {
    content: "";
    width: 34px;
    height: 3px;
    border-radius: 999px;
    background: var(--yf-red);
}

.yf-page-title {
    margin: 0;
    color: #ffffff;
    font-family: var(--yf-font-title);
    font-size: clamp(42px, 6vw, 82px);
    font-weight: 800;
    line-height: .95;
    text-transform: uppercase;
}

.yf-page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 14px;
    font-weight: 700;
}

.yf-page-breadcrumb a {
    color: #ffffff;
}

.yf-page-breadcrumb a:hover {
    color: #E6D197;
}

.yf-section {
    padding: 92px 0;
}

.yf-section-title {
    margin-bottom: 34px;
}

.yf-section-title span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--yf-red);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.yf-section-title h2 {
    margin: 0;
    color: var(--yf-navy);
    font-family: var(--yf-font-title);
    font-size: clamp(36px, 4vw, 60px);
    font-weight: 800;
    line-height: .98;
    text-transform: uppercase;
}

.yf-card {
    border-radius: var(--yf-radius-lg);
    background: #ffffff;
    box-shadow: var(--yf-shadow-soft);
    border: 1px solid rgba(29, 24, 16, 0.08);
}

/* Küçük yardımcı sınıflar */

.yf-text-red {
    color: var(--yf-red) !important;
}

.yf-bg-navy {
    background: var(--yf-navy) !important;
}

.yf-bg-red {
    background: var(--yf-red) !important;
}

.yf-overflow-hidden {
    overflow: hidden;
}

/* Responsive */

@media (max-width: 1399.98px) {
    .yf-container {
        padding-left: 32px;
        padding-right: 32px;
    }

    .yf-brand {
        min-width: 210px;
    }

    .yf-brand-text strong {
        font-size: 30px;
    }

    .yf-search-box {
        width: 180px;
    }

    .yf-nav .nav-link {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 13px;
    }
}

@media (max-width: 1199.98px) {
    .yf-navbar {
        min-height: 82px;
    }

    .yf-brand-logo {
        width: 62px;
        height: 62px;
        border-radius: 19px;
    }

    .yf-brand-text strong {
        font-size: 29px;
    }

    .yf-topbar-left,
    .yf-topbar-right {
        justify-content: center;
    }
}

@media (max-width: 991.98px) {
    .yf-container {
        padding-left: 22px;
        padding-right: 22px;
    }

    .yf-topbar {
        display: none;
    }

    .yf-header {
        top: 0;
    }

    .yf-navbar {
        min-height: 76px;
    }

    .yf-brand {
        min-width: 0;
    }

    .yf-brand-logo {
        width: 58px;
        height: 58px;
    }

    .yf-brand-text strong {
        font-size: 27px;
    }

    .yf-brand-text small {
        font-size: 10px;
    }

    .yf-footer-top {
        padding: 58px 0 44px;
    }

    .yf-footer::before {
        font-size: 110px;
        right: -25px;
        bottom: 80px;
    }

    .yf-footer-brand {
        flex-direction: column;
    }

    .yf-page-header {
        padding: 70px 0;
    }

    .yf-section {
        padding: 70px 0;
    }
}

@media (max-width: 767.98px) {
    .yf-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .yf-brand-logo {
        width: 54px;
        height: 54px;
        border-radius: 17px;
    }

    .yf-brand-text strong {
        font-size: 25px;
    }

    .yf-brand-text small {
        letter-spacing: .8px;
    }

    .yf-menu-btn {
        width: 46px;
        height: 46px;
    }

    .yf-footer-bottom,
    .yf-footer-bottom-links {
        text-align: center;
        justify-content: center;
    }

    .yf-floating-mail {
        right: 18px;
        bottom: 86px;
        width: 52px;
        height: 52px;
    }

    .yf-backtop {
        right: 18px;
        bottom: 22px;
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 575.98px) {
    .yf-brand-text small {
        display: none;
    }

    .yf-brand-text strong {
        font-size: 24px;
    }

    .yf-footer-menu a {
        width: auto;
    }

    .yf-page-title {
        font-size: 42px;
    }
}


/* =========================================================
   Yalova FK Ana Sayfa
   index.aspx özel stiller
========================================================= */

.yf-btn-lg {
    min-height: 56px;
    padding: 16px 26px;
    font-size: 15px;
}

/* Hero */

.yf-home-hero {
    position: relative;
    overflow: hidden;
    background: var(--yf-navy);
}

.yf-hero-carousel,
.yf-hero-carousel .carousel-inner,
.yf-hero-carousel .carousel-item {
    min-height: 760px;
}

.yf-hero-slide {
    position: relative;
    min-height: 760px;
    color: #ffffff;
    overflow: hidden;
    background: var(--yf-navy);
}

.min-vh-yf-hero {
    min-height: 760px;
    padding-top: 88px;
    padding-bottom: 92px;
}

.yf-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.yf-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    filter: saturate(1.1) contrast(1.08);
}

.yf-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(23, 19, 13, 0.96) 0%, rgba(29, 24, 16, 0.82) 38%, rgba(29, 24, 16, 0.42) 66%, rgba(200, 174, 114, 0.32) 100%),
        linear-gradient(180deg, rgba(29, 24, 16, 0.28) 0%, rgba(29, 24, 16, 0.92) 100%);
}

.yf-hero-light {
    position: absolute;
    z-index: 3;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(4px);
}

.yf-hero-light-one {
    width: 420px;
    height: 420px;
    right: 8%;
    top: 12%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.13), transparent 66%);
}

.yf-hero-light-two {
    width: 360px;
    height: 360px;
    left: -120px;
    bottom: -80px;
    background: radial-gradient(circle, rgba(200, 174, 114, 0.42), transparent 68%);
}

.yf-hero-content {
    position: relative;
    z-index: 5;
    max-width: 860px;
}

.yf-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #E8D8AF;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.yf-hero-kicker span {
    display: inline-block;
    width: 44px;
    height: 4px;
    border-radius: 999px;
    background: var(--yf-red);
    box-shadow: 0 0 22px rgba(200, 174, 114, 0.9);
}

.yf-hero-content h2 {
    max-width: 830px;
    margin: 0;
    color: #ffffff;
    font-family: var(--yf-font-title);
    font-size: clamp(58px, 8vw, 118px);
    font-weight: 800;
    line-height: .88;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.yf-hero-content p {
    max-width: 690px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.78;
}

.yf-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.yf-hero-stats {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 42px;
}

.yf-hero-stats div {
    min-width: 132px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(18px);
}

.yf-hero-stats strong {
    display: block;
    color: #ffffff;
    font-family: var(--yf-font-title);
    font-size: 42px;
    font-weight: 800;
    line-height: .95;
}

.yf-hero-stats span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.yf-hero-match-card {
    position: relative;
    z-index: 5;
    max-width: 430px;
    margin-left: auto;
    border-radius: 34px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 34px 90px rgba(29, 24, 16, 0.34);
    backdrop-filter: blur(24px);
}

.yf-match-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 24px;
    background:
        linear-gradient(90deg, var(--yf-red-dark), var(--yf-red));
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.yf-match-card-head span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.yf-match-card-head strong {
    font-family: var(--yf-font-title);
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
}

.yf-match-card-body {
    padding: 34px;
    text-align: center;
}

.yf-match-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 132px;
    height: 132px;
    padding: 16px;
    margin-bottom: 22px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 48px rgba(29, 24, 16, 0.26);
}

.yf-match-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.yf-match-card-body h3 {
    margin: 0;
    color: #ffffff;
    font-family: var(--yf-font-title);
    font-size: 40px;
    font-weight: 800;
    line-height: .95;
    text-transform: uppercase;
}

.yf-match-card-body p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.7;
}

.yf-match-mini-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 24px 0;
    text-align: left;
}

.yf-match-mini-list span {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.08);
    font-size: 14px;
    font-weight: 800;
}

.yf-match-mini-list i {
    color: #E6D197;
}

.yf-hero-control {
    top: auto;
    bottom: 34px;
    z-index: 8;
    width: 54px;
    height: 54px;
    opacity: 1;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px);
}

.yf-hero-control:hover {
    background: var(--yf-red);
}

.yf-hero-control-prev {
    left: auto;
    right: 112px;
}

.yf-hero-control-next {
    right: 46px;
}

.yf-hero-control i {
    font-size: 22px;
}

/* Kısa yollar */

.yf-home-shortcuts {
    position: relative;
    z-index: 10;
    margin-top: -54px;
    padding-bottom: 34px;
}

.yf-shortcut-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 118px;
    padding: 24px;
    border-radius: 26px;
    color: var(--yf-navy);
    background: #ffffff;
    border: 1px solid rgba(29, 24, 16, 0.08);
    box-shadow: 0 22px 64px rgba(29, 24, 16, 0.14);
    overflow: hidden;
}

.yf-shortcut-card::after {
    content: "";
    position: absolute;
    right: -34px;
    top: -34px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--yf-red-soft);
    transition: all .25s ease;
}

.yf-shortcut-card:hover {
    color: var(--yf-navy);
    transform: translateY(-6px);
    box-shadow: 0 28px 74px rgba(29, 24, 16, 0.18);
}

.yf-shortcut-card:hover::after {
    transform: scale(1.45);
    background: rgba(200, 174, 114, 0.18);
}

.yf-shortcut-icon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 62px;
    height: 62px;
    border-radius: 20px;
    color: #ffffff;
    background:
        linear-gradient(135deg, #9B7940, var(--yf-red-dark));
    box-shadow: 0 16px 34px rgba(200, 174, 114, 0.25);
}

.yf-shortcut-icon i {
    font-size: 27px;
}

.yf-shortcut-card strong,
.yf-shortcut-card small {
    position: relative;
    z-index: 2;
    display: block;
}

.yf-shortcut-card strong {
    margin-bottom: 5px;
    font-family: var(--yf-font-title);
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.yf-shortcut-card small {
    color: #756D60;
    font-size: 13px;
    font-weight: 800;
}

/* Ortak başlık */

.yf-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 38px;
}

.yf-section-heading span,
.yf-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
    color: var(--yf-red);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.yf-section-heading span::before,
.yf-section-kicker::before {
    content: "";
    width: 34px;
    height: 3px;
    border-radius: 999px;
    background: var(--yf-red);
}

.yf-section-heading h2 {
    margin: 0;
    color: var(--yf-navy);
    font-family: var(--yf-font-title);
    font-size: clamp(42px, 5vw, 76px);
    font-weight: 800;
    line-height: .92;
    text-transform: uppercase;
}

.yf-section-heading-light h2 {
    color: #ffffff;
}

.yf-section-heading-light span {
    color: #E8D8AF;
}

.yf-more-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--yf-navy);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.yf-more-link:hover {
    color: var(--yf-red);
    gap: 14px;
}

.yf-more-link-light {
    color: #ffffff;
}

.yf-more-link-light:hover {
    color: #E8D8AF;
}

/* Haberler */

.yf-home-news {
    background:
        radial-gradient(circle at 90% 0%, rgba(200, 174, 114, 0.08), transparent 28%),
        #F4F1EA;
}

.yf-news-card {
    height: 100%;
    overflow: hidden;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(29, 24, 16, 0.08);
    box-shadow: 0 18px 46px rgba(29, 24, 16, 0.1);
    transition: all .25s ease;
}

.yf-news-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 70px rgba(29, 24, 16, 0.16);
}

.yf-news-card-featured {
    min-height: 100%;
}

.yf-news-image {
    position: relative;
    display: block;
    height: 238px;
    overflow: hidden;
    background: var(--yf-navy);
}

.yf-news-card-featured .yf-news-image {
    height: 372px;
}

.yf-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.yf-news-card:hover .yf-news-image img {
    transform: scale(1.08);
}

.yf-news-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 40%, rgba(29, 24, 16, 0.74) 100%);
}

.yf-news-image span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 7px 12px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--yf-red);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.yf-news-body {
    padding: 24px;
}

.yf-news-card-featured .yf-news-body {
    padding: 30px;
}

.yf-news-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 13px;
    color: #847B6E;
    font-size: 13px;
    font-weight: 800;
}

.yf-news-date i {
    color: var(--yf-red);
}

.yf-news-body h3 {
    margin: 0;
    color: var(--yf-navy);
    font-family: var(--yf-font-title);
    font-size: 30px;
    font-weight: 800;
    line-height: 1.02;
    text-transform: uppercase;
}

.yf-news-card-featured .yf-news-body h3 {
    font-size: 42px;
}

.yf-news-body h3 a:hover {
    color: var(--yf-red);
}

.yf-news-body p {
    margin: 14px 0 0;
    color: #756D60;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.72;
}

.yf-read-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--yf-red);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.yf-read-link:hover {
    gap: 13px;
}

/* Kulüp alanı */

.yf-home-club {
    background:
        linear-gradient(180deg, #ffffff 0%, #F5F2EB 100%);
}

.yf-club-visual {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    border-radius: 34px;
    background: var(--yf-navy);
    box-shadow: var(--yf-shadow-soft);
}

.yf-club-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, transparent 38%, rgba(29, 24, 16, 0.76) 100%),
        radial-gradient(circle at 20% 10%, rgba(200, 174, 114, 0.32), transparent 34%);
}

.yf-club-visual img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.yf-club-badge {
    position: absolute;
    left: 28px;
    bottom: 28px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: calc(100% - 56px);
    padding: 18px 22px;
    border-radius: 24px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(20px);
}

.yf-club-badge strong {
    font-family: var(--yf-font-title);
    font-size: 58px;
    font-weight: 800;
    line-height: .9;
}

.yf-club-badge span {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.yf-club-content {
    padding-left: 34px;
}

.yf-club-content h2 {
    max-width: 720px;
    margin: 0;
    color: var(--yf-navy);
    font-family: var(--yf-font-title);
    font-size: clamp(46px, 5vw, 78px);
    font-weight: 800;
    line-height: .92;
    text-transform: uppercase;
}

.yf-club-content p {
    max-width: 660px;
    margin: 24px 0 0;
    color: #70685C;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.85;
}

.yf-club-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 30px 0;
}

.yf-club-list div {
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--yf-navy);
    font-size: 15px;
    font-weight: 700;
}

.yf-club-list i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #ffffff;
    background: var(--yf-red);
}

/* Duyurular */

.yf-home-duyuru {
    color: #ffffff;
    background:
        radial-gradient(circle at 12% 18%, rgba(200, 174, 114, 0.38), transparent 32%),
        linear-gradient(135deg, #1D1810 0%, #30281B 56%, #3A2B1B 100%);
}

.yf-duyuru-title span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 12px;
    color: #E8D8AF;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.yf-duyuru-title span::before {
    content: "";
    width: 34px;
    height: 3px;
    border-radius: 999px;
    background: var(--yf-red);
}

.yf-duyuru-title h2 {
    margin: 0;
    color: #ffffff;
    font-family: var(--yf-font-title);
    font-size: clamp(48px, 6vw, 88px);
    font-weight: 800;
    line-height: .9;
    text-transform: uppercase;
}

.yf-duyuru-title p {
    max-width: 470px;
    margin: 22px 0 28px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 16px;
    line-height: 1.8;
}

.yf-duyuru-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.yf-duyuru-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px;
    border-radius: 24px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(18px);
}

.yf-duyuru-item:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    transform: translateX(6px);
}

.yf-duyuru-date {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex: 0 0 auto;
    width: 76px;
    height: 76px;
    border-radius: 21px;
    background: var(--yf-red);
    box-shadow: 0 16px 34px rgba(200, 174, 114, 0.3);
}

.yf-duyuru-date strong {
    font-family: var(--yf-font-title);
    font-size: 32px;
    font-weight: 800;
    line-height: .9;
}

.yf-duyuru-date span {
    margin-top: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.yf-duyuru-content {
    flex: 1;
}

.yf-duyuru-content h3 {
    margin: 0;
    color: #ffffff;
    font-family: var(--yf-font-title);
    font-size: 28px;
    font-weight: 800;
    line-height: 1.02;
    text-transform: uppercase;
}

.yf-duyuru-content p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.55;
}

.yf-duyuru-item > i {
    color: rgba(255, 255, 255, 0.48);
    font-size: 22px;
}

/* Branşlar */

.yf-home-branches {
    background:
        radial-gradient(circle at 0% 0%, rgba(200, 174, 114, 0.08), transparent 30%),
        #ffffff;
}

.yf-branch-card {
    position: relative;
    display: block;
    height: 100%;
    min-height: 292px;
    padding: 30px;
    overflow: hidden;
    border-radius: 30px;
    color: var(--yf-navy);
    background:
        linear-gradient(180deg, #ffffff 0%, #FAF8F3 100%);
    border: 1px solid rgba(29, 24, 16, 0.08);
    box-shadow: 0 18px 44px rgba(29, 24, 16, 0.08);
}

.yf-branch-card::before {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: var(--yf-red-soft);
    transition: all .28s ease;
}

.yf-branch-card:hover {
    color: var(--yf-navy);
    transform: translateY(-8px);
    box-shadow: 0 28px 68px rgba(29, 24, 16, 0.14);
}

.yf-branch-card:hover::before {
    transform: scale(1.35);
    background: rgba(200, 174, 114, 0.17);
}

.yf-branch-card-icon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    margin-bottom: 22px;
    padding: 16px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, #9B7940, var(--yf-red-dark));
    box-shadow: 0 18px 38px rgba(200, 174, 114, 0.22);
}

.yf-branch-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.yf-branch-card h3 {
    position: relative;
    z-index: 2;
    margin: 0;
    font-family: var(--yf-font-title);
    font-size: 34px;
    font-weight: 800;
    line-height: .95;
    text-transform: uppercase;
}

.yf-branch-card p {
    position: relative;
    z-index: 2;
    margin: 14px 0 0;
    color: #736B5E;
    font-size: 14px;
    line-height: 1.7;
}

.yf-branch-card-link {
    position: absolute;
    left: 30px;
    bottom: 26px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--yf-red);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Oyuncular */

.yf-home-players {
    position: relative;
    color: #ffffff;
    background:
        radial-gradient(circle at 85% 8%, rgba(200, 174, 114, 0.3), transparent 28%),
        linear-gradient(180deg, #1D1810 0%, #30281B 100%);
    overflow: hidden;
}

.yf-home-players::before {
    content: "YALOVA FK";
    position: absolute;
    left: -25px;
    top: 52px;
    color: rgba(255, 255, 255, 0.025);
    font-family: var(--yf-font-title);
    font-size: 190px;
    font-weight: 800;
    line-height: .8;
    letter-spacing: 4px;
    pointer-events: none;
}

.yf-player-card {
    position: relative;
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: 32px;
    color: #ffffff;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 60px rgba(29, 24, 16, 0.22);
}

.yf-player-card:hover {
    color: #ffffff;
    transform: translateY(-8px);
}

.yf-player-photo {
    position: relative;
    height: 360px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 20%, rgba(200, 174, 114, 0.28), transparent 42%),
        #342A1C;
}

.yf-player-photo::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 48%;
    background: linear-gradient(180deg, transparent, rgba(29, 24, 16, 0.92));
}

.yf-player-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.yf-player-card:hover .yf-player-photo img {
    transform: scale(1.06);
}

.yf-player-info {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 3;
}

.yf-player-info span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: 10px;
    padding: 7px 11px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--yf-red);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.yf-player-info h3 {
    margin: 0;
    color: #ffffff;
    font-family: var(--yf-font-title);
    font-size: 34px;
    font-weight: 800;
    line-height: .95;
    text-transform: uppercase;
}

.yf-player-info small {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
    font-weight: 800;
}

/* Galeri */

.yf-home-gallery {
    background: #F4F1EA;
}

.yf-gallery-card {
    position: relative;
    display: block;
    height: 260px;
    overflow: hidden;
    border-radius: 26px;
    background: var(--yf-navy);
    box-shadow: 0 18px 42px rgba(29, 24, 16, 0.12);
}

.yf-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.yf-gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 30%, rgba(29, 24, 16, 0.72) 100%);
    opacity: .82;
}

.yf-gallery-card span {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: #ffffff;
    background: var(--yf-red);
    transform: translate(-50%, -50%) scale(.82);
    opacity: 0;
    transition: all .25s ease;
}

.yf-gallery-card:hover img {
    transform: scale(1.08);
}

.yf-gallery-card:hover span {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Sponsorlar */

.yf-home-partners {
    padding: 42px 0 98px;
    background: #F4F1EA;
}

.yf-partner-box {
    padding: 38px;
    border-radius: 34px;
    background: #ffffff;
    border: 1px solid rgba(29, 24, 16, 0.08);
    box-shadow: 0 18px 46px rgba(29, 24, 16, 0.08);
}

.yf-partner-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.yf-partner-head span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 8px;
    color: var(--yf-red);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.yf-partner-head span::before {
    content: "";
    width: 34px;
    height: 3px;
    border-radius: 999px;
    background: var(--yf-red);
}

.yf-partner-head h2 {
    margin: 0;
    color: var(--yf-navy);
    font-family: var(--yf-font-title);
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 800;
    line-height: .95;
    text-transform: uppercase;
}

.yf-partner-list {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 14px;
}

.yf-partner-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 150px;
    min-width: 150px;
    height: 104px;
    padding: 22px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(29, 24, 16, 0.07);
    transition: all .25s ease;
}

.yf-partner-item:hover {
    transform: translateY(-4px);
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(29, 24, 16, 0.1);
}

.yf-partner-item img {
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
}

/* Boş veri kutuları */

.yf-empty-box {
    padding: 48px 28px;
    border-radius: 28px;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(29, 24, 16, 0.08);
    box-shadow: 0 18px 44px rgba(29, 24, 16, 0.08);
}

.yf-empty-box i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    margin-bottom: 18px;
    border-radius: 50%;
    color: #ffffff;
    background: var(--yf-red);
    font-size: 30px;
}

.yf-empty-box h3 {
    margin: 0;
    color: var(--yf-navy);
    font-family: var(--yf-font-title);
    font-size: 34px;
    font-weight: 800;
    text-transform: uppercase;
}

.yf-empty-box p {
    max-width: 520px;
    margin: 10px auto 0;
    color: #7B7366;
    font-size: 15px;
    line-height: 1.7;
}

.yf-empty-box-dark {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.yf-empty-box-dark h3 {
    color: #ffffff;
}

.yf-empty-box-dark p {
    color: rgba(255, 255, 255, 0.62);
}

/* Responsive Ana Sayfa */

@media (max-width: 1399.98px) {
    .yf-hero-content h2 {
        font-size: clamp(54px, 7vw, 96px);
    }

    .yf-match-card-body {
        padding: 28px;
    }

    .yf-news-card-featured .yf-news-body h3 {
        font-size: 38px;
    }
}

@media (max-width: 1199.98px) {
    .yf-hero-carousel,
    .yf-hero-carousel .carousel-inner,
    .yf-hero-carousel .carousel-item,
    .yf-hero-slide,
    .min-vh-yf-hero {
        min-height: 680px;
    }

    .min-vh-yf-hero {
        padding-top: 74px;
        padding-bottom: 86px;
    }

    .yf-home-shortcuts {
        margin-top: -34px;
    }

    .yf-club-content {
        padding-left: 0;
    }

    .yf-player-photo {
        height: 340px;
    }
}

@media (max-width: 991.98px) {
    .yf-hero-carousel,
    .yf-hero-carousel .carousel-inner,
    .yf-hero-carousel .carousel-item,
    .yf-hero-slide,
    .min-vh-yf-hero {
        min-height: 640px;
    }

    .yf-hero-overlay {
        background:
            linear-gradient(90deg, rgba(23, 19, 13, 0.96) 0%, rgba(29, 24, 16, 0.86) 60%, rgba(200, 174, 114, 0.26) 100%),
            linear-gradient(180deg, rgba(29, 24, 16, 0.28) 0%, rgba(29, 24, 16, 0.92) 100%);
    }

    .yf-hero-content h2 {
        font-size: clamp(48px, 10vw, 78px);
    }

    .yf-hero-content p {
        font-size: 16px;
    }

    .yf-hero-control {
        display: none;
    }

    .yf-home-shortcuts {
        margin-top: 0;
        padding-top: 30px;
        background: #F4F1EA;
    }

    .yf-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .yf-news-card-featured .yf-news-image,
    .yf-news-image {
        height: 280px;
    }

    .yf-news-card-featured .yf-news-body h3,
    .yf-news-body h3 {
        font-size: 32px;
    }

    .yf-club-visual,
    .yf-club-visual img {
        min-height: auto;
        height: 430px;
    }

    .yf-home-players::before {
        font-size: 120px;
    }

    .yf-partner-head {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .yf-hero-carousel,
    .yf-hero-carousel .carousel-inner,
    .yf-hero-carousel .carousel-item,
    .yf-hero-slide,
    .min-vh-yf-hero {
        min-height: 610px;
    }

    .min-vh-yf-hero {
        padding-top: 58px;
        padding-bottom: 70px;
    }

    .yf-hero-content h2 {
        font-size: 54px;
        letter-spacing: -.4px;
    }

    .yf-hero-content p {
        margin-top: 20px;
    }

    .yf-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .yf-hero-actions .yf-btn {
        width: 100%;
    }

    .yf-hero-stats {
        gap: 8px;
    }

    .yf-hero-stats div {
        flex: 1 1 calc(50% - 8px);
        min-width: 0;
        padding: 16px;
    }

    .yf-hero-stats strong {
        font-size: 34px;
    }

    .yf-shortcut-card {
        min-height: 104px;
        padding: 20px;
    }

    .yf-shortcut-card strong {
        font-size: 25px;
    }

    .yf-section-heading h2,
    .yf-club-content h2,
    .yf-duyuru-title h2 {
        font-size: 46px;
    }

    .yf-club-visual,
    .yf-club-visual img {
        height: 360px;
    }

    .yf-club-badge {
        left: 18px;
        right: 18px;
        bottom: 18px;
        max-width: none;
    }

    .yf-duyuru-item {
        align-items: flex-start;
    }

    .yf-duyuru-date {
        width: 66px;
        height: 66px;
        border-radius: 18px;
    }

    .yf-duyuru-date strong {
        font-size: 28px;
    }

    .yf-duyuru-content h3 {
        font-size: 24px;
    }

    .yf-player-photo {
        height: 380px;
    }

    .yf-gallery-card {
        height: 210px;
    }

    .yf-partner-box {
        padding: 26px;
    }
}

@media (max-width: 575.98px) {
    .yf-hero-content h2 {
        font-size: 46px;
    }

    .yf-hero-kicker {
        font-size: 11px;
        letter-spacing: 1.2px;
    }

    .yf-hero-stats div {
        flex: 1 1 100%;
    }

    .yf-news-card-featured .yf-news-image,
    .yf-news-image {
        height: 230px;
    }

    .yf-news-body,
    .yf-news-card-featured .yf-news-body {
        padding: 22px;
    }

    .yf-news-card-featured .yf-news-body h3,
    .yf-news-body h3 {
        font-size: 28px;
    }

    .yf-club-visual,
    .yf-club-visual img {
        height: 310px;
    }

    .yf-duyuru-item {
        gap: 13px;
        padding: 15px;
    }

    .yf-duyuru-item > i {
        display: none;
    }

    .yf-branch-card {
        min-height: 260px;
        padding: 24px;
    }

    .yf-branch-card-link {
        left: 24px;
        bottom: 22px;
    }

    .yf-player-photo {
        height: 340px;
    }

    .yf-partner-item {
        flex-basis: 130px;
        min-width: 130px;
    }
}
/* =========================================================
   Yalova FK - Sadece İstenen Master Düzenlemeleri
   Mevcut yf tasarım dili korunur.
========================================================= */

.yf-menu-strip {
    background:
        linear-gradient(90deg, var(--yf-red-dark) 0%, var(--yf-red) 42%, #9B7940 100%);
}

.yf-menu-strip-inner {
    min-height: 66px;
}

.yf-strip-nav {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 4px;
        justify-content: center;
}

.yf-strip-nav .nav-link {
    padding: 23px 14px;
    color: rgba(255, 255, 255, 0.92);
}

.yf-strip-nav .nav-link::before {
    bottom: 16px;
    background: #ffffff;
}

.yf-strip-nav .nav-link:hover,
.yf-strip-nav .nav-link:focus,
.yf-strip-nav .nav-link.active {
    color: #ffffff;
}

.yf-branch-menu-dropdown {
    min-width: 290px;
    max-height: 520px;
    overflow-y: auto;
}

.yf-branch-menu-item {
    padding: 4px 0 8px;
    border-bottom: 1px solid rgba(29, 24, 16, 0.08);
}

.yf-branch-menu-item:last-child {
    border-bottom: 0;
}

.yf-branch-menu-title {
    font-family: var(--yf-font-title);
    font-size: 18px !important;
}

.yf-branch-menu-sub {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 12px 6px;
}

.yf-branch-menu-sub a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--yf-red);
    background: rgba(200, 174, 114, 0.09);
    font-size: 12px;
    font-weight: 700;
}

.yf-branch-menu-sub a:hover {
    color: #ffffff;
    background: var(--yf-red);
}

.yf-footer-social {
    flex-wrap: wrap;
}

@media (max-width: 1199.98px) {
    .yf-menu-strip {
        display: none !important;
    }
}



/* =========================================================
   Yalova FK - İstenen Net Düzeltmeler
   Mevcut tema korunur, sadece ölçüler/yerleşim düzeltilir.
========================================================= */

/* Genel başlık kontrolü: çok büyük ve çok kalın görünümü dengeler */
h1,
h2,
h3,
h4,
h5,
h6,
.yf-section-heading h2,
.yf-section-title h2,
.yf-page-title,
.yf-hero-content h2,
.yf-match-card-body h3,
.yf-news-body h3,
.yf-news-card-featured .yf-news-body h3,
.yf-club-content h2,
.yf-duyuru-title h2,
.yf-duyuru-content h3,
.yf-footer-brand h5,
.yf-footer-menu h6,
.yf-brand-text strong,
.yf-shortcut-card strong {
    font-weight: 650 !important;
    letter-spacing: .15px;
}

/* Hero ve bölüm başlıklarını makul ölçüye çeker */
.yf-hero-content h2 {
    font-size: clamp(42px, 5.4vw, 82px) !important;
    line-height: .98 !important;
}

.yf-section-heading h2 {
    font-size: clamp(34px, 3.4vw, 52px) !important;
    line-height: 1.02 !important;
}

.yf-section-title h2 {
    font-size: clamp(30px, 3vw, 46px) !important;
    line-height: 1.08 !important;
}

.yf-page-title {
    font-size: clamp(34px, 4.2vw, 58px) !important;
    line-height: 1.02 !important;
}

.yf-news-body h3 {
    font-size: 24px !important;
    line-height: 1.12 !important;
}

.yf-news-card-featured .yf-news-body h3 {
    font-size: 32px !important;
    line-height: 1.08 !important;
}

.yf-match-card-body h3 {
    font-size: 30px !important;
    line-height: 1.08 !important;
}

.yf-club-content h2 {
    font-size: clamp(34px, 3.8vw, 56px) !important;
    line-height: 1.02 !important;
}

.yf-duyuru-title h2 {
    font-size: clamp(36px, 4.2vw, 60px) !important;
    line-height: 1.02 !important;
}

.yf-duyuru-content h3 {
    font-size: 24px !important;
    line-height: 1.1 !important;
}

.yf-footer-brand h5 {
    font-size: 30px !important;
    line-height: 1.05 !important;
}

.yf-footer-menu h6 {
    font-size: 19px !important;
}

/* Header arama alanı: ortalanmış ve büyütülmüş */
.yf-header .yf-navbar .yf-container {
    position: relative;
}

.yf-header-actions {
    width: 100%;
    justify-content: center;
    margin-left: 0 !important;
    padding-left: 210px;
    padding-right: 210px;
}

.yf-search-box {
    width: min(620px, 52vw) !important;
    height: 58px !important;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.18);
}

.yf-search-input {
    height: 58px !important;
    padding: 0 70px 0 25px !important;
    font-size: 14px !important;
    font-weight: 650 !important;
}

.yf-search-btn {
    right: 6px !important;
    top: 6px !important;
    width: 37px !important;
    height: 37px !important;
    font-size: 19px;
}

.yf-header-actions .yf-btn-primary {
    position: absolute;
    right: 46px;
    top: 50%;
    transform: translateY(-50%);
}

.yf-header-actions .yf-btn-primary:hover {
    transform: translateY(calc(-50% - 2px));
}

/* Logo: arka plan, border, yuvarlak kutu kaldırıldı; kırmızı menüye birleşik ve daha belirgin */
.yf-navbar {
    min-height: 118px !important;
}

.yf-brand {
    align-items: flex-end;
    min-width: 230px;
    margin-right: 24px;
    position: relative;
    z-index: 75;
}

.yf-brand-logo {
    width: 126px !important;
    height: 126px !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
    margin-bottom: -48px;
}

.yf-brand-logo::after {
    display: none !important;
}

.yf-brand-logo .yf-logo {
    width: 126px !important;
    height: 126px !important;
    object-fit: contain;
    filter: drop-shadow(0 18px 22px rgba(29, 24, 16, 0.32));
}

.yf-brand-text {
    padding-bottom: 9px;
}

.yf-brand-text strong {
    font-size: 30px !important;
}

.yf-brand-text small {
    font-weight: 650 !important;
}

/* Kırmızı menü logo ile görsel olarak birleşsin */
.yf-menu-strip {
    position: relative;
    z-index: 60;
}

.yf-menu-strip-inner {
    min-height: 70px !important;
}

.yf-strip-nav .nav-link {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
    font-weight: 750 !important;
}

/* Dropdown ve branş alt linkleri aynı temada kalır */
.yf-branch-menu-title {
    font-weight: 650 !important;
}

.yf-branch-menu-sub a {
    font-weight: 750 !important;
}

/* Footer'a dokunma: sadece eklenen sosyal ikonların mevcut tasarımla aynı görünmesini garanti eder */
.yf-footer-social a {
    flex: 0 0 auto;
}

/* Mobil ve tablet dengesi */
@media (max-width: 1399.98px) {
    .yf-header-actions {
        padding-left: 190px;
        padding-right: 190px;
    }

    .yf-search-box {
        width: min(560px, 48vw) !important;
    }

    .yf-header-actions .yf-btn-primary {
        right: 32px;
    }

    .yf-brand-logo {
        width: 116px !important;
        height: 116px !important;
        margin-bottom: -43px;
    }

    .yf-brand-logo .yf-logo {
        width: 116px !important;
        height: 116px !important;
    }

    .yf-menu-strip-inner {
        padding-left: 142px;
    }
}

@media (max-width: 1199.98px) {
    .yf-navbar {
        min-height: 86px !important;
    }

    .yf-header-actions {
        padding-left: 0;
        padding-right: 0;
    }

    .yf-search-box {
        width: 100% !important;
    }

    .yf-header-actions .yf-btn-primary {
        position: static;
        transform: none;
    }

    .yf-header-actions .yf-btn-primary:hover {
        transform: translateY(-2px);
    }

    .yf-brand-logo {
        width: 72px !important;
        height: 72px !important;
        margin-bottom: 0;
    }

    .yf-brand-logo .yf-logo {
        width: 72px !important;
        height: 72px !important;
    }

    .yf-mobile-logo img {
        width: 66px !important;
        height: 66px !important;
    }
}

@media (max-width: 991.98px) {
    .yf-hero-content h2 {
        font-size: clamp(36px, 8vw, 54px) !important;
    }

    .yf-section-heading h2 {
        font-size: clamp(30px, 7vw, 42px) !important;
    }

    .yf-news-card-featured .yf-news-body h3 {
        font-size: 27px !important;
    }

    .yf-brand-logo {
        width: 66px !important;
        height: 66px !important;
    }

    .yf-brand-logo .yf-logo {
        width: 66px !important;
        height: 66px !important;
    }
}

@media (max-width: 767.98px) {
    .yf-brand-logo {
        width: 60px !important;
        height: 60px !important;
    }

    .yf-brand-logo .yf-logo {
        width: 60px !important;
        height: 60px !important;
    }

    .yf-brand-text strong {
        font-size: 23px !important;
    }

    .yf-hero-content h2 {
        font-size: 34px !important;
        line-height: 1.05 !important;
    }

    .yf-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .yf-section-heading h2 {
        font-size: 32px !important;
    }

    .yf-news-body h3,
    .yf-duyuru-content h3 {
        font-size: 22px !important;
    }
}

@media (max-width: 575.98px) {
    .yf-brand-logo {
        width: 56px !important;
        height: 56px !important;
    }

    .yf-brand-logo .yf-logo {
        width: 56px !important;
        height: 56px !important;
    }

    .yf-hero-content h2 {
        font-size: 31px !important;
    }

    .yf-search-box {
        height: 52px !important;
    }

    .yf-search-input {
        height: 52px !important;
        font-size: 14px !important;
    }

    .yf-search-btn {
        width: 40px !important;
        height: 40px !important;
    }
}



h1,
h2,
h3,
h4,
h5,
h6,
.yf-section-heading h2,
.yf-section-title h2,
.yf-page-title,
.yf-hero-content h2,
.yf-news-body h3,
.yf-duyuru-title h2,
.yf-duyuru-content h3,
.yf-club-content h2,
.yf-player-info h3,
.yf-shortcut-card strong,
.yf-footer-brand h5,
.yf-footer-menu h6,
.yf-match-card-body h3,
.yf-partner-head h2,
.yf-empty-box h3 {
    font-family: var(--yf-font-title);
    font-weight: 600 !important;
    text-transform: none !important;
}

.yf-section-heading h2,
.yf-section-title h2 {
    font-size: clamp(30px, 3vw, 44px) !important;
    line-height: 1.08 !important;
}

.yf-page-title {
    font-size: clamp(34px, 4vw, 58px) !important;
    line-height: 1.05 !important;
}

.yf-section-heading span,
.yf-section-kicker,
.yf-page-kicker,
.yf-hero-kicker,
.yf-duyuru-title span,
.yf-partner-head span,
.yf-news-image span,
.yf-read-link,
.yf-more-link,
.yf-player-info span {
    font-weight: 700 !important;
    text-transform: none !important;
    letter-spacing: .4px !important;
}

/* Header scroll yapışmasın */
.yf-header {
    position: relative !important;
    top: auto !important;
    z-index: 70;
    box-shadow: none !important;
}

.yf-header-sticky {
    box-shadow: none !important;
}

.yf-header::before {
    opacity: .85;
}

/* Header üst kısım */
.yf-topbar-left,
.yf-topbar-right {
    min-height: 38px;
    font-size: 13px;
    font-weight: 500;
}

.yf-navbar {
    min-height: 132px;
    overflow: visible;
}

.yf-navbar > .yf-container {
    position: relative;
    min-height: 132px;
}

/* Logo: background, border, shadow yok */
.yf-brand {
    position: absolute;
    left: 46px;
    top: 18px;
    z-index: 80;
    min-width: 0;
    margin: 0;
    padding: 0;
}

.yf-brand-logo,
.yf-footer-logo,
.yf-mobile-logo img {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

.yf-brand-logo {
    width: 160px !important;
    height: 160px !important;
}

.yf-brand-logo::after {
    display: none !important;
}

.yf-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.yf-brand-text {
    display: none !important;
}

/* Header arama ve buton yerleşimi */
.yf-header-actions {
    position: relative;
    width: 100%;
    min-height: 132px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yf-search-box {
    width: min(680px, 44vw) !important;
    height: 50px !important;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 44px rgba(29, 24, 16, .16);
}

.yf-search-input {
    height: 50px;
    padding: 0 76px 0 28px;
    font-size: 14px;
    font-weight: 600;
}

.yf-header-actions > .yf-btn {
    position: absolute;
    right: 0;
    top: 50%;
    min-height: 54px;
    padding: 15px 28px;
    transform: translateY(-50%);
}

.yf-header-actions > .yf-btn:hover {
    transform: translateY(calc(-50% - 2px));
}

/* Kırmızı menü */
.yf-menu-strip {
    position: relative;
    z-index: 50;
    background: linear-gradient(90deg, var(--yf-red-dark) 0%, var(--yf-red) 42%, #9B7940 100%) !important;
    box-shadow: none !important;
}

.yf-menu-strip-inner {
    min-height: 76px;
}

.yf-strip-nav {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 6px;
}

.yf-strip-nav .nav-link {
    padding: 27px 15px !important;
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 700 !important;
    text-transform: none !important;
    letter-spacing: .1px;
}

.yf-strip-nav .nav-link::before {
    bottom: 18px;
    height: 2px;
    background: #ffffff;
}

.yf-dropdown .dropdown-item {
    font-weight: 600 !important;
    text-transform: none !important;
}

.yf-branch-menu-dropdown {
    min-width: 190px;
    max-height: 520px;
    overflow-y: auto;
}

.yf-branch-menu-item {
    padding: 4px 0 8px;
    border-bottom: 1px solid rgba(29, 24, 16, 0.08);
}

.yf-branch-menu-item:last-child {
    border-bottom: 0;
}

.yf-branch-menu-title {
    font-size: 17px !important;
}

.yf-branch-menu-sub {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 12px 6px;
}

.yf-branch-menu-sub a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--yf-red);
    background: rgba(200, 174, 114, 0.09);
    font-size: 12px;
    font-weight: 700;
}

.yf-branch-menu-sub a:hover {
    color: #ffffff;
    background: var(--yf-red);
}

/* Slider sade tasarım */
.yf-hero-carousel,
.yf-hero-carousel .carousel-inner,
.yf-hero-carousel .carousel-item,
.yf-hero-slide,
.min-vh-yf-hero {
    min-height: 680px !important;
}

.min-vh-yf-hero {
    padding-top: 86px !important;
    padding-bottom: 92px !important;
}

.yf-hero-overlay {
    background:
        linear-gradient(90deg, rgba(23, 19, 13, 0.94) 0%, rgba(29, 24, 16, 0.82) 52%, rgba(29, 24, 16, 0.64) 100%),
        linear-gradient(180deg, rgba(29, 24, 16, 0.20) 0%, rgba(29, 24, 16, 0.86) 100%) !important;
}

.yf-hero-light,
.yf-hero-stats,
.yf-match-card-head,
.yf-match-card-body h3,
.yf-match-card-body p,
.yf-match-mini-list {
    display: none !important;
}

.yf-hero-content {
    max-width: 760px;
}

.yf-hero-content h2 {
    max-width: 760px;
    font-size: clamp(42px, 5.2vw, 76px) !important;
    line-height: 1.02 !important;
    font-weight: 600 !important;
    text-transform: none !important;
}

.yf-hero-content p {
    max-width: 650px;
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.65;
    font-weight: 400;
}

.yf-hero-kicker {
    margin-bottom: 18px;
    font-size: 14px;
}

.yf-hero-kicker span {
    width: 42px;
    height: 3px;
}

.yf-hero-match-card {
    max-width: 620px !important;
    margin-left: auto;
    background: transparent !important;
    border: 0 !important;
    border-radius: 28px !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    overflow: visible;
}

.yf-match-card-body {
    padding: 0 !important;
}

.yf-match-logo,
.yf-hero-news-image {
    display: block !important;
    width: 100% !important;
    height: 390px !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 26px !important;
    background: transparent !important;
    border: 1px solid rgb(200 174 114 / 32%) !important;
    box-shadow: 0 14px 62px rgb(200 174 114) !important;
    overflow: hidden;
}

.yf-match-logo img,
.yf-hero-news-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Slider altındaki kısa yol alanı */
.yf-home-shortcuts {
    margin-top: 0 !important;
    padding: 46px 0 !important;
    background: #F4F1EA;
}

.yf-shortcut-card {
    min-height: 92px;
    padding: 22px 24px;
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(29, 24, 16, 0.08);
}

.yf-shortcut-card::after {
    width: 72px;
    height: 72px;
    right: -24px;
    top: -24px;
}

.yf-shortcut-icon {
    width: 54px;
    height: 54px;
    border-radius: 17px;
}

.yf-shortcut-icon i {
    font-size: 24px;
}

.yf-shortcut-card strong {
    font-size: 25px !important;
    font-weight: 600 !important;
    text-transform: none !important;
}

.yf-shortcut-card small {
    font-size: 13px;
    font-weight: 600;
}

/* Haberler: 3'er 3'er */
.yf-home-news {
    background: #F4F1EA;
}

.yf-home-news .row > [class*="col-"] {
    flex: 0 0 33.333333% !important;
    max-width: 33.333333% !important;
}

.yf-news-card,
.yf-news-card-featured {
    border-radius: 22px;
    box-shadow: 0 14px 36px rgba(29, 24, 16, 0.08);
}

.yf-news-image,
.yf-news-card-featured .yf-news-image {
    height: 260px !important;
}

.yf-news-body,
.yf-news-card-featured .yf-news-body {
    padding: 22px;
}

.yf-news-body h3,
.yf-news-card-featured .yf-news-body h3 {
    font-size: 24px !important;
    font-weight: 600 !important;
    line-height: 1.14 !important;
    text-transform: none !important;
}

.yf-news-body p {
    font-weight: 400;
}

/* Kulüp alanı sade */
.yf-club-content h2 {
    font-size: clamp(32px, 3.4vw, 48px) !important;
    line-height: 1.08 !important;
}

.yf-club-list div {
    font-weight: 600;
}

/* Duyurular sade */
.yf-home-duyuru {
    color: var(--yf-navy);
    background: #ffffff !important;
}

.yf-duyuru-title span {
    color: var(--yf-red);
}

.yf-duyuru-title h2 {
    color: var(--yf-navy) !important;
    font-size: clamp(32px, 3.6vw, 50px) !important;
    line-height: 1.08 !important;
}

.yf-duyuru-title p {
    color: #70685C;
}

.yf-duyuru-item {
    color: var(--yf-navy) !important;
    background: #F7F4EE;
    border: 1px solid rgba(29, 24, 16, 0.08);
    border-radius: 20px;
    backdrop-filter: none;
}

.yf-duyuru-item:hover {
    color: var(--yf-navy) !important;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(29, 24, 16, 0.08);
    transform: translateX(4px);
}

.yf-duyuru-content h3 {
    color: var(--yf-navy) !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    line-height: 1.18 !important;
    text-transform: none !important;
}

.yf-duyuru-content p {
    color: #70685C;
}

.yf-duyuru-item > i {
    color: var(--yf-red);
}

/* Oyuncular sade */
.yf-home-players {
    background: #262017 !important;
}

.yf-home-players::before {
    opacity: .55;
}

.yf-player-card {
    border-radius: 24px;
}

.yf-player-photo {
    height: 310px;
}

.yf-player-info span {
    font-weight: 600 !important;
    text-transform: none !important;
}

.yf-player-info h3,
.yf-player-info strong {
    font-size: 26px !important;
    font-weight: 600 !important;
    text-transform: none !important;
}

/* Galeri / sponsor başlıkları */
.yf-gallery-card {
    border-radius: 22px;
}

.yf-partner-head h2,
.yf-home-partners .yf-section-heading h2 {
    font-size: clamp(30px, 3vw, 44px) !important;
}

/* Her yerde logo arka plan / border / shadow temizliği */
.yf-brand-logo,
.yf-footer-logo,
.yf-mobile-logo img,
.yf-footer-logo img,
.yf-brand-logo img {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

/* Footer tasarımını koru, sadece logo kutusunu temiz tut */
.yf-footer-logo {
    width: 82px;
    height: 82px;
}

/* Responsive */
@media (max-width: 1399.98px) {
    .yf-brand {
        left: 32px;
    }

    .yf-brand-logo {
        width: 145px !important;
        height: 145px !important;
    }

    .yf-search-box {
        width: min(600px, 42vw) !important;
    }
}

@media (max-width: 1199.98px) {
    .yf-header {
        position: relative !important;
    }

    .yf-navbar,
    .yf-navbar > .yf-container,
    .yf-header-actions {
        min-height: 92px;
    }

    .yf-brand {
        position: static;
    }

    .yf-brand-logo {
        width: 86px !important;
        height: 86px !important;
    }

    .yf-header-actions {
        display: none;
    }

    .yf-menu-strip {
        display: none !important;
    }

    .yf-home-news .row > [class*="col-"] {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

@media (max-width: 991.98px) {
    .yf-hero-carousel,
    .yf-hero-carousel .carousel-inner,
    .yf-hero-carousel .carousel-item,
    .yf-hero-slide,
    .min-vh-yf-hero {
        min-height: 600px !important;
    }

    .yf-home-news .row > [class*="col-"] {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .yf-news-image,
    .yf-news-card-featured .yf-news-image {
        height: 260px !important;
    }
}

@media (max-width: 767.98px) {
    .yf-hero-content h2 {
        font-size: 40px !important;
    }

    .yf-hero-content p {
        font-size: 16px;
    }

    .yf-section-heading h2,
    .yf-duyuru-title h2,
    .yf-club-content h2 {
        font-size: 34px !important;
    }

    .yf-shortcut-card strong {
        font-size: 22px !important;
    }
}

@media (max-width: 575.98px) {
    .yf-brand-logo {
        width: 76px !important;
        height: 76px !important;
    }

    .yf-hero-content h2 {
        font-size: 34px !important;
    }
}


/* Desktop dropdown hover düzgün açılma */
@media (min-width: 1200px) {
    .yf-strip-nav .nav-item.dropdown {
        position: relative;
    }

    .yf-strip-nav .nav-item.dropdown:hover > .dropdown-menu,
    .yf-strip-nav .nav-item.dropdown:focus-within > .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .yf-strip-nav .dropdown-menu {
        display: block;
        position: absolute;
        top: calc(100% - 2px);
        left: 0;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        pointer-events: none;
        transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    }

    .yf-strip-nav .nav-item.dropdown::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 14px;
        background: transparent;
    }

    .yf-strip-nav .dropdown:hover > .nav-link {
        color: #ffffff;
    }
}

/* INDEX - Matchday kısa yol kartları */
.yf-matchday-shortcuts {
    position: relative;
    z-index: 12;
    margin-top: 0 !important;
    padding: 34px 0 58px !important;
    background:
        radial-gradient(circle at 12% 0%, rgba(200, 174, 114, .12), transparent 28%),
        linear-gradient(180deg, #F2EEE6 0%, #ffffff 100%);
}

.yf-matchday-card {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 124px;
    padding: 24px 24px;
    border-radius: 28px;
    overflow: hidden;
    color: #211B12;
    background: #ffffff;
    border: 1px solid rgba(33, 27, 18, .08);
    box-shadow: 0 22px 56px rgba(33, 27, 18, .10);
    isolation: isolate;
}

.yf-matchday-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(142, 104, 47, .96), rgba(31, 26, 18, .98));
    opacity: 0;
    transition: .28s ease;
    z-index: -2;
}

.yf-matchday-card::after {
    content: "YFK";
    position: absolute;
    right: -8px;
    bottom: -28px;
    font-family: var(--yf-font-title);
    font-size: 82px;
    font-weight: 700;
    line-height: 1;
    color: rgba(33, 27, 18, .045);
    transition: .28s ease;
    z-index: -1;
}

.yf-matchday-card:hover {
    color: #ffffff;
    transform: translateY(-7px);
    box-shadow: 0 32px 80px rgba(200, 174, 114, .24);
}

.yf-matchday-card:hover::before {
    opacity: 1;
}

.yf-matchday-card:hover::after {
    color: rgba(255, 255, 255, .08);
    transform: translateX(-8px);
}

.yf-matchday-number {
    position: absolute;
    left: 22px;
    top: 16px;
    font-family: var(--yf-font-title);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .16em;
    color: rgba(200, 174, 114, .72);
}

.yf-matchday-card:hover .yf-matchday-number {
    color: rgba(255, 255, 255, .65);
}

.yf-matchday-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    margin-right: 17px;
    border-radius: 19px;
    color: #ffffff;
    background: linear-gradient(135deg, #8E682F, #7A5826);
    box-shadow: 0 16px 34px rgba(200, 174, 114, .26);
}

.yf-matchday-icon i {
    font-size: 25px;
}

.yf-matchday-card:hover .yf-matchday-icon {
    color: #8E682F;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(29, 24, 16, .18);
}

.yf-matchday-text {
    display: block;
    padding-top: 12px;
}

.yf-matchday-text strong {
    display: block;
    margin-bottom: 4px;
    font-family: var(--yf-font-title);
    font-size: 30px;
    font-weight: 700;
    line-height: .95;
    letter-spacing: -.02em;
}

.yf-matchday-text small {
    display: block;
    color: #6F675B;
    font-size: 13px;
    font-weight: 800;
}

.yf-matchday-card:hover .yf-matchday-text small {
    color: rgba(255, 255, 255, .78);
}

.yf-matchday-arrow {
    position: absolute;
    right: 22px;
    top: 21px;
    font-size: 20px;
    color: rgba(33, 27, 18, .36);
    transition: .25s ease;
}

.yf-matchday-card:hover .yf-matchday-arrow {
    color: #ffffff;
    transform: translate(4px, -4px);
}

@media (max-width: 767.98px) {
    .yf-matchday-shortcuts {
        padding: 24px 0 38px !important;
    }

    .yf-matchday-card {
        min-height: 108px;
        padding: 22px 20px;
        border-radius: 22px;
    }

    .yf-matchday-icon {
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }

    .yf-matchday-text strong {
        font-size: 25px;
    }
}

/* INDEX - Oyuncular yeni tasarım */
.yf-squad-zone {
    position: relative;
    overflow: hidden;
    padding: 96px 0 !important;
    color: #ffffff;
    background:
        radial-gradient(circle at 8% 10%, rgba(230, 209, 151, .24), transparent 30%),
        radial-gradient(circle at 92% 18%, rgba(255, 255, 255, .08), transparent 26%),
        linear-gradient(135deg, #17130D 0%, #2A2318 46%, #211B12 100%) !important;
}

.yf-squad-zone::before {
    content: "YALOVA FK";
    position: absolute;
    left: -22px;
    top: 42px;
    font-family: var(--yf-font-title);
    font-size: clamp(90px, 12vw, 210px);
    font-weight: 700;
    line-height: .75;
    letter-spacing: .02em;
    color: rgba(255, 255, 255, .035);
    pointer-events: none;
}

.yf-squad-zone::after {
    content: "";
    position: absolute;
    right: -160px;
    bottom: -210px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    border: 78px solid rgba(255, 255, 255, .035);
    pointer-events: none;
}

.yf-squad-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 34px !important;
}

.yf-squad-card {
    position: relative;
    display: block;
    min-height: 500px;
    overflow: hidden;
    border-radius: 34px;
    color: #ffffff;
    background:
        radial-gradient(circle at 50% 18%, rgba(255, 255, 255, .12), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .045));
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 28px 80px rgba(29, 24, 16, .28);
    isolation: isolate;
}

.yf-squad-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 34%, rgba(29, 24, 16, .20) 52%, rgba(29, 24, 16, .96) 100%),
        linear-gradient(135deg, rgba(200, 174, 114, .72), transparent 42%);
    z-index: 2;
}

.yf-squad-card::after {
    content: "";
    position: absolute;
    left: -60px;
    top: -60px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(200, 174, 114, .55);
    filter: blur(30px);
    opacity: .55;
    z-index: 1;
    transition: .35s ease;
}

.yf-squad-card:hover {
    color: #ffffff;
    transform: translateY(-9px);
    box-shadow: 0 38px 100px rgba(200, 174, 114, .24);
}

.yf-squad-card:hover::after {
    opacity: .95;
    transform: scale(1.18);
}

.yf-squad-bg-text {
    position: absolute;
    right: -10px;
    top: 24px;
    z-index: 1;
    font-family: var(--yf-font-title);
    font-size: 118px;
    font-weight: 700;
    line-height: .8;
    color: rgba(255, 255, 255, .055);
}

.yf-squad-photo {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    background:
        radial-gradient(circle at 50% 18%, rgba(255, 255, 255, .22), transparent 30%),
        #30281B;
}

.yf-squad-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.01);
    transition: .45s ease;
}

.yf-squad-card:hover .yf-squad-photo img {
    transform: scale(1.08);
}

.yf-squad-foot {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 4;
    display: block;
}

.yf-squad-branch {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    max-width: 100%;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(142, 104, 47, .95);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.yf-squad-foot strong {
    display: block;
    max-width: 92%;
    color: #ffffff;
    font-family: var(--yf-font-title);
    font-size: clamp(27px, 2.15vw, 38px);
    font-weight: 800;
    line-height: .92;
    letter-spacing: -.02em;
    text-transform: uppercase;
    word-break: normal;
}

.yf-squad-foot small {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    color: rgba(255, 255, 255, .76);
    font-size: 13px;
    font-weight: 800;
}

.yf-squad-arrow {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, .11);
    border: 1px solid rgba(255, 255, 255, .16);
    backdrop-filter: blur(12px);
    transition: .25s ease;
}

.yf-squad-card:hover .yf-squad-arrow {
    color: var(--yf-red);
    background: #ffffff;
    transform: translate(4px, -4px);
}

.yf-squad-empty {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 34px;
    border-radius: 28px;
    color: #ffffff;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
}

.yf-squad-empty i {
    font-size: 34px;
    color: #E6D197;
}

.yf-squad-empty strong {
    font-family: var(--yf-font-title);
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}

.yf-squad-empty span {
    color: rgba(255, 255, 255, .70);
    font-size: 15px;
    font-weight: 700;
}

@media (max-width: 1199.98px) {
    .yf-squad-card {
        min-height: 470px;
    }
}

@media (max-width: 767.98px) {
    .yf-squad-zone {
        padding: 70px 0 !important;
    }

    .yf-squad-card {
        min-height: 460px;
        border-radius: 28px;
    }

    .yf-squad-foot strong {
        font-size: 32px;
    }
}

/* INDEX - Duyurular yeni tasarım */
.yf-announcement-zone {
    position: relative;
    overflow: hidden;
    padding: 92px 0 !important;
    background:
        radial-gradient(circle at 10% 20%, rgba(200, 174, 114, .10), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #F2EEE6 100%) !important;
}

.yf-announcement-zone::before {
    content: "";
    position: absolute;
    right: -140px;
    top: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(200, 174, 114, .08);
}

.yf-announcement-panel {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    padding: 42px;
    border-radius: 36px;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(142, 104, 47, .96), rgba(38, 32, 23, .98)),
        #211B12;
    box-shadow: 0 30px 80px rgba(33, 27, 18, .16);
}

.yf-announcement-panel::before {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -110px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 42px solid rgba(255, 255, 255, .08);
}

.yf-announcement-label {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin-bottom: 22px;
    padding: 0 14px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .17);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.yf-announcement-panel h2 {
    position: relative;
    z-index: 2;
    margin: 0 0 18px;
    font-family: var(--yf-font-title);
    font-size: clamp(42px, 4vw, 70px);
    font-weight: 800;
    line-height: .92;
    letter-spacing: -.03em;
}

.yf-announcement-panel p {
    position: relative;
    z-index: 2;
    max-width: 420px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, .76);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.7;
}

.yf-announcement-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    color: #211B12;
    background: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.yf-announcement-btn:hover {
    color: #211B12;
    transform: translateY(-3px);
}

.yf-announcement-mark {
    position: absolute;
    right: 24px;
    bottom: 10px;
    font-family: var(--yf-font-title);
    font-size: 116px;
    font-weight: 700;
    line-height: .8;
    color: rgba(255, 255, 255, .07);
}

.yf-announcement-list {
    display: grid;
    gap: 16px;
}

.yf-announcement-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 112px;
    padding: 20px 22px;
    overflow: hidden;
    border-radius: 28px;
    color: #211B12;
    background: #ffffff;
    border: 1px solid rgba(33, 27, 18, .08);
    box-shadow: 0 22px 60px rgba(33, 27, 18, .08);
}

.yf-announcement-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(142, 104, 47, .97), rgba(33, 27, 18, .98));
    opacity: 0;
    transition: .25s ease;
}

.yf-announcement-item:hover {
    color: #ffffff;
    transform: translateX(8px);
    box-shadow: 0 28px 80px rgba(200, 174, 114, .18);
}

.yf-announcement-item:hover::before {
    opacity: 1;
}

.yf-announcement-date,
.yf-announcement-content,
.yf-announcement-arrow {
    position: relative;
    z-index: 2;
}

.yf-announcement-date {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    border-radius: 22px;
    color: #ffffff;
    background: #8E682F;
}

.yf-announcement-date strong {
    font-family: var(--yf-font-title);
    font-size: 34px;
    font-weight: 700;
    line-height: .8;
}

.yf-announcement-date small {
    margin-top: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.yf-announcement-content {
    display: block;
    min-width: 0;
    flex: 1;
}

.yf-announcement-content strong {
    display: block;
    margin-bottom: 6px;
    color: inherit;
    font-family: var(--yf-font-title);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -.02em;
}

.yf-announcement-content small {
    display: block;
    color: #70685C;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.yf-announcement-item:hover .yf-announcement-content small {
    color: rgba(255, 255, 255, .72);
}

.yf-announcement-item:hover .yf-announcement-date {
    color: #8E682F;
    background: #ffffff;
}

.yf-announcement-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    color: #8E682F;
    background: rgba(200, 174, 114, .08);
    transition: .25s ease;
}

.yf-announcement-item:hover .yf-announcement-arrow {
    color: #211B12;
    background: #ffffff;
    transform: translate(4px, -4px);
}

.yf-announcement-empty {
    display: flex;
    min-height: 280px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    padding: 36px;
    border-radius: 30px;
    color: #211B12;
    background: #ffffff;
    border: 1px dashed rgba(200, 174, 114, .25);
    box-shadow: 0 22px 60px rgba(33, 27, 18, .08);
}

.yf-announcement-empty i {
    font-size: 38px;
    color: #8E682F;
}

.yf-announcement-empty strong {
    font-family: var(--yf-font-title);
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}

.yf-announcement-empty span {
    color: #70685C;
    font-size: 15px;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .yf-announcement-zone {
        padding: 72px 0 !important;
    }

    .yf-announcement-panel {
        min-height: 360px;
    }
}

@media (max-width: 575.98px) {
    .yf-announcement-panel {
        padding: 30px;
        border-radius: 28px;
    }

    .yf-announcement-item {
        align-items: flex-start;
        padding: 18px;
        border-radius: 24px;
    }

    .yf-announcement-date {
        width: 62px;
        height: 62px;
        flex-basis: 62px;
        border-radius: 18px;
    }

    .yf-announcement-date strong {
        font-size: 29px;
    }

    .yf-announcement-content strong {
        font-size: 23px;
    }

    .yf-announcement-arrow {
        display: none;
    }
}

/* INDEX - Kulüp tanıtım yeni tasarım */
.yf-club-zone {
    position: relative;
    overflow: hidden;
    padding: 100px 0 !important;
    background:
        radial-gradient(circle at 12% 12%, rgba(200, 174, 114, .12), transparent 28%),
        radial-gradient(circle at 88% 80%, rgba(33, 27, 18, .09), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #F5F2EB 100%) !important;
}

.yf-club-zone::before {
    content: "YALOVA";
    position: absolute;
    left: -18px;
    bottom: 20px;
    font-family: var(--yf-font-title);
    font-size: clamp(90px, 13vw, 220px);
    font-weight: 700;
    line-height: .75;
    color: rgba(33, 27, 18, .035);
    pointer-events: none;
}

.yf-club-stage {
    position: relative;
    min-height: 540px;
}

.yf-club-photo {
    position: relative;
    height: 540px;
    overflow: hidden;
    border-radius: 42px;
    background: #211B12;
    box-shadow: 0 34px 90px rgba(33, 27, 18, .18);
}

.yf-club-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yf-club-glass {
    position: absolute;
    left: 34px;
    bottom: 34px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 26px;
    border-radius: 26px;
    color: #ffffff;
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .22);
    backdrop-filter: blur(16px);
}

.yf-club-glass strong {
    font-family: var(--yf-font-title);
    font-size: 54px;
    font-weight: 700;
    line-height: .85;
}

.yf-club-glass span {
    max-width: 120px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.12;
    text-transform: uppercase;
}

.yf-club-mini {
    position: absolute;
    right: 8px;
    width: 156px;
    padding: 20px 18px;
    border-radius: 26px;
    color: #211B12;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(33, 27, 18, .15);
}

.yf-club-mini-one {
    top: 54px;
}

.yf-club-mini-two {
    bottom: 78px;
}

.yf-club-mini b {
    display: block;
    color: #8E682F;
    font-family: var(--yf-font-title);
    font-size: 44px;
    font-weight: 700;
    line-height: .85;
}

.yf-club-mini span {
    display: block;
    margin-top: 8px;
    color: #6F675B;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.22;
}

.yf-club-copy {
    position: relative;
    max-width: 690px;
    margin-left: auto;
}

.yf-club-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #8E682F;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.yf-club-eyebrow::before {
    content: "";
    display: block;
    width: 44px;
    height: 4px;
    border-radius: 999px;
    background: #8E682F;
}

.yf-club-copy h2 {
    margin: 0 0 22px;
    color: #211B12;
    font-family: var(--yf-font-title);
    font-size: clamp(42px, 4.5vw, 76px);
    font-weight: 800;
    line-height: .9;
    letter-spacing: -.04em;
}

.yf-club-copy p {
    max-width: 620px;
    margin: 0 0 34px;
    color: #6D6559;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.78;
}

.yf-club-feature-list {
    display: grid;
    gap: 15px;
    margin-bottom: 34px;
}

.yf-club-feature-list div {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #211B12;
    font-size: 16px;
    font-weight: 700;
}

.yf-club-feature-list i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(135deg, #8E682F, #6F4F22);
    box-shadow: 0 14px 32px rgba(200, 174, 114, .22);
}

.yf-club-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-height: 58px;
    padding: 0 28px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #8E682F, #765423);
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 20px 48px rgba(200, 174, 114, .24);
}

.yf-club-action:hover {
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 28px 64px rgba(200, 174, 114, .32);
}

@media (max-width: 991.98px) {
    .yf-club-zone {
        padding: 74px 0 !important;
    }

    .yf-club-copy {
        margin-left: 0;
    }

    .yf-club-stage {
        min-height: 440px;
    }

    .yf-club-photo {
        height: 440px;
    }
}

@media (max-width: 575.98px) {
    .yf-club-stage {
        min-height: 370px;
    }

    .yf-club-photo {
        height: 370px;
        border-radius: 30px;
    }

    .yf-club-mini {
        display: none;
    }

    .yf-club-glass {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .yf-club-copy h2 {
        font-size: 40px;
    }

    .yf-club-copy p {
        font-size: 16px;
    }
}

/* INDEX - Foto galeri yeni tasarım */
.yf-gallery-zone {
    position: relative;
    overflow: hidden;
    padding: 96px 0 !important;
    background:
        radial-gradient(circle at 12% 16%, rgba(200, 174, 114, .10), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #F4F1EA 100%) !important;
}

.yf-gallery-zone::before {
    content: "GALERİ";
    position: absolute;
    right: -12px;
    top: 44px;
    font-family: var(--yf-font-title);
    font-size: clamp(90px, 11vw, 190px);
    font-weight: 700;
    line-height: .8;
    color: rgba(33, 27, 18, .035);
    pointer-events: none;
}

.yf-gallery-heading {
    position: relative;
    z-index: 2;
}

.yf-gallery-pro-card {
    position: relative;
    display: block;
    height: 330px;
    overflow: hidden;
    border-radius: 32px;
    background: #211B12;
    box-shadow: 0 24px 70px rgba(33, 27, 18, .13);
}

.yf-gallery-pro-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .45s ease;
}

.yf-gallery-pro-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, transparent 35%, rgba(33, 27, 18, .88) 100%),
        linear-gradient(135deg, rgba(200, 174, 114, .48), transparent 46%);
    opacity: .88;
    transition: .3s ease;
}

.yf-gallery-pro-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 34px 90px rgba(200, 174, 114, .20);
}

.yf-gallery-pro-card:hover img {
    transform: scale(1.08);
}

.yf-gallery-pro-card:hover::before {
    opacity: 1;
}

.yf-gallery-pro-overlay {
    position: absolute;
    left: 24px;
    right: 80px;
    bottom: 24px;
    z-index: 3;
    display: block;
    color: #ffffff;
}

.yf-gallery-pro-overlay strong {
    display: block;
    font-family: var(--yf-font-title);
    font-size: 34px;
    font-weight: 800;
    line-height: .95;
}

.yf-gallery-pro-overlay small {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, .75);
    font-size: 13px;
    font-weight: 700;
}

.yf-gallery-pro-icon {
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #8E682F;
    background: #ffffff;
    transition: .25s ease;
}

.yf-gallery-pro-card:hover .yf-gallery-pro-icon {
    transform: rotate(8deg) scale(1.08);
}

@media (max-width: 767.98px) {
    .yf-gallery-zone {
        padding: 72px 0 !important;
    }

    .yf-gallery-pro-card {
        height: 270px;
        border-radius: 26px;
    }
}

/* INDEX - Sponsor / partner yeni tasarım */
.yf-partners-zone {
    position: relative;
    overflow: hidden;
    padding: 88px 0 !important;
    background:
        linear-gradient(135deg, #1F1A12 0%, #2A2318 48%, #211B12 100%) !important;
}

.yf-partners-zone::before {
    content: "SPONSOR";
    position: absolute;
    left: -16px;
    top: 26px;
    font-family: var(--yf-font-title);
    font-size: clamp(86px, 11vw, 186px);
    font-weight: 700;
    line-height: .78;
    color: rgba(255, 255, 255, .04);
    pointer-events: none;
}

.yf-partners-zone::after {
    content: "";
    position: absolute;
    right: -150px;
    bottom: -210px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    border: 70px solid rgba(255, 255, 255, .035);
    pointer-events: none;
}

.yf-partners-head {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin-bottom: 36px;
}

.yf-partners-head span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: #E6D197;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.yf-partners-head span::before {
    content: "";
    width: 42px;
    height: 4px;
    border-radius: 999px;
    background: #E6D197;
}

.yf-partners-head h2 {
    margin: 0;
    color: #ffffff;
    font-family: var(--yf-font-title);
    font-size: clamp(42px, 4vw, 68px);
    font-weight: 800;
    line-height: .92;
    letter-spacing: -.035em;
}

.yf-partners-shell {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    padding: 18px;
    border-radius: 34px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 30px 90px rgba(29, 24, 16, .24);
}

.yf-partners-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 118px;
    padding: 22px;
    border-radius: 24px;
    background: #ffffff;
    overflow: hidden;
}


.yf-partners-logo img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

@media (max-width: 1199.98px) {
    .yf-partners-shell {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .yf-partners-zone {
        padding: 70px 0 !important;
    }

    .yf-partners-shell {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-radius: 26px;
    }

    .yf-partners-logo {
        min-height: 102px;
        border-radius: 20px;
    }
}


/* KURUMSAL SAYFA - TEMİZ KULÜP ŞABLONU */
.yf-clubpage-hero {
    position: relative;
    overflow: hidden;
    padding: 128px 0 105px;
    color: #ffffff;
    background:
        radial-gradient(circle at 12% 12%, rgba(200, 174, 114, .30), transparent 30%),
        linear-gradient(135deg, #17130D 0%, #2A2318 54%, #211B12 100%);
}

.yf-clubpage-hero::before {
    content: "YALOVA FK";
    position: absolute;
    right: -18px;
    bottom: -22px;
    font-family: var(--yf-font-title);
    font-size: clamp(92px, 14vw, 230px);
    font-weight: 700;
    line-height: .72;
    color: rgba(255, 255, 255, .045);
    pointer-events: none;
}

.yf-clubpage-hero-text {
    position: relative;
    z-index: 2;
}

.yf-clubpage-hero-text span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #E6D197;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.yf-clubpage-hero-text span::before {
    content: "";
    width: 44px;
    height: 4px;
    border-radius: 99px;
    background: #E6D197;
}

.yf-clubpage-hero-text h1 {
    margin: 0 0 24px;
    font-family: var(--yf-font-title);
    font-size: clamp(58px, 7vw, 118px);
    font-weight: 700;
    line-height: .82;
    letter-spacing: -.055em;
}

.yf-clubpage-hero-text p {
    max-width: 730px;
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.72;
}

.yf-clubpage-year {
    position: relative;
    z-index: 2;
    margin-left: auto;
    max-width: 310px;
    padding: 36px;
    border-radius: 38px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .16);
    backdrop-filter: blur(14px);
}

.yf-clubpage-year strong {
    display: block;
    font-family: var(--yf-font-title);
    font-size: 88px;
    font-weight: 700;
    line-height: .78;
}

.yf-clubpage-year small {
    display: block;
    margin-top: 16px;
    color: rgba(255, 255, 255, .74);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.yf-clubpage-main {
    position: relative;
    overflow: hidden;
    padding: 105px 0;
    background:
        radial-gradient(circle at 8% 18%, rgba(200, 174, 114, .10), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #F5F2EB 100%);
}

.yf-clubpage-photo {
    position: sticky;
    top: 30px;
    min-height: 590px;
    overflow: hidden;
    border-radius: 42px;
    background: #211B12;
    box-shadow: 0 34px 90px rgba(33, 27, 18, .18);
}

.yf-clubpage-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 30%, rgba(33, 27, 18, .82) 100%),
        linear-gradient(135deg, rgba(200, 174, 114, .38), transparent 46%);
}

.yf-clubpage-photo img {
    width: 100%;
    height: 100%;
    min-height: 590px;
    object-fit: cover;
    opacity: .84;
}

.yf-clubpage-content {
    padding: 8px 0 0;
}

.yf-clubpage-content h2,
.yf-clubpage-content h3 {
    margin: 0 0 28px;
    color: #211B12;
    font-family: var(--yf-font-title);
    font-size: clamp(42px, 4.6vw, 78px);
    font-weight: 700;
    line-height: .88;
    letter-spacing: -.045em;
}

.yf-clubpage-content p {
    margin: 0 0 25px;
    color: #625B50;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.92;
}

.yf-clubpage-content p:first-of-type {
    color: #514B42;
    font-size: 19px;
}

.yf-clubpage-content strong,
.yf-clubpage-content b {
    color: #211B12;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .yf-clubpage-hero {
        padding: 95px 0 76px;
    }

    .yf-clubpage-year {
        margin-left: 0;
    }

    .yf-clubpage-main {
        padding: 74px 0;
    }

    .yf-clubpage-photo {
        position: relative;
        top: auto;
        min-height: 430px;
    }

    .yf-clubpage-photo img {
        min-height: 430px;
    }
}

@media (max-width: 575.98px) {
    .yf-clubpage-hero-text h1 {
        font-size: 56px;
    }

    .yf-clubpage-hero-text p {
        font-size: 17px;
    }

    .yf-clubpage-year {
        padding: 28px;
        border-radius: 28px;
    }

    .yf-clubpage-year strong {
        font-size: 64px;
    }

    .yf-clubpage-photo {
        min-height: 360px;
        border-radius: 30px;
    }

    .yf-clubpage-photo img {
        min-height: 360px;
    }

    .yf-clubpage-content h2,
    .yf-clubpage-content h3 {
        font-size: 40px;
    }

    .yf-clubpage-content p,
    .yf-clubpage-content p:first-of-type {
        font-size: 16px;
    }
}
/* BAŞKANIN MESAJI SAYFASI */
.yf-president-hero {
    position: relative;
    overflow: hidden;
    padding: 126px 0 96px;
    color: #ffffff;
    background:
        radial-gradient(circle at 12% 12%, rgba(200, 174, 114, .30), transparent 30%),
        linear-gradient(135deg, #17130D 0%, #2A2318 54%, #211B12 100%);
}

.yf-president-hero::before {
    content: "YALOVA FK";
    position: absolute;
    right: -18px;
    bottom: -22px;
    font-family: var(--yf-font-title);
    font-size: clamp(92px, 14vw, 230px);
    font-weight: 700;
    line-height: .72;
    color: rgba(255, 255, 255, .045);
    pointer-events: none;
}

.yf-president-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.yf-president-hero-copy span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #E6D197;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.yf-president-hero-copy span::before {
    content: "";
    width: 44px;
    height: 4px;
    border-radius: 99px;
    background: #E6D197;
}

.yf-president-hero-copy h1 {
    margin: 0 0 24px;
    font-family: var(--yf-font-title);
    font-size: clamp(58px, 7vw, 118px);
    font-weight: 700;
    line-height: .82;
    letter-spacing: -.055em;
}

.yf-president-hero-copy p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.72;
}

.yf-president-sign {
    position: relative;
    z-index: 2;
    margin-left: auto;
    max-width: 300px;
    padding: 36px;
    border-radius: 38px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .16);
    backdrop-filter: blur(14px);
}

.yf-president-sign strong {
    display: block;
    font-family: var(--yf-font-title);
    font-size: 86px;
    font-weight: 700;
    line-height: .78;
}

.yf-president-sign small {
    display: block;
    margin-top: 16px;
    color: rgba(255, 255, 255, .74);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.yf-president-page {
    position: relative;
    overflow: hidden;
    padding: 105px 0;
    background:
        radial-gradient(circle at 8% 18%, rgba(200, 174, 114, .10), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #F5F2EB 100%);
}

.yf-president-visual {
    position: sticky;
    top: 30px;
    min-height: 590px;
    overflow: hidden;
    border-radius: 42px;
    background: #211B12;
    box-shadow: 0 34px 90px rgba(33, 27, 18, .18);
}

.yf-president-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 30%, rgba(33, 27, 18, .82) 100%),
        linear-gradient(135deg, rgba(200, 174, 114, .38), transparent 46%);
}

.yf-president-visual img {
    width: 100%;
    height: 100%;
    min-height: 590px;
    object-fit: cover;
    opacity: .84;
}

.yf-president-caption {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    z-index: 2;
    padding: 24px;
    border-radius: 26px;
    color: #ffffff;
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .22);
    backdrop-filter: blur(16px);
}

.yf-president-caption strong {
    display: block;
    font-family: var(--yf-font-title);
    font-size: 38px;
    font-weight: 700;
    line-height: .95;
}

.yf-president-caption span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, .76);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.yf-president-content {
    padding: 8px 0 0;
}

.yf-president-content h2,
.yf-president-content h3 {
    margin: 0 0 28px;
    color: #211B12;
    font-family: var(--yf-font-title);
    font-size: clamp(40px, 4.3vw, 72px);
    font-weight: 700;
    line-height: .9;
    letter-spacing: -.045em;
}

.yf-president-content p {
    margin: 0 0 25px;
    color: #625B50;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.92;
}

.yf-president-content p:first-of-type {
    color: #514B42;
    font-size: 19px;
}

.yf-president-content strong,
.yf-president-content b {
    color: #211B12;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .yf-president-hero {
        padding: 95px 0 76px;
    }

    .yf-president-sign {
        margin-left: 0;
    }

    .yf-president-page {
        padding: 74px 0;
    }

    .yf-president-visual {
        position: relative;
        top: auto;
        min-height: 430px;
    }

    .yf-president-visual img {
        min-height: 430px;
    }
}

@media (max-width: 575.98px) {
    .yf-president-hero-copy h1 {
        font-size: 54px;
    }

    .yf-president-hero-copy p {
        font-size: 17px;
    }

    .yf-president-sign {
        padding: 28px;
        border-radius: 28px;
    }

    .yf-president-sign strong {
        font-size: 64px;
    }

    .yf-president-visual {
        min-height: 360px;
        border-radius: 30px;
    }

    .yf-president-visual img {
        min-height: 360px;
    }

    .yf-president-content h2,
    .yf-president-content h3 {
        font-size: 38px;
    }

    .yf-president-content p,
    .yf-president-content p:first-of-type {
        font-size: 16px;
    }
}

/* YÖNETİM KURULU SAYFASI */
.yf-board-hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0 86px;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(23, 19, 13, .96), rgba(36, 28, 18, .96)),
        url("/assets/images/yalova-fk-hero.jpg") center/cover no-repeat;
}

.yf-board-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(200, 174, 114, .28), transparent 58%);
}

.yf-board-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 880px;
}

.yf-board-hero-inner span {
    display: block;
    margin-bottom: 14px;
    color: #E6D197;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.yf-board-hero-inner h1 {
    margin: 0 0 20px;
    font-family: var(--yf-font-title);
    font-size: clamp(54px, 7vw, 110px);
    font-weight: 700;
    line-height: .86;
    letter-spacing: -.05em;
}

.yf-board-hero-inner p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.7;
}

.yf-board-page {
    padding: 94px 0;
    background: linear-gradient(180deg, #ffffff 0%, #F4F1EA 100%);
}

.yf-board-card {
    height: 100%;
    overflow: hidden;
    border-radius: 34px;
    background: #ffffff;
    border: 1px solid rgba(33, 27, 18, .08);
    box-shadow: 0 24px 70px rgba(33, 27, 18, .09);
    transition: .28s ease;
}

.yf-board-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 34px 90px rgba(200, 174, 114, .15);
}

.yf-board-photo {
    height: 390px;
    overflow: hidden;
    background: #211B12;
}

.yf-board-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: .42s ease;
}

.yf-board-card:hover .yf-board-photo img {
    transform: scale(1.06);
}

.yf-board-body {
    padding: 28px;
}

.yf-board-body span {
    display: block;
    margin-bottom: 12px;
    color: #8E682F;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.yf-board-body h2 {
    margin: 0 0 16px;
    color: #211B12;
    font-family: var(--yf-font-title);
    font-size: 38px;
    font-weight: 700;
    line-height: .94;
    letter-spacing: -.035em;
}

.yf-board-body p {
    margin: 0;
    color: #6C6458;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.75;
}

.yf-board-empty {
    padding: 34px;
    border-radius: 28px;
    color: #211B12;
    background: #ffffff;
    border: 1px solid rgba(33, 27, 18, .08);
    box-shadow: 0 24px 70px rgba(33, 27, 18, .08);
    font-size: 17px;
    font-weight: 800;
}

@media (max-width: 991.98px) {
    .yf-board-hero {
        padding: 92px 0 70px;
    }

    .yf-board-page {
        padding: 72px 0;
    }

    .yf-board-photo {
        height: 350px;
    }
}

@media (max-width: 575.98px) {
    .yf-board-hero-inner h1 {
        font-size: 52px;
    }

    .yf-board-hero-inner p {
        font-size: 16px;
    }

    .yf-board-photo {
        height: 330px;
    }

    .yf-board-body h2 {
        font-size: 32px;
    }
}

/* KURUMSAL KİMLİK - TABLO SAYFASI */
.yf-identity-hero {
    position: relative;
    overflow: hidden;
    padding: 112px 0 78px;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(23, 19, 13, .96), rgba(36, 28, 18, .96)),
        url("/assets/images/yalova-fk-hero.jpg") center/cover no-repeat;
}

.yf-identity-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(200, 174, 114, .28), transparent 60%);
}

.yf-identity-hero-text {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.yf-identity-hero-text span {
    display: block;
    margin-bottom: 14px;
    color: #E6D197;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.yf-identity-hero-text h1 {
    margin: 0 0 20px;
    font-family: var(--yf-font-title);
    font-size: clamp(52px, 7vw, 105px);
    font-weight: 700;
    line-height: .86;
    letter-spacing: -.05em;
}

.yf-identity-hero-text p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.7;
}

.yf-identity-page {
    padding: 82px 0;
    background: linear-gradient(180deg, #ffffff 0%, #F4F1EA 100%);
}

.yf-identity-table-wrap {
    overflow: hidden;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(33, 27, 18, .08);
    box-shadow: 0 24px 70px rgba(33, 27, 18, .08);
}

.yf-identity-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
}

.yf-identity-table thead {
    background: #211B12;
}

.yf-identity-table th {
    padding: 22px 26px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.yf-identity-table td {
    padding: 22px 26px;
    color: #625B50;
    font-size: 15px;
    font-weight: 700;
    border-bottom: 1px solid rgba(33, 27, 18, .07);
    vertical-align: middle;
}

.yf-identity-table tbody tr:last-child td {
    border-bottom: 0;
}

.yf-identity-table tbody tr {
    transition: .22s ease;
}

.yf-identity-table tbody tr:hover {
    background: #FAF8F3;
}

.yf-identity-id {
    width: 90px;
    color: #8E682F !important;
    font-weight: 900 !important;
    white-space: nowrap;
}

.yf-identity-table td strong {
    display: block;
    color: #211B12;
    font-family: var(--yf-font-title);
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
}

.yf-identity-filetype {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 0 13px;
    border-radius: 999px;
    color: #211B12;
    background: #EDE8DF;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.yf-identity-filetype i {
    color: #8E682F;
    font-size: 17px;
}

.yf-identity-table-action {
    width: 170px;
    text-align: right;
}

.yf-identity-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #8E682F, #6F4F22);
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 14px 34px rgba(200, 174, 114, .18);
}

.yf-identity-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 20px 46px rgba(200, 174, 114, .26);
}

.yf-identity-empty {
    padding: 30px;
    border-radius: 24px;
    color: #211B12;
    background: #ffffff;
    border: 1px solid rgba(33, 27, 18, .08);
    box-shadow: 0 24px 70px rgba(33, 27, 18, .08);
    font-size: 16px;
    font-weight: 800;
}

@media (max-width: 767.98px) {
    .yf-identity-page {
        padding: 62px 0;
    }

    .yf-identity-table-wrap {
        overflow-x: auto;
    }

    .yf-identity-table {
        min-width: 680px;
    }
}

/* OYUNCULAR SAYFASI */
.yf-player-list-hero {
    position: relative;
    overflow: hidden;
    padding: 118px 0 84px;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(23, 19, 13, .96), rgba(36, 28, 18, .96)),
        url("/assets/images/yalova-fk-hero.jpg") center/cover no-repeat;
}

.yf-player-list-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(200, 174, 114, .28), transparent 62%);
}

.yf-player-list-hero-text {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.yf-player-list-hero-text span {
    display: block;
    margin-bottom: 14px;
    color: #E6D197;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.yf-player-list-hero-text h1 {
    margin: 0 0 20px;
    font-family: var(--yf-font-title);
    font-size: clamp(56px, 7vw, 112px);
    font-weight: 700;
    line-height: .86;
    letter-spacing: -.05em;
}

.yf-player-list-hero-text p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.7;
}

.yf-player-list-page {
    padding: 88px 0;
    background:
        radial-gradient(circle at 8% 18%, rgba(200, 174, 114, .09), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #F4F1EA 100%);
}

.yf-player-list-card {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 500px;
    border-radius: 34px;
    color: #ffffff;
    background: #211B12;
    box-shadow: 0 24px 70px rgba(33, 27, 18, .11);
}

.yf-player-list-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, transparent 34%, rgba(33, 27, 18, .20) 52%, rgba(33, 27, 18, .96) 100%),
        linear-gradient(135deg, rgba(200, 174, 114, .58), transparent 46%);
}

.yf-player-list-card:hover {
    color: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 34px 90px rgba(200, 174, 114, .18);
}

.yf-player-list-photo {
    position: absolute;
    inset: 0;
    display: block;
    z-index: 1;
}

.yf-player-list-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: .42s ease;
}

.yf-player-list-card:hover .yf-player-list-photo img {
    transform: scale(1.06);
}

.yf-player-list-info {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 3;
    display: block;
}

.yf-player-list-branch {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    max-width: 100%;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(142, 104, 47, .95);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.yf-player-list-info strong {
    display: block;
    max-width: 92%;
    color: #ffffff;
    font-family: var(--yf-font-title);
    font-size: clamp(29px, 2.35vw, 40px);
    font-weight: 700;
    line-height: .92;
    letter-spacing: -.03em;
    text-transform: uppercase;
}

.yf-player-list-info small {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    font-weight: 800;
}

.yf-player-list-empty {
    padding: 30px;
    border-radius: 24px;
    color: #211B12;
    background: #ffffff;
    border: 1px solid rgba(33, 27, 18, .08);
    box-shadow: 0 24px 70px rgba(33, 27, 18, .08);
    font-size: 16px;
    font-weight: 800;
}

@media (max-width: 991.98px) {
    .yf-player-list-hero {
        padding: 92px 0 70px;
    }

    .yf-player-list-page {
        padding: 68px 0;
    }

    .yf-player-list-card {
        min-height: 470px;
    }
}

@media (max-width: 575.98px) {
    .yf-player-list-hero-text h1 {
        font-size: 54px;
    }

    .yf-player-list-hero-text p {
        font-size: 16px;
    }

    .yf-player-list-card {
        min-height: 455px;
        border-radius: 28px;
    }

    .yf-player-list-info strong {
        font-size: 32px;
    }
}


/* ANTRENÖR / TEKNİK EKİP SAYFASI */
.yf-coach-hero {
    position: relative;
    overflow: hidden;
    padding: 118px 0 84px;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(23, 19, 13, .96), rgba(36, 28, 18, .96)),
        url("/assets/images/yalova-fk-hero.jpg") center/cover no-repeat;
}

.yf-coach-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(200, 174, 114, .28), transparent 62%);
}

.yf-coach-hero-text {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.yf-coach-hero-text span {
    display: block;
    margin-bottom: 14px;
    color: #E6D197;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.yf-coach-hero-text h1 {
    margin: 0 0 20px;
    font-family: var(--yf-font-title);
    font-size: clamp(56px, 7vw, 112px);
    font-weight: 700;
    line-height: .86;
    letter-spacing: -.05em;
}

.yf-coach-hero-text p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.7;
}

.yf-coach-page {
    padding: 88px 0;
    background:
        radial-gradient(circle at 8% 18%, rgba(200, 174, 114, .09), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #F4F1EA 100%);
}

.yf-coach-card {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 500px;
    border-radius: 34px;
    color: #ffffff;
    background: #211B12;
    box-shadow: 0 24px 70px rgba(33, 27, 18, .11);
}

.yf-coach-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, transparent 34%, rgba(33, 27, 18, .20) 52%, rgba(33, 27, 18, .96) 100%),
        linear-gradient(135deg, rgba(200, 174, 114, .58), transparent 46%);
}

.yf-coach-card:hover {
    color: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 34px 90px rgba(200, 174, 114, .18);
}

.yf-coach-photo {
    position: absolute;
    inset: 0;
    display: block;
    z-index: 1;
}

.yf-coach-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: .42s ease;
}

.yf-coach-card:hover .yf-coach-photo img {
    transform: scale(1.06);
}

.yf-coach-info {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 3;
    display: block;
}

.yf-coach-branch {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    max-width: 100%;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(142, 104, 47, .95);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.yf-coach-info strong {
    display: block;
    max-width: 92%;
    color: #ffffff;
    font-family: var(--yf-font-title);
    font-size: clamp(29px, 2.35vw, 40px);
    font-weight: 700;
    line-height: .92;
    letter-spacing: -.03em;
    text-transform: uppercase;
}

.yf-coach-info small {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    font-weight: 800;
}

.yf-coach-empty {
    padding: 30px;
    border-radius: 24px;
    color: #211B12;
    background: #ffffff;
    border: 1px solid rgba(33, 27, 18, .08);
    box-shadow: 0 24px 70px rgba(33, 27, 18, .08);
    font-size: 16px;
    font-weight: 800;
}

@media (max-width: 991.98px) {
    .yf-coach-hero {
        padding: 92px 0 70px;
    }

    .yf-coach-page {
        padding: 68px 0;
    }

    .yf-coach-card {
        min-height: 470px;
    }
}

@media (max-width: 575.98px) {
    .yf-coach-hero-text h1 {
        font-size: 54px;
    }

    .yf-coach-hero-text p {
        font-size: 16px;
    }

    .yf-coach-card {
        min-height: 455px;
        border-radius: 28px;
    }

    .yf-coach-info strong {
        font-size: 32px;
    }
}

/* TESİSLER LİSTE */
.yf-facility-list-page {
    padding: 88px 0;
    background:
        radial-gradient(circle at 8% 18%, rgba(200, 174, 114, .09), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #F4F1EA 100%);
}

.yf-facility-card {
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: 32px;
    color: #211B12;
    background: #ffffff;
    border: 1px solid rgba(33, 27, 18, .08);
    box-shadow: 0 24px 70px rgba(33, 27, 18, .09);
    transition: .28s ease;
}

.yf-facility-card:hover {
    color: #211B12;
    transform: translateY(-8px);
    box-shadow: 0 34px 90px rgba(200, 174, 114, .15);
}

.yf-facility-card-image {
    display: block;
    height: 285px;
    overflow: hidden;
    background: #211B12;
}

.yf-facility-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .42s ease;
}

.yf-facility-card:hover .yf-facility-card-image img {
    transform: scale(1.06);
}

.yf-facility-card-content {
    display: block;
    padding: 28px;
}

.yf-facility-card-content strong {
    display: block;
    margin-bottom: 12px;
    color: #211B12;
    font-family: var(--yf-font-title);
    font-size: 34px;
    font-weight: 700;
    line-height: .95;
    letter-spacing: -.035em;
}

.yf-facility-card-content small {
    display: block;
    min-height: 54px;
    margin-bottom: 20px;
    color: #6C6458;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.7;
}

.yf-facility-card-content em {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #8E682F, #6F4F22);
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
}

.yf-facility-empty {
    padding: 30px;
    border-radius: 24px;
    color: #211B12;
    background: #ffffff;
    border: 1px solid rgba(33, 27, 18, .08);
    box-shadow: 0 24px 70px rgba(33, 27, 18, .08);
    font-size: 16px;
    font-weight: 800;
}

/* TESİS DETAY */
.yf-facility-detail-page {
    padding: 92px 0;
    background:
        radial-gradient(circle at 8% 18%, rgba(200, 174, 114, .09), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #F4F1EA 100%);
}

.yf-facility-detail-image {
    position: sticky;
    top: 30px;
    overflow: hidden;
    min-height: 560px;
    border-radius: 38px;
    background: #211B12;
    box-shadow: 0 28px 80px rgba(33, 27, 18, .14);
}

.yf-facility-detail-image img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
}

.yf-facility-detail-content {
    padding-top: 8px;
}

.yf-facility-detail-content h2 {
    margin: 0 0 28px;
    color: #211B12;
    font-family: var(--yf-font-title);
    font-size: clamp(42px, 4.5vw, 78px);
    font-weight: 700;
    line-height: .88;
    letter-spacing: -.045em;
}

.yf-facility-detail-text p {
    margin: 0 0 24px;
    color: #625B50;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.9;
}

.yf-facility-contact {
    display: grid;
    gap: 14px;
    margin-top: 34px;
}

.yf-facility-contact div {
    padding: 22px 24px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(33, 27, 18, .08);
    box-shadow: 0 18px 50px rgba(33, 27, 18, .07);
}

.yf-facility-contact span {
    display: block;
    margin-bottom: 8px;
    color: #8E682F;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.yf-facility-contact strong {
    display: block;
    color: #211B12;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.5;
}

@media (max-width: 991.98px) {
    .yf-facility-list-page,
    .yf-facility-detail-page {
        padding: 68px 0;
    }

    .yf-facility-detail-image {
        position: relative;
        top: auto;
        min-height: 420px;
    }

    .yf-facility-detail-image img {
        min-height: 420px;
    }
}

@media (max-width: 575.98px) {
    .yf-facility-card-image {
        height: 240px;
    }

    .yf-facility-card-content strong {
        font-size: 30px;
    }

    .yf-facility-detail-image {
        min-height: 330px;
        border-radius: 28px;
    }

    .yf-facility-detail-image img {
        min-height: 330px;
    }

    .yf-facility-detail-content h2 {
        font-size: 38px;
    }

    .yf-facility-detail-text p {
        font-size: 16px;
    }
}

/* HABERLER LİSTE */
.yf-news-list-page {
    padding: 88px 0;
    background:
        radial-gradient(circle at 8% 18%, rgba(200, 174, 114, .09), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #F4F1EA 100%);
}

.yf-news-list-card {
    height: 100%;
    overflow: hidden;
    border-radius: 32px;
    background: #ffffff;
    border: 1px solid rgba(33, 27, 18, .08);
    box-shadow: 0 24px 70px rgba(33, 27, 18, .09);
    transition: .28s ease;
}

.yf-news-list-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 34px 90px rgba(200, 174, 114, .15);
}

.yf-news-list-image {
    display: block;
    height: 285px;
    overflow: hidden;
    background: #211B12;
}

.yf-news-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .42s ease;
}

.yf-news-list-card:hover .yf-news-list-image img {
    transform: scale(1.06);
}

.yf-news-list-content {
    padding: 28px;
}

.yf-news-list-content > span {
    display: block;
    margin-bottom: 14px;
    color: #8E682F;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.yf-news-list-content h2 {
    margin: 0 0 14px;
}

.yf-news-list-content h2 a {
    color: #211B12;
    font-family: var(--yf-font-title);
    font-size: 28px;
    font-weight: 700;
    line-height: .95;
    letter-spacing: -.035em;
}

.yf-news-list-content p {
    min-height: 78px;
    margin: 0 0 22px;
    color: #6C6458;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.7;
}

.yf-news-list-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #8E682F, #6F4F22);
    font-size: 13px;
    font-weight: 700;
}

.yf-news-list-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.yf-news-list-empty {
    padding: 30px;
    border-radius: 24px;
    color: #211B12;
    background: #ffffff;
    border: 1px solid rgba(33, 27, 18, .08);
    box-shadow: 0 24px 70px rgba(33, 27, 18, .08);
    font-size: 16px;
    font-weight: 800;
}

/* HABER DETAY */
.yf-news-detail-page {
    padding: 92px 0;
    background:
        radial-gradient(circle at 8% 18%, rgba(200, 174, 114, .09), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #F4F1EA 100%);
}

.yf-news-detail-main {
    overflow: hidden;
    border-radius: 36px;
    background: #ffffff;
    border: 1px solid rgba(33, 27, 18, .08);
    box-shadow: 0 28px 80px rgba(33, 27, 18, .10);
}

.yf-news-detail-image {
    height: 510px;
    overflow: hidden;
    background: #211B12;
}

.yf-news-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yf-news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 28px 34px 0;
}

.yf-news-detail-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    color: #211B12;
    background: #EDE8DF;
    font-size: 13px;
    font-weight: 700;
}

.yf-news-detail-content {
    padding: 30px 34px 40px;
}

.yf-news-detail-content h2,
.yf-news-detail-content h3 {
    margin: 0 0 22px;
    color: #211B12;
    font-family: var(--yf-font-title);
    font-size: clamp(34px, 3.5vw, 58px);
    font-weight: 700;
    line-height: .92;
    letter-spacing: -.04em;
}

.yf-news-detail-content p {
    margin: 0 0 24px;
    color: #625B50;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.9;
}

.yf-news-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
}

.yf-news-detail-side {
    position: sticky;
    top: 30px;
    padding: 30px;
    border-radius: 30px;
    color: #ffffff;
    background: linear-gradient(135deg, #211B12, #211B12);
    box-shadow: 0 28px 80px rgba(33, 27, 18, .16);
}

.yf-news-detail-side > span {
    display: block;
    margin-bottom: 16px;
    color: #E6D197;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.yf-news-detail-side h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-family: var(--yf-font-title);
    font-size: 38px;
    font-weight: 700;
    line-height: .95;
    letter-spacing: -.035em;
}

.yf-news-detail-side p {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, .76);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.75;
}

.yf-news-detail-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    color: #211B12;
    background: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.yf-news-detail-back:hover {
    color: #211B12;
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .yf-news-list-page,
    .yf-news-detail-page {
        padding: 68px 0;
    }

    .yf-news-detail-side {
        position: relative;
        top: auto;
    }

    .yf-news-detail-image {
        height: 390px;
    }
}

@media (max-width: 575.98px) {
    .yf-news-list-image {
        height: 240px;
    }

    .yf-news-list-content h2 a {
        font-size: 30px;
    }

    .yf-news-detail-main {
        border-radius: 28px;
    }

    .yf-news-detail-image {
        height: 280px;
    }

    .yf-news-detail-meta,
    .yf-news-detail-content {
        padding-left: 24px;
        padding-right: 24px;
    }

    .yf-news-detail-content p {
        font-size: 16px;
    }
}

/* DUYURULAR LİSTE */
.yf-ann-list-page {
    padding: 88px 0;
    background:
        radial-gradient(circle at 8% 18%, rgba(200, 174, 114, .09), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #F4F1EA 100%);
}

.yf-ann-list {
    display: grid;
    gap: 16px;
}

.yf-ann-row {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 24px;
    border-radius: 28px;
    color: #211B12;
    background: #ffffff;
    border: 1px solid rgba(33, 27, 18, .08);
    box-shadow: 0 20px 58px rgba(33, 27, 18, .07);
    transition: .25s ease;
}

.yf-ann-row:hover {
    color: #211B12;
    transform: translateX(8px);
    box-shadow: 0 28px 76px rgba(200, 174, 114, .14);
}

.yf-ann-row-date {
    display: flex;
    width: 96px;
    height: 96px;
    flex: 0 0 96px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    color: #ffffff;
    background: linear-gradient(135deg, #8E682F, #6F4F22);
}

.yf-ann-row-date strong {
    font-family: var(--yf-font-title);
    font-size: 42px;
    font-weight: 700;
    line-height: .8;
}

.yf-ann-row-date small {
    margin-top: 8px;
    color: rgba(255, 255, 255, .78);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.yf-ann-row-content {
    display: block;
    min-width: 0;
    flex: 1;
}

.yf-ann-row-content strong {
    display: block;
    margin-bottom: 8px;
    color: #211B12;
    font-family: var(--yf-font-title);
    font-size: clamp(28px, 2.3vw, 40px);
    font-weight: 700;
    line-height: .95;
    letter-spacing: -.035em;
}

.yf-ann-row-content small {
    display: block;
    max-width: 760px;
    color: #6C6458;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.7;
}

.yf-ann-row-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    color: #ffffff;
    background: #211B12;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.yf-ann-empty {
    padding: 30px;
    border-radius: 24px;
    color: #211B12;
    background: #ffffff;
    border: 1px solid rgba(33, 27, 18, .08);
    box-shadow: 0 24px 70px rgba(33, 27, 18, .08);
    font-size: 16px;
    font-weight: 800;
}

/* DUYURU DETAY */
.yf-ann-detail-page {
    padding: 92px 0;
    background:
        radial-gradient(circle at 8% 18%, rgba(200, 174, 114, .09), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #F4F1EA 100%);
}

.yf-ann-detail-main {
    overflow: hidden;
    border-radius: 36px;
    background: #ffffff;
    border: 1px solid rgba(33, 27, 18, .08);
    box-shadow: 0 28px 80px rgba(33, 27, 18, .10);
}

.yf-ann-detail-image {
    height: 470px;
    overflow: hidden;
    background: #211B12;
}

.yf-ann-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yf-ann-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 28px 34px 0;
}

.yf-ann-detail-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    color: #211B12;
    background: #EDE8DF;
    font-size: 13px;
    font-weight: 700;
}

.yf-ann-detail-content {
    padding: 30px 34px 40px;
}

.yf-ann-detail-content h2,
.yf-ann-detail-content h3 {
    margin: 0 0 22px;
    color: #211B12;
    font-family: var(--yf-font-title);
    font-size: clamp(34px, 3.5vw, 58px);
    font-weight: 700;
    line-height: .92;
    letter-spacing: -.04em;
}

.yf-ann-detail-content p {
    margin: 0 0 24px;
    color: #625B50;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.9;
}

.yf-ann-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
}

.yf-ann-detail-side {
    position: sticky;
    top: 30px;
    padding: 30px;
    border-radius: 30px;
    color: #ffffff;
    background: linear-gradient(135deg, #211B12, #211B12);
    box-shadow: 0 28px 80px rgba(33, 27, 18, .16);
}

.yf-ann-detail-side > span {
    display: block;
    margin-bottom: 16px;
    color: #E6D197;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.yf-ann-detail-side h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-family: var(--yf-font-title);
    font-size: 38px;
    font-weight: 700;
    line-height: .95;
    letter-spacing: -.035em;
}

.yf-ann-detail-side p {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, .76);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.75;
}

.yf-ann-detail-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    color: #211B12;
    background: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.yf-ann-detail-back:hover {
    color: #211B12;
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .yf-ann-list-page,
    .yf-ann-detail-page {
        padding: 68px 0;
    }

    .yf-ann-detail-side {
        position: relative;
        top: auto;
    }

    .yf-ann-detail-image {
        height: 370px;
    }
}

@media (max-width: 575.98px) {
    .yf-ann-row {
        align-items: flex-start;
        gap: 16px;
        padding: 18px;
        border-radius: 24px;
    }

    .yf-ann-row-date {
        width: 74px;
        height: 74px;
        flex-basis: 74px;
        border-radius: 20px;
    }

    .yf-ann-row-date strong {
        font-size: 32px;
    }

    .yf-ann-row-action {
        display: none;
    }

    .yf-ann-row-content strong {
        font-size: 27px;
    }

    .yf-ann-detail-main {
        border-radius: 28px;
    }

    .yf-ann-detail-image {
        height: 270px;
    }

    .yf-ann-detail-meta,
    .yf-ann-detail-content {
        padding-left: 24px;
        padding-right: 24px;
    }

    .yf-ann-detail-content p {
        font-size: 16px;
    }
}

/* FOTO GALERİ SAYFASI */
.yf-photo-gallery-page {
    padding: 88px 0;
    background:
        radial-gradient(circle at 8% 18%, rgba(200, 174, 114, .09), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #F4F1EA 100%);
}

.yf-photo-gallery-card {
    position: relative;
    display: block;
    height: 330px;
    overflow: hidden;
    border-radius: 30px;
    background: #211B12;
    box-shadow: 0 24px 70px rgba(33, 27, 18, .10);
}

.yf-photo-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .42s ease;
}

.yf-photo-gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 38%, rgba(33, 27, 18, .86) 100%),
        linear-gradient(135deg, rgba(200, 174, 114, .32), transparent 48%);
}

.yf-photo-gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 34px 90px rgba(200, 174, 114, .16);
}

.yf-photo-gallery-card:hover img {
    transform: scale(1.07);
}

.yf-photo-gallery-cover {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    display: block;
    color: #ffffff;
}

.yf-photo-gallery-cover strong {
    display: block;
    font-family: var(--yf-font-title);
    font-size: 34px;
    font-weight: 700;
    line-height: .95;
    letter-spacing: -.035em;
}

.yf-photo-gallery-cover small {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, .76);
    font-size: 13px;
    font-weight: 700;
}

.yf-photo-gallery-empty {
    padding: 30px;
    border-radius: 24px;
    color: #211B12;
    background: #ffffff;
    border: 1px solid rgba(33, 27, 18, .08);
    box-shadow: 0 24px 70px rgba(33, 27, 18, .08);
    font-size: 16px;
    font-weight: 800;
}

@media (max-width: 991.98px) {
    .yf-photo-gallery-page {
        padding: 68px 0;
    }

    .yf-photo-gallery-card {
        height: 300px;
    }
}

@media (max-width: 575.98px) {
    .yf-photo-gallery-card {
        height: 260px;
        border-radius: 24px;
    }

    .yf-photo-gallery-cover strong {
        font-size: 29px;
    }
}

/* VIDEO GALERI SAYFASI */
.yf-video-gallery-page {
    padding: 88px 0;
    background:
        radial-gradient(circle at 8% 18%, rgba(200, 174, 114, .09), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #F4F1EA 100%);
}

.yf-video-card {
    height: 100%;
    overflow: hidden;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(33, 27, 18, .08);
    box-shadow: 0 24px 70px rgba(33, 27, 18, .09);
    transition: .28s ease;
}

.yf-video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 34px 90px rgba(200, 174, 114, .15);
}

.yf-video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #211B12;
}

.yf-video-frame iframe,
.yf-video-frame video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.yf-video-body {
    padding: 24px 26px 28px;
}

.yf-video-body strong {
    display: block;
    color: #211B12;
    font-family: var(--yf-font-title);
    font-size: 24px;
    font-weight: 600;
    line-height: .98;
    letter-spacing: -.035em;
}

.yf-video-empty {
    padding: 30px;
    border-radius: 24px;
    color: #211B12;
    background: #ffffff;
    border: 1px solid rgba(33, 27, 18, .08);
    box-shadow: 0 24px 70px rgba(33, 27, 18, .08);
    font-size: 16px;
    font-weight: 800;
}

@media (max-width: 991.98px) {
    .yf-video-gallery-page {
        padding: 68px 0;
    }
}

@media (max-width: 575.98px) {
    .yf-video-card {
        border-radius: 24px;
    }

    .yf-video-body strong {
        font-size: 26px;
    }
}

/* İLETİŞİM SAYFASI */
.yf-contact-page {
    padding: 88px 0;
    background:
        radial-gradient(circle at 8% 18%, rgba(200, 174, 114, .09), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #F4F1EA 100%);
}

.yf-contact-form-wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 38px;
    border-radius: 34px;
    background: #ffffff;
    border: 1px solid rgba(33, 27, 18, .08);
    box-shadow: 0 28px 80px rgba(33, 27, 18, .09);
}

.yf-contact-form-wrap label {
    display: block;
    margin-bottom: 9px;
    color: #211B12;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.yf-contact-input,
.yf-contact-textarea {
    width: 100%;
    border: 1px solid rgba(33, 27, 18, .10);
    border-radius: 18px;
    background: #F7F4EE;
    color: #211B12;
    font-size: 15px;
    font-weight: 700;
    outline: none;
    transition: .2s ease;
}

.yf-contact-input {
    height: 56px;
    padding: 0 18px;
}

.yf-contact-textarea {
    min-height: 180px;
    padding: 18px;
    resize: vertical;
}

.yf-contact-input:focus,
.yf-contact-textarea:focus {
    border-color: rgba(200, 174, 114, .45);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(200, 174, 114, .08);
}

.yf-contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 30px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #8E682F, #6F4F22);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 18px 44px rgba(200, 174, 114, .24);
    transition: .2s ease;
}

.yf-contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 58px rgba(200, 174, 114, .32);
}

.yf-contact-alert {
    margin-bottom: 24px;
    padding: 16px 18px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 800;
}

.yf-contact-alert-success {
    color: #0d5f36;
    background: #e9f8ef;
    border: 1px solid #c9efd8;
}

.yf-contact-alert-error {
    color: #9b0014;
    background: #fff0f2;
    border: 1px solid #ffd1d8;
}

@media (max-width: 575.98px) {
    .yf-contact-page {
        padding: 64px 0;
    }

    .yf-contact-form-wrap {
        padding: 24px;
        border-radius: 26px;
    }

    .yf-contact-submit {
        width: 100%;
    }
}

/* İLETİŞİM SAYFASI - REVİZE */
.yf-contact-redesign {
    position: relative;
    overflow: hidden;
    padding: 92px 0 !important;
    background:
        radial-gradient(circle at 10% 0%, rgba(200, 174, 114, .10), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #F4F1EA 100%) !important;
}

.yf-contact-redesign::before {
    content: "İLETİŞİM";
    position: absolute;
    right: -14px;
    top: 40px;
    font-family: var(--yf-font-title);
    font-size: clamp(82px, 12vw, 190px);
    font-weight: 700;
    line-height: .78;
    color: rgba(33, 27, 18, .035);
    pointer-events: none;
}

.yf-contact-shell {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
}

.yf-contact-head {
    max-width: 720px;
    margin-bottom: 34px;
}

.yf-contact-head span {
    display: block;
    margin-bottom: 14px;
    color: #8E682F;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.yf-contact-head h2 {
    margin: 0 0 16px;
    color: #211B12;
    font-family: var(--yf-font-title);
    font-size: clamp(46px, 5vw, 82px);
    font-weight: 700;
    line-height: .86;
    letter-spacing: -.05em;
}

.yf-contact-head p {
    max-width: 660px;
    margin: 0;
    color: #6C6458;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.75;
}

.yf-contact-form-card {
    position: relative;
    padding: 36px;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .90));
    box-shadow: 0 30px 90px rgba(33, 27, 18, .10);
}

.yf-contact-form-card::before {
    content: "";
    position: absolute;
    left: 34px;
    right: 34px;
    top: 0;
    height: 5px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, #8E682F, #211B12);
}

.yf-contact-field label {
    display: block;
    margin-bottom: 9px;
    color: #211B12;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.yf-contact-input,
.yf-contact-textarea {
    width: 100%;
    border: 0 !important;
    border-radius: 18px;
    background: #EDE8DF !important;
    color: #211B12;
    font-size: 15px;
    font-weight: 700;
    outline: none;
    box-shadow: none !important;
    transition: .2s ease;
}

.yf-contact-input {
    height: 58px;
    padding: 0 18px;
}

.yf-contact-textarea {
    min-height: 170px;
    padding: 18px;
    resize: vertical;
}

.yf-contact-input:focus,
.yf-contact-textarea:focus {
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(200, 174, 114, .08) !important;
}

.yf-contact-submit-row {
    display: flex;
    justify-content: flex-end;
    padding-top: 4px;
}

.yf-contact-submit {
    min-height: 56px;
    min-width: 190px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #8E682F, #6F4F22);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 18px 44px rgba(200, 174, 114, .24);
    transition: .2s ease;
}

.yf-contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 58px rgba(200, 174, 114, .32);
}

.yf-contact-alert {
    margin-bottom: 22px;
    padding: 16px 18px;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 800;
    border: 0 !important;
}

.yf-contact-alert-success {
    color: #0d5f36;
    background: #e7f8ee;
}

.yf-contact-alert-error {
    color: #9b0014;
    background: #fff0f2;
}

@media (max-width: 575.98px) {
    .yf-contact-redesign {
        padding: 68px 0 !important;
    }

    .yf-contact-form-card {
        padding: 24px;
        border-radius: 26px;
    }

    .yf-contact-form-card::before {
        left: 24px;
        right: 24px;
    }

    .yf-contact-submit-row {
        justify-content: stretch;
    }

    .yf-contact-submit {
        width: 100%;
    }
}

/* TÜZÜK SAYFASI */
.yf-tuzuk-page {
    padding: 80px 0;
    background: #F4F1EA;
}

.yf-tuzuk-content {
    padding: 42px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(33, 27, 18, .07);
}

.yf-tuzuk-content h1,
.yf-tuzuk-content h2,
.yf-tuzuk-content h3 {
    color: #211B12;
    font-family: var(--yf-font-title);
    font-weight: 900;
}

.yf-tuzuk-content p,
.yf-tuzuk-content li {
    color: #625B50;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.85;
}

@media (max-width: 575.98px) {
    .yf-tuzuk-page {
        padding: 56px 0;
    }

    .yf-tuzuk-content {
        padding: 26px;
        border-radius: 20px;
    }
}

/* POLİTİKA / KVKK SAYFALARI */
.yf-policy-page {
    padding: 80px 0;
    background: #F4F1EA;
}


.yf-policy-content h1,
.yf-policy-content h2,
.yf-policy-content h3 {
    color: #211B12;
    font-family: var(--yf-font-title);
    font-weight: 900;
}

.yf-policy-content p,
.yf-policy-content li {
    color: #625B50;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.85;
}

@media (max-width: 575.98px) {
    .yf-policy-page {
        padding: 56px 0;
    }

    .yf-policy-content {
        padding: 26px;
        border-radius: 20px;
    }
}