:root {
    --header-color: #968a66;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    padding-bottom: 50px;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.18), transparent 35%),
        radial-gradient(circle at bottom right, rgba(120,92,43,0.08), transparent 30%),
        #dfdbcc;
    position: relative;
    z-index: 1;
}

/* Üst şerit */
.top-strip {
    width: 100%;
    height: 20px;
    background: repeating-linear-gradient(
        45deg,
        #534e44,
        #554f41 10px,
        #57503f 10px,
        #5b5445 20px
    );
}

/* Alt sabit şerit */
.bottom-strip {
    height: 45px;              /* sabit yükseklik */
    padding: 0;                /* padding kaldır */
    display: flex;
    align-items: center;       /* ortala */
    justify-content: center;
}.menu-buttons {
    font-size: 15px;
    gap: 8px;
    line-height: 1;   /* önemli */
}
.bottom-strip {
    width: 100%;
    height: 46px;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 0;
    text-align: center;
    border-top: 1px solid #ddd;
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.85);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}
/* Alt menü */
.menu-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    line-height: 1;
}

.menu-buttons .bar {
    color: #5a4634;
    text-decoration: none;
    padding: 0 4px;
    transition: 0.3s ease;
    font-weight: bold;
    letter-spacing: 0.5px;
    background: none;
}

.divider {
    color: #8a7763;
    font-size: 13px;
    font-weight: normal;
}

.menu-buttons .bar:hover {
    color: #000;
    text-decoration: underline;
    transform: translateY(-2px);
}

.divider {
    color: #8a7763;
    font-size: 14px;
    font-weight: normal;
}

/* Genel section */
section {
    width: 80%;
    margin: 80px auto 140px auto;
    font-size: 18px;
    line-height: 1.7;
}

/* Biyografi */
.bio {
    font-family: "Dancing Script", cursive;
    font-size: 20px;
    line-height: 1.8;
    text-align: justify;
    margin: 20px auto;
    width: 80%;
}

/* Üst manşet */
.hero {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    padding: 8px 12% 12px 12%;
    background: linear-gradient(to bottom, var(--header-color), #534d41);
}

.hero-left {
    margin-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ede8e2;
    margin: 0;
    line-height: 0.95;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-left p {
    font-family: 'Dancing Script', cursive;
    font-size: 1.15rem;
    color: #f1ede5;
    margin-top: 6px;
    letter-spacing: 0.3px;
    line-height: 1.1;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.hero-center {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    width: 235px;
    height: 290px;
    border-radius: 22px 0 0 22px;
    z-index: 2;
    overflow: visible;
    background: linear-gradient(
        135deg,
        #5f4520 0%,
        #8a6730 18%,
        #c39a56 32%,
        #7a5728 48%,
        #b78a46 62%,
        #5b401d 82%,
        #9d7337 100%
    );
}

.hero-center::after {
    content: "";
    position: absolute;
    inset: 9px;
    border-radius: 14px 0 0 14px;
    box-shadow:
        inset 0 0 0 2px rgba(255, 238, 170, 0.45),
        inset 0 0 14px rgba(255, 245, 210, 0.25);
    pointer-events: none;
}

.hero-center img {
    position: relative;
    z-index: 1;
    width: 190px;
    height: auto;
    border-radius: 10px;
    border: 4px solid #f5f0e1;
    display: block;
    object-fit: cover;
    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.18),
        inset 0 0 6px rgba(0, 0, 0, 0.12);
    filter: none !important;
    backdrop-filter: none !important;
}

/* Sağ üst menü */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-left: 0;
    position: relative;
    z-index: 2000;
}

.menu-btn {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    padding: 10px 14px 10px 16px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    letter-spacing: 0.6px;
    text-align: left;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease, background 0.3s ease;
    position: relative;
    border-left: 5px solid rgba(255, 255, 255, 0.28);
    box-sizing: border-box;
    background: transparent;
    border-top: none;
    border-right: none;
    border-bottom: none;
}

.menu-btn:hover {
    background: rgba(255,255,255,0.12);
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
    filter: brightness(1.04);
}

.menu-btn::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 7px;
    bottom: 7px;
    width: 2px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 2px;
}

/* Üst menü renkleri */
.anasayfa {
    background: linear-gradient(135deg, #2f2a24, #5a4d3a);
    width: 140px;
    border-left: 5px solid #d4af37;
}

.iletisim {
    background-color: #6e6150;
    width: 118px;
}

.biyografi {
    background-color: #7b6856;
    width: 150px;
}

.eserler {
    background-color: #8d9b5f;
    width: 126px;
}

.haberler {
    background-color: #b8bea0;
    color: #2f2f2f;
    width: 138px;
}

.roportajlar {
    background-color: #7c7462;
    width: 170px;
}

.oduller {
    background-color: #5c5343;
    width: 122px;
}

.fotolar {
    background-color: #9fa67b;
    color: #2f2f2f;
    width: 160px;
}

.menu-btn.active {
    transform: translateX(10px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
    filter: brightness(1.08);
    border-left: 5px solid #f3d37a;
}

.menu-btn.active::after {
    content: "";
    position: absolute;
    right: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 245, 210, 0.95);
    box-shadow: 0 0 10px rgba(255, 230, 150, 0.8);
}

.menu-btn.active:hover {
    transform: translateX(10px) scale(1.02);
}

/* Dil butonları */
.lang-switch {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 12px;
    align-items: center;
    z-index: 50;
    background: transparent;
    backdrop-filter: none;
    filter: none;
}

.lang-tab {
    display: inline-block;
    opacity: 0.75;
    transition: 0.3s ease;
}

.lang-tab:hover {
    opacity: 1;
}

.lang-tab img {
    width: 38px;
    height: 38px;
    object-fit: cover;
    border-radius: 50%;
    cursor: pointer;
    display: block;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
}

.lang-tab img:hover {
    transform: scale(1.15);
    border-color: #c9a96e;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.lang-tab.active {
    opacity: 1;
}

.lang-tab.active img {
    border: 2px solid #c9a96e;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transform: scale(1.1);
}

.lang-tab img:active {
    transform: scale(0.95);
}

/* İletişim */
#iletisim {
    padding: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 18px;
}

.contact-item i {
    margin-right: 10px;
    font-size: 22px;
    color: #6b7c4f;
}

.contact-item a {
    text-decoration: none;
    color: #333;
    transition: 0.3s;
}

.contact-item a:hover {
    color: #6b7c4f;
}

/* Ödüller */
.oduller-section {
    width: 90%;
    margin: 50px auto;
}

.oduller-listesi {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.odul-karti {
    display: flex;
    align-items: center;
    gap: 30px;
}

.odul-karti img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    padding: 10px;
    background: linear-gradient(135deg, #5f4520, #c39a56, #f2cf63, #9a7418);
    border: 3px solid #f6edd8;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.odul-bilgi {
    max-width: 650px;
}

.odul-bilgi h3 {
    margin: 0 0 10px 0;
}

.odul-bilgi p {
    margin: 0;
    line-height: 1.6;
}

.odul-video {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.award3-gallery img:first-child {
    transform: translateY(-10px);
}

.award3-gallery img:last-child {
    transform: translateY(10px);
}

/* Eserler */
.eserler-section {
    width: 90%;
    margin: 50px auto;
}

.kitaplar {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.kitap-karti {
    display: flex;
    align-items: center;
    gap: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kitap-karti:hover {
    transform: translateX(10px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.14);
}

.kitap-karti img {
    width: 180px;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
}

.kitap-bilgi {
    max-width: 600px;
}

.kitap-bilgi h3 {
    margin-bottom: 10px;
}

.kitap-bilgi p {
    line-height: 1.6;
}

/* Fotoğraflar genel */
.fotograflar-section {
    padding: 60px 40px;
    background-color: #d8d3c7;
    text-align: center;
}

.fotograflar-section h2 {
    margin-bottom: 30px;
    font-size: 32px;
    color: #3f372d;
}

/* Ana sayfa blok */
.home-simple {
    width: 80%;
    margin: 40px auto 120px auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    position: relative;
}

.home-left,
.home-box {
    background: rgba(255, 248, 235, 0.55);
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.home-left::before,
.home-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(255,255,255,0.10), rgba(255,255,255,0.02)),
        repeating-linear-gradient(
            0deg,
            rgba(120, 92, 43, 0.025) 0px,
            rgba(120, 92, 43, 0.025) 1px,
            transparent 1px,
            transparent 28px
        );
    pointer-events: none;
}

.home-left,
.home-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-left:hover,
.home-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.14);
}

.home-right {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.home-simple h2 {
    font-family: 'Playfair Display', serif;
    color: #4a4032;
    font-size: 1.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 18px 0;
    padding-bottom: 10px;
    line-height: 1.3;
    border-bottom: 1px solid rgba(120, 92, 43, 0.25);
}

.home-simple h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    margin-top: 10px;
    background: linear-gradient(to right, #8f6d2a, transparent);
}

.home-link {
    display: inline-block;
    margin-top: 10px;
    color: #5e4d2f;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    transition: 0.2s ease;
}

.home-link:hover {
    transform: translateX(4px);
    color: #2f261c;
}

.bio-card {
    display: flex;
    gap: 22px;
    align-items: center;
    background: rgba(189, 178, 146, 0.75);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 24px;
}

.bio-card-frame {
    padding: 10px;
    border-radius: 14px;
    background: linear-gradient(135deg, #9b7a1c, #e3c15f, #b88922, #f0d37a);
    box-shadow:
        0 8px 18px rgba(0,0,0,0.18),
        inset 0 2px 4px rgba(255,255,255,0.35),
        inset 0 -3px 6px rgba(0,0,0,0.18);
    transform: rotate(-4deg);
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bio-card-frame:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 40px rgba(0,0,0,0.22),
        inset 0 2px 4px rgba(255,255,255,0.3),
        inset 0 -3px 6px rgba(0,0,0,0.15);
}

.bio-card-frame img {
    width: 145px;
    display: block;
    border-radius: 8px;
    border: 3px solid #f6edd8;
    filter: grayscale(10%) contrast(110%);
}

.bio-text {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #433a30;
}

.bio-text p {
    text-align: justify;
}

.book-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: transform 0.25s ease;
}

.book-card:hover {
    transform: translateY(-3px);
}

.book-card img {
    width: 82px;
    border-radius: 4px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.book-card:hover img {
    transform: scale(1.05);
    box-shadow: 0 12px 22px rgba(0,0,0,0.28);
}

.book-card h3 {
    margin: 0 0 8px 0;
    font-family: 'Playfair Display', serif;
    color: #3f372d;
}

.book-card p {
    margin: 0;
    color: #4c4338;
    line-height: 1.6;
}

.news-card {
    background: rgba(255,255,255,0.7);
    padding: 16px 18px;
    border-radius: 10px;
    margin-bottom: 14px;
    border-left: 4px solid #b89852;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, background 0.25s ease;
    position: relative;
}

.news-card:hover {
    transform: translateX(5px);
    background: rgba(255,255,255,0.92);
}

.news-card::after {
    content: "✦";
    position: absolute;
    right: 10px;
    top: 8px;
    font-size: 0.8rem;
    color: rgba(140, 106, 45, 0.35);
}

.news-date {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: bold;
    color: #8c6a2d;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.news-card p {
    margin: 0;
    color: #433a30;
    line-height: 1.5;
}

/* Röportajlar */
.roportaj-section {
    padding-top: 10px;
}

.roportaj-grid {
    width: 90%;
    margin: 50px auto;
}

.roportaj-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 80px;
    transition: transform 0.3s ease;
}

.roportaj-item:hover {
    transform: scale(1.03);
}

.roportaj-item.left {
    justify-content: flex-start;
}

.roportaj-item.right {
    justify-content: flex-end;
}

.video-container {
    width: 420px;
    flex-shrink: 0;
}

.video-container a {
    display: block;
}

.video-container img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.video-container iframe {
    width: 100%;
    height: 220px;
    border-radius: 10px;
}

.video-link {
    position: relative;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: white;
    background: rgba(0,0,0,0.5);
    padding: 10px 20px;
    border-radius: 50%;
}

.video-text {
    width: 320px;
}

.video-text h3 {
    margin: 0 0 10px 0;
}

.video-text p {
    margin: 0;
    line-height: 1.6;
}

/* Biyografi sayfası */
.bio-layout {
    width: 92%;
    max-width: 1500px;
    margin: 70px auto 140px auto;
    display: grid;
    grid-template-columns: 250px minmax(620px, 1fr) 250px;
    gap: 55px;
    align-items: start;
}

.bio-layout .bio-text {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}

.bio-layout .bio-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    color: #3f372d;
    margin: 0 0 28px 0;
}

.bio-layout .bio-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 25px;
    line-height: 1.75;
    color: #433a30;
    text-align: justify;
    margin: 0;
}

.photo-wall {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.hanging-photo {
    position: relative;
    width: 210px;
    background: #fdfbf7;
    padding: 10px 10px 20px 10px;
    border: 1px solid rgba(120, 100, 80, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hanging-photo img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    background: #fff;
}

.pin {
    position: absolute;
    width: 16px;
    height: 16px;
    background: radial-gradient(circle at 30% 30%, #e0b97a, #8b5e2b);
    border-radius: 50%;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hanging-photo::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 50%;
    width: 2px;
    height: 34px;
    background: linear-gradient(to bottom, rgba(90,70,50,0.5), transparent);
    transform: translateX(-50%);
}

.left-wall .photo1 { transform: rotate(-6deg) translateX(-10px); }
.left-wall .photo2 { transform: rotate(4deg) translateX(10px); }
.left-wall .photo3 { transform: rotate(-4deg) translateX(-14px); }
.left-wall .photo4 { transform: rotate(5deg) translateX(6px); }

.right-wall .photo5 { transform: rotate(5deg) translateX(8px); }
.right-wall .photo6 { transform: rotate(-4deg) translateX(-10px); }
.right-wall .photo7 { transform: rotate(6deg) translateX(12px); }
.right-wall .photo8 { transform: rotate(-3deg) translateX(-6px); }

.hanging-photo:hover {
    transform: rotate(0deg) scale(1.04) !important;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.24);
    z-index: 5;
}

/* Haberler */
.haberler-section {
    width: 100%;
    padding: 20px 0 90px;
    background-color: #ece9dd;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin-top: 0;
}

.haberler-section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    color: #2f2a26;
    margin-bottom: 50px;
}

.haberler-container {
    width: 78%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.haber-karti {
    background: #f7f5f0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding-bottom: 25px;
}

.haber-karti img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.haber-karti h3 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    color: #2f2a26;
    margin: 22px 30px 14px;
    line-height: 1.2;
}

.haber-karti p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 31px;
    line-height: 1.6;
    color: #3a342f;
    margin: 0 30px;
    text-align: justify;
}

.haber-detay {
    width: 80%;
    margin: 60px auto;
    font-family: 'Cormorant Garamond', serif;
}

.haber-icerik {
    position: relative;
    font-size: 20px;
    line-height: 1.7;
    color: #2f2a26;
}

.haber-foto {
    float: left;
    width: 260px;
    margin: 0 25px 15px 0;
    border-radius: 8px;
    transform: rotate(-2deg);
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.haber-icerik p {
    margin-bottom: 18px;
    text-align: justify;
}

/* Foto galeri */
.gallery-wrap {
    max-width: 1250px;
    margin: 0 auto;
    padding: 10px 20px 40px;
}

.foto-galeri {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 22px;
    margin-top: 28px;
    align-items: start;
    padding: 20px;
}

.foto-galeri img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    background: #fff;
    padding: 8px;
    border: 1px solid #d8cfc2;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.foto-galeri img:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
}

#title {
    text-align: center;
    margin-bottom: 8px;
}

/* Tercümanlık */
.translator-section {
    width: min(1100px, 92%);
    margin: 40px auto;
}

.translator-box {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
    align-items: start;
}

.translator-image img {
    width: 100%;
    border-radius: 18px;
    display: block;
}

.translator-text p {
    line-height: 1.9;
}

/* Powered by */
.powered-box {
    display: block;
    width: fit-content;
    margin: 12px auto 0;
    padding: 6px 16px;
    text-decoration: none;
    font-size: 13px;
    font-family: 'Playfair Display', serif;
    color: #5a4634;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    border: 1px solid #d8cfc2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.powered-box:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 800px) {
    .translator-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .hero-right {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .home-simple {
        grid-template-columns: 1fr;
    }

    .foto-galeri {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
        gap: 16px;
    }

    .foto-galeri img {
        height: 180px;
        padding: 6px;
        border-radius: 12px;
    }
}
.lang-tab.active img {
    border: 2px solid #c9a96e;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transform: scale(1.1);
}

.lang-tab {
    opacity: 0.75;
}

.lang-tab.active {
    opacity: 1;
}.lang-tab.active img {
    border: 2px solid #c9a96e;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transform: scale(1.1);
}

.lang-tab {
    opacity: 0.75;
    transition: 0.3s ease;
}

.lang-tab:hover {
    opacity: 1;
}

.lang-tab.active {
    opacity: 1;
}
.lang-tab.active img {
    border: 2px solid #c9a96e;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transform: scale(1.1);
}

.lang-tab {
    opacity: 0.75;
    transition: 0.3s ease;
}

.lang-tab:hover {
    opacity: 1;
}

.lang-tab.active {
    opacity: 1;
}
.lang-tab.active img {
    border: 2px solid #c9a96e;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transform: scale(1.1);
}

.lang-tab {
    opacity: 0.75;
    transition: 0.3s ease;
}

.lang-tab:hover {
    opacity: 1;
}

.lang-tab.active {
    opacity: 1;
}
.bottom-strip {
    width: 100%;
    height: 50px;
    position: fixed;
    bottom: 0;
    left: 0;
    border-top: 1px solid #ddd;
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.85);
    z-index: 999;
    display: flex;
    align-items: center;
}

/* iç layout */
.bottom-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* menü ortada */
.menu-buttons {
    display: flex;
    gap: 8px;
    font-family: 'Playfair Display', serif;
    font-size: 15px;
}

/* sağdaki yazı */
.powered-text {
    position: absolute;
    right: 10px;
    font-size: 13px;
    color: #6b5a45;
    font-family: 'Playfair Display', serif;
    opacity: 0.8;
}
.powered-text {
    opacity: 0.6;
    letter-spacing: 0.5px;
}
.powered-text {
    opacity: 0.6;
    letter-spacing: 0.5px;
}
.bottom-strip {
    width: 100%;
    height: 46px;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 0;
    border-top: 1px solid #ddd;
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.85);
    z-index: 999;
    display: flex;
    align-items: center;
}

.bottom-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    line-height: 1;
}

.menu-buttons .bar {
    color: #5a4634;
    text-decoration: none;
    padding: 0 4px;
    transition: 0.3s ease;
    font-weight: bold;
    letter-spacing: 0.5px;
    background: none;
}

.menu-buttons .bar:hover {
    color: #000;
    text-decoration: underline;
    transform: translateY(-2px);
}

.divider {
    color: #8a7763;
    font-size: 13px;
    font-weight: normal;
}

.powered-text {
    position: absolute;
    right: 10px;
    font-size: 13px;
    color: #6b5a45;
    font-family: 'Playfair Display', serif;
    opacity: 0.75;
    white-space: nowrap;
}

body {
    padding-bottom: 55px;
}
.tercuman-card {
    position: relative;
    width: 300px;
    margin: 40px auto;
}

/* FOTO */
.tercuman-img {
    width: 100%;
    transform: rotate(-4deg); /* yamukluk */
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    border: 8px solid #fff;
    background: #fff;
}

/* GAZETE efekti */
.tercuman-img::after {
    content: "";
}

/* İMZA */
.signature {
    width: 180px;
    margin-top: 10px;
    display: block;
    opacity: 0.9;
}
.bio-signature {
    filter: contrast(1.2) brightness(0.9);
}
.bio-signed-photo:hover {
    transform: rotate(-2deg) scale(1.03);
}
.bio-main-photo {
    box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}
.side-photos {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    pointer-events: none;
}

.side-photo {
    position: absolute;
    width: 110px;
    height: auto;
    object-fit: contain;
    display: block;
    background: #fff;
    padding: 6px;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.p1 {
    right: 40px;
    top: 20px;
    transform: rotate(6deg);
}

.p2 {
    left: 40px;
    top: 210px;
    transform: rotate(-6deg);
}

.p3 {
    right: 55px;
    top: 470px;
    transform: rotate(4deg);
}

.p4 {
    left: 55px;
    top: 660px;
    transform: rotate(-4deg);
}
.roportaj-item {
    position: relative;
}

/* TRT 1 sağındaki büyük kolaj */
.side-feature-photo {
    width: 260px;
    flex-shrink: 0;
    margin-left: 20px;
}

.side-feature-photo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

/* Alttaki röportajın solundaki mini kolaj */
.mini-collage {
    position: relative;
    width: 230px;
    height: 240px;
    flex-shrink: 0;
    margin-right: 20px;
}

.mini-photo {
    position: absolute;
    width: 105px;
    height: 135px;
    object-fit: cover;
    background: #fff;
    padding: 5px;
    border-radius: 6px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.18);
    display: block;
}

/* dört foto yerleşimi */
.m1 {
    top: 0;
    left: 0;
    transform: rotate(-7deg);
}

.m2 {
    top: 18px;
    right: 0;
    transform: rotate(6deg);
}

.m3 {
    bottom: 0;
    left: 12px;
    transform: rotate(5deg);
}

.m4 {
    bottom: 8px;
    right: 12px;
    transform: rotate(-6deg);
}

/* mobil */
@media (max-width: 1100px) {
    .roportaj-item.left,
    .roportaj-item.right {
        flex-direction: column;
        align-items: flex-start;
    }

    .side-feature-photo,
    .mini-collage {
        margin: 15px 0 0 0;
    }
}
/* =========================
   ORTAK SİTE DÜZENİ
========================= */

.hero {
    position: relative;
    overflow: hidden;
}

/* Sağ üst üçgen görsel */
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 420px;
    height: 260px;
    background: url("headerfoto.png") no-repeat center;
    background-size: cover;
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    z-index: 1;
    opacity: 0.95;
}

.hero-right {
    position: relative;
    z-index: 2;
}

body {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2d2a26;
}

section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    letter-spacing: 2px;
    font-weight: 600;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 18px;
    color: #3f372d;
    text-align: center;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2f2a26;
}

p {
    font-size: 15.5px;
    line-height: 1.75;
    color: #3b362f;
}

.hero-left p {
    font-family: 'Dancing Script', cursive;
    font-size: 1.05rem;
    font-weight: 500;
    color: #f3efe7;
    margin-top: 6px;
    letter-spacing: 0.2px;
    line-height: 1.1;
}

/* =========================
   ESERLER SAYFASI
========================= */

.eserler-section,
.haberler-section,
.roportaj-grid,
.oduller-section,
.fotograflar-section,
.bio-layout {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.kitap-karti {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 60px;
}

.kitap-karti img {
    width: 160px;
    border-radius: 8px;
    display: block;
    object-fit: cover;
}

.kitap-bilgi {
    max-width: 700px;
}

.kitap-bilgi h3 {
    font-size: 1.2rem;
    margin-bottom: 14px;
}

.kitap-bilgi p {
    font-size: 15.5px;
    line-height: 1.8;
    text-align: justify;
}

/* =========================
   BİYOGRAFİ SAYFASI
========================= */

.bio-layout {
    width: 92%;
    max-width: 1400px;
    margin: 70px auto 90px auto;
    display: grid;
    grid-template-columns: 230px minmax(560px, 1fr) 230px;
    gap: 40px;
    align-items: start;
}

.bio-layout .bio-text {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}

.bio-layout .bio-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #3f372d;
    margin: 0 0 22px 0;
    text-align: center;
}

.bio-layout .bio-text p {
    font-family: 'Playfair Display', serif;
    font-size: 15.5px;
    line-height: 1.85;
    color: #433a30;
    text-align: justify;
    margin: 0;
}

.photo-wall {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.hanging-photo {
    position: relative;
    width: 190px;
    background: #fdfbf7;
    padding: 10px 10px 18px 10px;
    border: 1px solid rgba(120, 100, 80, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hanging-photo img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    background: #fff;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
    .bio-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .photo-wall {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .kitap-karti {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .kitap-bilgi {
        max-width: 100%;
    }

    .kitap-bilgi p {
        text-align: center;
    }
}