/* Tüm metinlerde kelimeler arası boşluk sabit olsun */
p,
li,
td,
blockquote,
div:not(.sidebar-pattern):not(.page-layout):not(.main-content-area),
span,
.full-content,
.project-info,
.envanter-info,
.content-section,
.text-content,
.multi-column-text {
    /*text-align: left !important;  */
    word-spacing: normal !important;
    -webkit-hyphens: auto !important;
    -moz-hyphens: auto !important;
    -ms-hyphens: auto !important;
    hyphens: auto !important;
    line-height: 1.7 !important;
}




:root {
    --antrasit: #28283a;
    --gold: #cc9f52;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/proximanova-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}





.bg-antrasit {
    background-color: var(--antrasit);
}

.text-gold {
    color: var(--gold);
    margin: 5px;
}

.text-antrasit {
    color: var(--antrasit);
}

/* Layout */
.w-full {
    width: 100%;
}

.max-w-7xl {
    max-width: 80rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}



/* Header */
.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.text-xl {
    font-size: 2rem;
}

.font-bold {
    font-weight: 700;
}

/* Hero */
#hero-image {
    display: none;
}

/* Grid - 3 SÜTUN */
.grid {
    display: grid;
}

.gap-8 {
    gap: 2rem;
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Kart */
.project-card {
    cursor: pointer;
    border-radius: 0.75rem;
    overflow: hidden;
    position: relative;
    transition: transform 0.5s, box-shadow 0.5s;
}

.project-card:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 20px 50px rgba(204, 159, 82, 0.5);
}

.card-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0.85;
}

.card-title {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    font-size: 1.25rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.card-label {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--antrasit);
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s;
}

.project-card:hover .card-label {
    opacity: 1;
}

/* Ana Sayfa Butonu */
.home-btn {
    background: linear-gradient(135deg, #cc9f52 0%, #d4af6a 100%);
    color: #28283a;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 6px 15px rgba(204, 159, 82, 0.4);
    margin-bottom: 2rem;
}

.home-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 25px rgba(204, 159, 82, 0.6);
}

/* Video Frame */

.video-frame-wrapper {
    background: linear-gradient(135deg, #cc9f52 0%, #d4af6a 50%, #cc9f52 100%);
    border-radius: 1rem;
    padding: 0.5rem;
    box-shadow: 0 20px 60px rgba(204, 159, 82, 0.4);
    max-width: 500px;
    margin: 0 auto 3rem;

    display: block !important;
}

.aspect-video {
    aspect-ratio: 16 / 9;
    width: 100%;
    border-radius: 0.75rem;
    overflow: hidden;
    background: black;
    position: relative;
}

/* Video önizleme resmi */
.aspect-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Play butonu */
.aspect-video button {
    cursor: pointer;
}

/* PDF Flipbook Container */
.pdf-flipbook-container {
    background-color: #1f1f2e;
    padding: 2rem;
    border-radius: 1.25rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    margin: 2rem auto;
    max-width: 1000px;
}

.flipbook-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.flipbook-btn {
    background: var(--gold);
    color: var(--antrasit);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s;
}

.flipbook-btn:hover {
    transform: scale(1.05);
}

.flipbook-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-counter {
    background: var(--antrasit);
    border: 2px solid var(--gold);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 0.5rem;
    font-weight: bold;
}

.flipbook-wrapper {
    perspective: 3000px;
    min-height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pdf-page-canvas {
    background: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.8s ease;
}

/* Foto Galeri */
.gallery-container {
    margin: 3rem auto;
    max-width: 900px;
}

.big-photo {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.thumbnails {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.thumbnail {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 0.5rem;
    cursor: pointer;
    border: 2px solid transparent;
}

.thumbnail.active {
    border-color: var(--gold);
}

/* Arama */
.search-input {
    background: white;
    border: 2px solid var(--gold);
    color: var(--antrasit);
    border-radius: 0.75rem;
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 3rem;
    text-align: center;
    display: block;
}

.search-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(204, 159, 82, 0.4);
}

/* Footer */

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

/* Opsiyonel: logo boyutunu sabitlemek isterseniz */
.footer-logo img {
    max-width: 120px;
    /* veya istediğiniz boyut */
    height: auto;
    text-align: center;
}

footer.border-t.border-gold.py-8.text-center.mt-20 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center !important;
    text-indent: 0px !important;
    /* emin olmak için */
}

.border-t {
    border-top: 1px solid;
}

.border-gold {
    border-color: var(--gold);
}

.text-center {
    text-align: center !important;
}

/* Responsive */
@media (max-width: 767px) {
    .text-xl {
        font-size: 1.1rem;
    }

    .card-image {
        height: 200px;
    }

    .flipbook-controls {
        flex-direction: column;
        gap: 0.75rem;
    }
}

.text-antrasit {
    color: #28283a;
}

.text-gold {
    color: #cc9f52;
}

.hover\:text-gold:hover {
    color: #cc9f52;
}

.transition {
    transition: all 0.3s ease;
}

.hidden {
    display: none;
}

.block {
    display: block;
}

/* Header Menü Hover Efekti */
.text-antrasit {
    color: #28283a;
}

.text-gold {
    color: #cc9f52;
}

.hover\:text-gold:hover {
    color: #cc9f52;
}

.transition {
    transition: all 0.3s ease;
}

/* Menü Hover Dropdown */
.group:hover .group-hover\:block {
    display: block;
}

/* Mobil Menü */
.hidden {
    display: none;
}

.block {
    display: block;
}

.md\:hidden {
    display: none;
}

.md\:flex {
    display: flex;
}

/* Menü Renkleri */
.text-white {
    color: #ffffff;
}

.text-antrasit {
    color: #28283a;
}

.text-gold {
    color: #cc9f52;
}

.hover\:text-gold:hover {
    color: #cc9f52;
}

/* Menü Hover Efekti - Sadece metin büyümesi */
.hover\:scale-105:hover {
    transform: scale(1.05);
}

.transition {
    transition: transform 0.2s ease;
}

/* Menü İsimleri Arası Boşluk */
.mr-1 {
    margin-right: 0.25rem;
    /* 4px */
}

.mr-2 {
    margin-right: 5px;
    /* 4px */
}

/* Altı çizili olmasın */
.no-underline {
    text-decoration: none !important;
}

/* Dropdown menü sabit pozisyonda */
nav .relative div.absolute {
    top: 100% !important;
    left: 0 !important;
    margin-top: 0 !important;
    transform: none !important;
    position: absolute !important;
    z-index: 20 !important;
}

/* Mobilde logo ve slogan boyutları */
.w-24 {
    width: 4.5rem;
}

/* mobilde logo */
.w-36 {
    width: 7rem;
}

/* masaüstünde logo */
.md\:w-36 {
    width: 9rem;
    margin: 10px 14px 10px 6px;

}


/* mobil slogan */
.h-36 {
    height: 2.5rem;
}

.md\:hidden {
    display: none;
}

.md\:flex {
    display: flex;
}

/* Proje Açıklama Metni Stili */
.project-description {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--gold);
    padding: 1.5rem;
    margin: 2.5rem auto;
    max-width: 900px;
    border-radius: 0 0.75rem 0.75rem 0;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #e0e0e0;
    backdrop-filter: blur(4px);
}

.project-description h2 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.project-description p {
    margin-bottom: 1rem;
}

.project-description p:last-child {
    margin-bottom: 0;
}

/* Menü sabit beyaz, hover'da gold */
header .text-white {
    color: #ffffff !important;
}

header .hover\:text-gold:hover {
    color: #cc9f52 !important;
}

/* Alt menüler masaüstünde düzgün açılsın */
header .group:hover>div {
    display: block !important;
}

/* Mobil alt menü toggle oku */
.mobile-submenu-toggle.active svg {
    transform: rotate(180deg);
    transform-origin: center;
}

/* Mobil menü bağlantı hover */
#mobile-menu a:hover,
#mobile-menu .mobile-submenu-toggle span:hover {
    color: var(--gold) !important;
}

/* Masaüstü menü dropdown açma */
.menu-dropdown:hover .dropdown-menu {
    display: block !important;
}

/* Alt menü bağlantıları */
.dropdown-menu a {
    transition: all 0.2s ease;
}

/* Gölge ve animasyon (isteğe bağlı) */
.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.menu-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* --- ALT MENÜ AÇMA DÜZELTMESİ (ANİMASYONSUZ) --- */
.menu-dropdown {
    position: relative;
}

.menu-dropdown .dropdown-menu {
    display: none;
}

.menu-dropdown:hover .dropdown-menu {
    display: block !important;
}

/* Mobil toggle oku döndürme */
.mobile-submenu-toggle.active svg {
    transform: rotate(180deg);
}

/* --- YENİ MENÜ STİL AYARLARI --- */

/* Ana menü yazı boyutu, kalınlık ve aralık */
header nav a,
header .menu-dropdown>span {
    font-weight: normal !important;
    /* bold kaldırıldı */
    font-size: 1.125rem !important;
    /* 18px */
    margin-right: 1.25rem !important;
    /* 20px boşluk */
    letter-spacing: 0.5px;
}

/* Son menüde margin-right olmasın */
header .menu-dropdown:last-child>span {
    margin-right: 0 !important;
}

/* Alt menü yazı rengi: Beyaz, hover'da gold */
.dropdown-menu a {
    color: #ffffff !important;
    /* beyaz */
}

.dropdown-menu a:hover {
    color: var(--gold) !important;
    /* gold */
    background-color: transparent !important;
    /* hover'da arka plan değişmesin */
}

/* Header menü alanını genişlet (daha ferah) */
@media (min-width: 768px) {
    header .max-w-7xl {
        max-width: 90rem;
        /* 1440px */

    }

    main-content-area {
        width: 100% !important;
        padding: 0 4 !important;
    }

    header nav {
        margin-left: 1.5rem;
        /* logo-slogan ile menü arasında boşluk */
    }
}

/* Alt menü bağlantıları: tek satır, altı çizisiz, siyah, hover'da gold */
.dropdown-menu a {
    display: block !important;
    color: var(--antrasit) !important;
    text-decoration: none !important;
    padding: 0.5rem 1rem !important;
    font-size: 1rem !important;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    color: var(--gold) !important;
    background-color: transparent !important;
}

/* --- ALT MENÜ PANELİ: TAM BEYAZ DİKDÖRTGEN --- */
.dropdown-menu {
    background-color: white !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    /* hafif gölge (isteğe bağlı) */
    border-radius: 6px !important;
    /* köşeler tam dikdörtgen */
    padding: 0 !important;
    margin: 0 !important;
    min-width: 200px;
}

.dropdown-menu a {
    display: block !important;
    color: var(--antrasit) !important;
    text-decoration: none !important;
    padding: 0.75rem 1.25rem !important;
    font-size: 1.05rem !important;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.dropdown-menu a:hover {
    color: var(--gold) !important;
    background-color: transparent !important;
}

/* Menü paneli tam altta, üst menüyle hizalı */
.menu-dropdown {
    position: relative;
}

.menu-dropdown .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: auto !important;
    z-index: 30 !important;
    display: none;
}

.menu-dropdown:hover .dropdown-menu {
    display: block !important;
}

/* Instagram Logo Boyutları */
.w-12 {
    width: 3rem;
    /* 48px mobil */
}

.h-12 {
    height: 3rem;
    /* 48px mobil */
}

.md\:w-\[50px\] {
    width: 50px !important;
    /* 50px masaüstü */
}

.md\:h-\[50px\] {
    height: 50px !important;
    /* 50px masaüstü */
}

/* Flex Utilities */
.flex-shrink-0 {
    flex-shrink: 0;
}

.flex-1 {
    flex: 1 1 0%;
}

.justify-center {
    justify-content: center;
}

.inline-flex {
    display: inline-flex;
}

.ml-4 {
    margin-left: 1rem;
}

.mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.space-x-2>*+* {
    margin-left: 0.5rem;
}

.md\:space-x-4>*+* {
    margin-left: 1rem;
}

/* Responsive Layout */
@media (max-width: 767px) {

    /* Mobil layout */
    header .max-w-7xl {
        display: flex;
        align-items: center;
        width: 100%;
        gap: 8px;
    }

    /* Logo */
    header .flex-shrink-0:first-child {
        width: 90px;
        /* w-24 */
        flex-shrink: 0;
    }

    /* Slogan */
    header .flex-1 {
        display: flex !important;
        justify-content: center;
        flex: 1;
        min-width: 0;
        /* İçeriğin taşmasını engelle */
    }

    /* Slogan resmi */
    header .flex-1 img {
        max-width: 100%;
        height: auto;
    }

    /* Sağ taraf - Instagram + Hamburger */
    header .flex-shrink-0:last-child {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    /* Hamburger butonu */
    #hamburger {
        padding: 4px;
    }

    /* Instagram mobil */
    .instagram-icon img {
        width: 48px !important;
        height: 48px !important;
    }
}

/* Hamburger cursor */
#hamburger {
    cursor: pointer;
}

/* Mobile menu transition */
#mobile-menu {
    transition: opacity 0.3s ease;
}

/* Mobile submenu arrows */
.mobile-submenu-toggle svg {
    transition: transform 0.3s ease;
}

.mobile-submenu-toggle.active svg {
    transform: rotate(180deg);
}

/* FLEX ve LAYOUT DÜZENLEMELERİ */
.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.space-x-4>*+* {
    margin-left: 1rem;
}

.space-x-8>*+* {
    margin-left: 2rem;
}

.ml-4 {
    margin-left: 1rem;
}

/* GÖRÜNÜRLÜK CLASS'LARI - BU KISIM ÇOK ÖNEMLİ! */
.hidden {
    display: none !important;
}

/* md:hidden için doğru tanım */
@media (min-width: 768px) {
    .md\:hidden {
        display: none !important;
    }

    .md\:flex {
        display: flex !important;
    }
}

/* Mobil Menü Stilleri */
#mobile-menu {
    transition: opacity 0.3s ease;
}

#hamburger {
    cursor: pointer;
}

/* Mobil submenu okları */
.mobile-submenu-toggle.active svg {
    transform: rotate(180deg);
}

.mobile-submenu-toggle svg {
    transition: transform 0.3s ease;
}

/* Instagram logo responsive */
@media (max-width: 767px) {

    /* Mobilde slogan küçültme */
    .w-36 {
        width: 7.5rem !important;
        /* 144px */
    }

    .h-16 {
        height: 4rem !important;
        /* 64px */
    }

    /* Mobil Instagram boyutu */
    img[alt="Instagram"] {
        width: 40px !important;
        height: 40px !important;
    }
}

@media (min-width: 768px) {

    /* PC Instagram boyutu */
    img[alt="Instagram"] {
        width: 50px !important;
        height: 50px !important;
    }

    body {
        font-family: 'Proxima Nova', sans-serif;
        background-color: var(--antrasit);
        color: var(--white);
        padding-top: 121px !important;
    }
}

/* PC'de menü düzeni */
@media (min-width: 768px) {
    header>.max-w-7xl {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    /* PC'de logo */
    .md\:w-36 {
        width: 8rem;

        /* 144px */
    }

    /* PC'de slogan */
    .w-96 {
        width: auto;
        margin-left: 2px;
        /* 384px */
    }

    .h-36 {
        height: 75px;
        /* 144px */
    }

    /* PC'de menü ve Instagram */
    .hidden.md\:flex {
        display: flex !important;
        align-items: center;
    }
}

/* Mobil düzeni */
@media (max-width: 767px) {
    header>.max-w-7xl {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    /* Mobilde logo */
    .w-24 {
        width: 6rem;

        /* 96px */
    }

    /* Mobilde sağ taraf (slogan + instagram + hamburger) */
    .md\:hidden.flex {
        display: flex !important;
        align-items: center;
        gap: 0.75rem;
    }

    /* Hamburger boyutu */
    #hamburger svg {
        width: 2rem !important;
        height: 2rem !important;
    }
}

/* Dropdown menü için */
.menu-dropdown:hover .dropdown-menu {
    display: block !important;
}

.dropdown-menu {
    display: none;
}

/* PC MENÜ DÜZENLEMELERİ */
@media (min-width: 768px) {

    /* Menüler arası boşluk azaltma */
    nav.space-x-4>*+* {
        margin-left: 0.5rem !important;
    }

    /* Menü öğeleri padding */
    .px-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    /* Menü ile Instagram arası boşluk artırma */
    .ml-6 {
        margin-left: 1.5rem !important;
    }

    /* Slogan margin */
    .mx-4 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }
}

/* MOBİL DÜZENLEMELERİ */
@media (max-width: 767px) {

    /* Mobil header layout */
    .md\:hidden.flex {
        width: 100%;
        position: relative;
        padding-top: 2px;
        padding-left: 2px;

    }


    /* Slogan tam ortada */
    .flex-1 {
        display: flex;
        justify-content: left;
    }

    /* Sağ taraf (instagram + hamburger) */
    .space-x-4>*+* {
        margin-left: 1rem;
    }

    /* Slogan boyutu */
    .w-36 {
        width: 9rem !important;
    }

    .h-16 {
        height: 4rem !important;
    }
}

/* MODERN MOBİL MENÜ STİLLERİ */
#mobile-menu {
    display: none;
}

#mobile-menu:not(.hidden) {
    display: block;
}

/* Overlay */
#mobile-overlay {
    transition: opacity 0.3s ease;
}

/* Menü paneli */
#mobile-menu .absolute {
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

#mobile-menu:not(.hidden) .absolute {
    transform: translateX(0);
}

/* Menü içeriği */
#mobile-menu .overflow-y-auto {
    scrollbar-width: thin;
    scrollbar-color: var(--gold) rgba(255, 255, 255, 0.1);
}

#mobile-menu .overflow-y-auto::-webkit-scrollbar {
    width: 6px;
}

#mobile-menu .overflow-y-auto::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

#mobile-menu .overflow-y-auto::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

/* Submenu animasyonları */
#mobile-menu .hidden {
    display: none;
}

#mobile-menu .mobile-submenu-toggle.active svg {
    transform: rotate(180deg);
}

#mobile-menu .mobile-submenu-toggle svg {
    transition: transform 0.3s ease;
}

/* Hover efektleri */
#mobile-menu a {
    transition: all 0.2s ease;
}

#mobile-menu a:hover {
    transform: translateX(5px);
}

#mobile-menu .hover\:pl-2:hover {
    padding-left: 0.5rem;
}

/* Kapatma butonu */
#close-mobile-menu {
    transition: transform 0.2s ease;
}

#close-mobile-menu:hover {
    transform: rotate(90deg);
}

/* Shadow for menu */
.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Transition utilities */
.transition-all {
    transition-property: all;
}

.transition-transform {
    transition-property: transform;
}

.duration-200 {
    transition-duration: 200ms;
}

.duration-300 {
    transition-duration: 300ms;
}

.ease-in-out {
    transition-timing-function: ease-in-out;
}

/* Fixed positioning */
.fixed {
    position: fixed;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.right-0 {
    right: 0;
}

.top-0 {
    top: 0;
}

.h-full {
    height: 100%;
}

.w-4\/5 {
    width: 80%;
}

.max-w-sm {
    max-width: 24rem;
}

/* Overflow */
.overflow-y-auto {
    overflow-y: auto;
}

/* Z-index */
.z-50 {
    z-index: 50;
}

/* Background opacity */
.bg-opacity-70 {
    --tw-bg-opacity: 0.7;
}

/* Border */
.border-b {
    border-bottom-width: 1px;
}

.border-t {
    border-top-width: 1px;
}

.border-gray-700 {
    border-color: rgba(55, 65, 81, 0.5);
}

.border-gold\/30 {
    border-color: rgba(204, 159, 82, 0.3);
}

/* Padding */
.p-2 {
    padding: 0.5rem;
}

.p-6 {
    padding: 1.5rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.pb-4 {
    padding-bottom: 1rem;
}

.pb-6 {
    padding-bottom: 1.5rem;
}

.pt-6 {
    padding-top: 1.5rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

/* Height calculation */
.h-\[calc\(100\%-80px\)\] {
    height: calc(100% - 80px);
}

/* Flex utilities */
.flex-1 {
    flex: 1 1 0%;
}

.justify-between {
    justify-content: space-between;
}

/* Space utilities */
.space-y-3>*+* {
    margin-top: 0.75rem;
}

.space-y-6>*+* {
    margin-top: 1.5rem;
}

.space-x-3>*+* {
    margin-left: 0.75rem;
}

/* MOBİL LAYOUT DÜZENİ */
@media (max-width: 767px) {
    header>.max-w-7xl {
        display: flex;
        align-items: center;
        width: 100%;
        position: relative;
    }

    /* Logo */
    .flex-shrink-0:first-child {
        width: 6rem;
        /* w-24 */
        flex-shrink: 0;
        padding: 1px 2px 1px 0px;
    }





    /* Slogan boyutu */
    .w-36 {
        width: 9rem !important;
        /* 144px */
        max-width: 100%;
    }

    .h-16 {
        height: 4rem !important;
        /* 64px */
    }

    /* Instagram boyutu */
    img[alt="Instagram"] {
        width: 40px !important;
        height: 40px !important;
    }

    /* Hamburger boyutu */
    #hamburger svg {
        width: 2rem !important;
        height: 2rem !important;
    }
}

/* PC DÜZENİ */
@media (min-width: 768px) {

    /* PC'de menü ve Instagram */
    .hidden.md\\:flex {
        display: flex !important;
        align-items: center;
    }

    /* Menüler arası boşluk */
    nav.space-x-4>*+* {
        margin-left: 0.5rem !important;
    }

    /* Menü ile Instagram arası boşluk */
    .ml-6 {
        margin-left: 1.5rem !important;
    }

    /* Slogan margin */
    .mx-4 {

        margin-right: 1rem !important;
    }

    /* Instagram boyutu */
    img[alt="Instagram"] {
        width: 50px !important;
        height: 50px !important;
    }
}

/* MODERN MOBİL MENÜ */
#mobile-menu {
    display: none;
}

#mobile-menu:not(.hidden) {
    display: block;
}

#mobile-menu .absolute {
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

#mobile-menu:not(.hidden) .absolute {
    transform: translateX(0);
}

/* Menü içeriği - TÜM MENÜLER ALT ALTA */
#mobile-menu .flex-col {
    display: flex;
    flex-direction: column;
}

#mobile-menu .space-y-4>*+* {
    margin-top: 1rem;
}

/* Hover efektleri */
#mobile-menu a {
    transition: all 0.2s ease;
}

#mobile-menu a:hover {
    color: var(--gold) !important;
    padding-left: 0.5rem;
}

/* Kapatma butonu */
#close-mobile-menu:hover {
    transform: rotate(90deg);
    transition: transform 0.2s ease;
}

/* Utility classes */
.flex-shrink-0 {
    flex-shrink: 0;
}

.flex-1 {
    flex: 1 1 0%;
}

.ml-4 {
    margin-left: 1rem;
}

.space-x-2>*+* {
    margin-left: 0.5rem;
}

.hidden {
    display: none !important;
}

/* CSS dosyanıza ekleyin */
.mobile-submenu-toggle svg {
    width: 22px !important;
    height: 22px !important;
}

/* Hamburger menüde alt menü linklerini düzenle */
#mobile-menu [id$="-sub"] a {
    color: #ffffff !important;
    /* Beyaz font */
    text-decoration: none !important;
    /* Altı çizili olmasın */
    font-weight: normal !important;
}

#mobile-menu [id$="-sub"] a:hover {
    color: #cc9f52 !important;
    /* Hover'da gold rengi */
    text-decoration: none !important;
    /* Hover'da da altı çizili olmasın */
}

/* Ana menü linklerini de düzenle (tutarlılık için) */
#mobile-menu a:not([id$="-sub"] a) {
    text-decoration: none !important;
    /* Ana menülerde de altı çizili olmasın */
}

/* Hamburger menüde alt menü içeriğini içeri kaydır */
#mobile-menu [id$="-sub"] {
    margin-left: 1rem !important;
    /* 16px içeri kaydırma */
    border-left: 1px solid rgba(204, 159, 82, 0.3) !important;
    /* İsteğe bağlı: sol kenar çizgisi */
    padding-left: 0.5rem !important;
    /* İçeriden biraz daha */
}

/* Alt menü linklerini de içeri hizala */
#mobile-menu [id$="-sub"] a {
    padding-left: 0.5rem !important;
}

/* Hover efekti için */
#mobile-menu [id$="-sub"] a:hover {
    padding-left: 1rem !important;
    /* Hover'da biraz daha kaydır */
}

#hamburger {
    background: transparent !important;
    border: none !important;
}

/* Önce tüm stilleri sıfırla */
#hamburger {
    all: unset;
    box-sizing: border-box;
}

/* Sonra istediğiniz stili uygula */
#close-mobile-menu {
    background: transparent !important;
    border: none !important;
    padding: 8px !important;
    margin: 0 !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}

/* SVG'yi görünür yap */
#close-mobile-menu svg {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 24px !important;
    height: 24px !important;
    color: #ffffff !important;
    stroke: #ffffff !important;
    fill: none !important;
}

/* Hover efekti */
#close-mobile-menu:hover svg {
    color: #cc9f52 !important;
    stroke: #cc9f52 !important;
}



/* Video Frame */
.video-frame-wrapper {
    background: linear-gradient(135deg, #cc9f52 0%, #d4af6a 50%, #cc9f52 100%);
    border-radius: 1rem;
    padding: 0.5rem;
    box-shadow: 0 20px 60px rgba(204, 159, 82, 0.4);
    max-width: 500px;
    margin: 0 auto 3rem;
}

.aspect-video {
    aspect-ratio: 16 / 9;
    width: 100%;
    border-radius: 0.75rem;
    overflow: hidden;
    background: black;
    position: relative;
}

.aspect-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.aspect-video button {
    cursor: pointer;
    border: none;
    outline: none;
}

.aspect-video button:hover .text-4xl {
    transform: scale(1.1);
    transition: transform 0.2s;
}

/* HERO SLIDER */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slides {
    position: relative;
    width: 100%;
    padding-bottom: 40%;
    /* 2.5:1 oran korunur */
    height: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    /* gizli varsayılan */
}

.hero-slide.active {
    display: block;
}

/* SLIDER BUTONLARI */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(204, 159, 82, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.8rem;
    z-index: 10;
    cursor: pointer;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

/* SLIDER NOKTALARI */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-dots .dot.active {
    background: #cc9f52;
    /* altın renk */
}

/* MOBİL */
@media (max-width: 768px) {
    .slider-btn {
        font-size: 28px;
        padding: 8px 12px;
    }
}

#main-content {
    margin-top: 500px;
    position: relative;
    z-index: 1;
    margin-top: 2rem;
}

.footer-logo img {
    max-width: 100px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.slogan {
    max-height: 80px !important;
    height: auto !important;
    width: auto !important;
    object-fit: contain;
    display: block;
}



/* Decor görselini tam olarak ortala */
.decor-image {
    text-align: center !important;
    margin: 0 0 0.5rem 0 !important;
}

.decor-image img {
    display: block !important;
    margin: 0 auto !important;
    max-width: 20% !important;
    height: auto !important;
}

.sidebar-pattern {
    width: 10%;
    background-image: url('/mirasfatih/images/fon-miras.png');
    background-repeat: repeat-y;
    background-position: left top;
    background-size: 100% auto;


}

footer {
    margin-top: 100px !important;
}

@media (min-width: 768px) {
    .main-content-area {
        width: 70% !important;

        padding: 0 0 0 2rem !important;

        margin-left: 70px !important;

    }
}

.content-section h1 {
    color: #cc9f52;
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
    font-weight: 600;
    text-align: center;
}

.page-layout {
    display: flex;
    min-height: 100vh;
}


.read-aloud-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1.2rem;
}

.read-aloud-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #cc9f52;
    color: #28283a;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.read-aloud-btn.stop {
    background: #6c757d;
    display: none;
}

.read-aloud-text {
    font-size: 0.95rem;
    color: #cc9f52;
}

/* Mobil (768px ve daha küçük) */
@media (max-width: 768px) {
    .main-content-area {
        width: 100%;
        padding-left: 0;
        /* ✅ Mobilde boşluk yok */
        margin-left: 0px !important;
        padding-right: 0rem;
        /* isteğe bağlı: sağda biraz boşluk kalabilir */
        padding-top: 0;
        padding-bottom: 0;
    }

    body {
        font-family: 'Proxima Nova', sans-serif;
        background-color: var(--antrasit);
        color: var(--white);
        padding-top: 98px !important;
    }
}

/* --- Masaüstü menü hover çerçeve efekti --- */
@media (min-width: 768px) {

    header nav>a,
    header .menu-dropdown>span {
        display: inline-block;
        padding: 0.5rem 0.75rem;
        /* içeride hafif padding, hover'da dengeli görünmesi için */
        border-radius: 4px;
        transition: all 0.2s ease;
    }

    header nav>a:hover,
    header .menu-dropdown:hover>span {
        border: 1px solid var(--gold);
        background-color: rgba(204, 159, 82, 0.05);
        /* çok hafif arka plan */
    }
}

/* --- Masaüstü menü hover:border efekti --- */
@media (min-width: 768px) {
    .menu-hover-border {
        display: inline-block;
        padding: 0.5rem 0.75rem !important;
        border-radius: 4px;
        transition: all 0.2s ease;
    }

    .menu-hover-border:hover {
        border: 1px solid var(--gold);
        background-color: rgba(204, 159, 82, 0.08);
    }
}

/* --- Masaüstü Özel Projeler Toggle Ok Döndürme --- */
#desktop-ozel-projeler {
    transition: all 0.2s ease;
}

#desktop-ozel-projeler:not(.hidden)+.ml-2,
#desktop-ozel-projeler:not(.hidden)~.ml-2 {
    /* Boş, sadece toggle mantığı için */
}

/* Özel Projeler toggle ok dönüşü */
[data-target="desktop-ozel-projeler"]:hover svg {
    color: var(--gold) !important;
}

/* JS ile ok döndürme için dinamik sınıf */
#desktop-ozel-projeler.active svg {
    transform: rotate(180deg);
}

/* --- Alt menü bağlantıları hover efekti (masaüstü) --- */
@media (min-width: 768px) {
    .dropdown-menu a {
        position: relative;
        transition: all 0.2s ease;
        border-radius: 4px;
    }

    .dropdown-menu a:hover {
        background-color: rgba(204, 159, 82, 0.08) !important;
        border: 1px solid var(--gold) !important;
        padding-left: 0.875rem !important;
        /* hafif sola kaydırmak için */
        margin: 0 4px !important;
        /* çerçeve için boşluk */
    }
}

/* --- Toggle ok ikonu daha küçük (ekstra netlik için) --- */
.w-3 {
    width: 0.75rem !important;
    /* 12px */
    height: 0.75rem !important;
}

/* ========== PC GÖRÜNÜMÜ İÇİN ÖZEL DÜZELTMELER ========== */

@media (min-width: 768px) {

    /* --- 1. Özel Projeler toggle ikonu: 30px, kalın --- */
    .ozel-toggle-icon {
        width: 30px !important;
        height: 30px !important;
        color: var(--antrasit) !important;
        transition: transform 0.2s ease, color 0.2s ease;
    }

    /* --- 2. Özel Projeler başlık hover: çerçeve + pointer --- */
    .ozel-projeler-header {
        border-radius: 5px;
        transition: all 0.2s ease;
    }

    .ozel-projeler-header:hover {
        background-color: rgba(204, 159, 82, 0.08);
        border: 1px solid var(--gold);
        margin: 0 4px;
    }

    .ozel-projeler-header:hover .ozel-toggle-icon {
        color: var(--gold) !important;
    }

    /* --- 3. Özel Projeler ALT MENÜSÜ: daha sağda başlasın --- */
    .ozel-projeler-sub {
        margin-left: 15px !important;
        /* dışa kaydırma */
        margin-top: 8px !important;
    }

    .ozel-sub-link {
        padding: 0.5rem 1rem !important;
        color: var(--antrasit) !important;
        text-decoration: none !important;
        white-space: nowrap;
        border-radius: 4px;
        transition: all 0.2s ease;
    }

    .ozel-sub-link:hover {
        background-color: rgba(204, 159, 82, 0.08) !important;
        border: 1px solid var(--gold) !important;
        padding-left: 1.125rem !important;
        margin: 0 4px !important;
    }

    /* --- 4. Projeler ve Fatih dropdown'larının içeriğine üstten BOŞLUK --- */
    .menu-dropdown .dropdown-menu {
        padding-top: 16px !important;
        /* önceki: py-2 → şimdi üstten ekstra boşluk */
        padding-bottom: 8px !important;
    }

    /* Dropdown menü bağlantılarının genel hover stili (tutarlılık için) */
    .menu-dropdown .dropdown-menu a {
        transition: all 0.2s ease;
        border-radius: 4px;
    }

    .menu-dropdown .dropdown-menu a:hover {
        background-color: rgba(204, 159, 82, 0.08) !important;
        border: 1px solid var(--gold) !important;
        padding-left: 1.125rem !important;
        margin: 0 4px !important;
    }
}

/* ========== PC GÖRÜNÜMÜ – ÖZEL PROJELER STİL TUTARLILIĞI ========== */

@media (min-width: 768px) {

    /* --- 1. "Özel Projeler" başlık yazısı: diğer menülerle TAM UYUMLU --- */
    .ozel-projeler-title {
        font-weight: 600 !important;
        /* diğer menülerdeki font-weight ile uyumlu */
        font-size: 1rem !important;
        /* masaüstü alt menü yazı boyutu */
        color: var(--antrasit) !important;
        line-height: 1.5 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* --- 2. Altın üst çizgi (divider) --- */
    .ozel-projeler-divider {
        height: 2px;
        background-color: var(--gold);
        margin: 0 12px 8px 12px !important;
        /* sağ-sol içeride, alttan boşluk */
        border-radius: 2px;
    }

    /* --- 3. Alt menü bağlantıları – yazı ve padding tutarlılığı --- */
    .ozel-sub-link {
        padding: 0.5rem 1rem !important;
        font-size: 1rem !important;
        color: var(--antrasit) !important;
        text-decoration: none !important;
        white-space: nowrap;
        border-radius: 4px;
        transition: all 0.2s ease;
        margin: 0 4px !important;
    }

    .ozel-sub-link:hover {
        background-color: rgba(204, 159, 82, 0.08) !important;
        border: 1px solid var(--gold) !important;
        padding-left: 1.125rem !important;
    }

    /* --- 4. Toggle ikonu ve header hover – zaten mevcut, sadece teyit --- */
    .ozel-projeler-header {
        border-radius: 5px;
        transition: all 0.2s ease;
    }

    .ozel-projeler-header:hover {
        background-color: rgba(204, 159, 82, 0.08);
        border: 1px solid var(--gold);
        margin: 0 4px;
    }

    .ozel-toggle-icon {
        width: 30px !important;
        height: 30px !important;
        color: var(--antrasit) !important;
        transition: transform 0.2s ease, color 0.2s ease;
    }

    .ozel-projeler-header:hover .ozel-toggle-icon {
        color: var(--gold) !important;
    }

    /* --- 5. Özel projeler alt menüsü konumu (daha sağda başlasın) --- */
    .ozel-projeler-sub {
        margin-left: 12px !important;
        margin-top: 8px !important;
    }
}

/* ========== PC GÖRÜNÜMÜ – ÖZEL PROJELER SON DÜZELTMELER ========== */

@media (min-width: 768px) {

    /* --- 1. "Özel Projeler" başlık: normal font, diğer menülerle aynı stil --- */
    .ozel-projeler-title {
        font-weight: normal !important;
        /* bold KALDIRILDI */
        font-size: 1rem !important;
        /* 16px – diğer alt menü öğeleriyle aynı */
        color: var(--antrasit) !important;
        line-height: 1.5 !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block;
    }

    /* --- 2. Toggle ikonu (30px, kalın) --- */
    .ozel-toggle-icon {
        width: 30px !important;
        height: 30px !important;
        color: var(--antrasit) !important;
        transition: transform 0.2s ease, color 0.2s ease;
    }

    /* --- 3. Header hover: çerçeve + pointer --- */
    .ozel-projeler-header {
        border-radius: 4px;
        transition: all 0.2s ease;
    }

    .ozel-projeler-header:hover {
        background-color: rgba(204, 159, 82, 0.08);
        border: 1px solid var(--gold);
        margin: 0 4px;
    }

    .ozel-projeler-header:hover .ozel-toggle-icon {
        color: var(--gold) !important;
    }

    /* --- 4. ALT MENÜ BAĞLANTILARI: sol kenarda altın çizgi (border-left) --- */
    .ozel-projeler-sub {
        margin-left: 16px !important;
        /* biraz daha içeride başlasın */
        margin-top: 8px !important;
        padding-left: 12px !important;
        /* çizgi için sol boşluk */
        border-left: 2px solid var(--gold) !important;
        /* 🟡 SOLDA ALTIN ÇİZGİ */
        padding-top: 4px !important;
        padding-bottom: 4px !important;
    }

    .ozel-sub-link {
        padding: 0.5rem 0.75rem !important;
        /* sağdan boşluk azaltıldı */
        font-size: 1rem !important;
        color: var(--antrasit) !important;
        text-decoration: none !important;
        white-space: nowrap;
        border-radius: 4px;
        transition: all 0.2s ease;
        margin: 0 4px 0 0 !important;
        /* sağda hafif boşluk */
        display: block;
    }

    .ozel-sub-link:hover {
        background-color: rgba(204, 159, 82, 0.08) !important;
        border: 1px solid var(--gold) !important;
        padding-left: 1rem !important;
        margin-left: 4px !important;
        /* hover'da sola kayma */
    }
}

/* Örnek: sadece içerik alanlarındaki paragraflar */
/*.main-content-area p,
.miras-content p,
.project-info p,
.text-content p,
.content-section p {
    text-indent: 2.5em;
    margin: 0 0 2.25rem 0;
}*/

.text-content {

    text-align: justify;
    flex: 1;
    color: #ffffff;
    font-size: 1.125rem;
    line-height: 1.8;
    text-align: justify;
}



/* paragraf başı girinti olmaması için */
.no-indent {
    text-indent: 0 !important;
}



/* ========== PROJELER MEGA MENU – KESİNTİSİZ İKİ SÜTUN ========== */
@media (min-width: 768px) {

    /* Üst menü barı referans al */
    #top-menu-bar {
        position: relative;
    }

    /* Projeler menüsü */
    #projeler-mega-menu {
        position: static;
    }

    /* Mega dropdown */
    #projeler-mega-menu .dropdown-menu {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        padding: 16px !important;
        background: white !important;
        border: 4px solid rgba(204, 159, 82, 0.3) !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
        border-radius: 8px !important;
        display: none !important;
        /* ✅ İKİ SÜTUN – YUKARIDAN AŞAĞI */
        column-count: 2 !important;
        column-gap: 24px !important;
        z-index: 30 !important;
    }

    /* Hover ile göster */
    #projeler-mega-menu:hover .dropdown-menu {
        display: block !important;
    }

    /* Her öğe sütun içinde bölünmesin */
    #projeler-mega-menu .dropdown-menu>* {
        break-inside: avoid !important;
        margin-bottom: 8px !important;
        display: block !important;
    }

    /* ✅ ALTIN İKON (●) */
    .mega-link::before {
        content: "●";
        color: var(--gold);
        margin-right: 5px;
        font-size: 0.75rem;
    }

    /* Özel Projeler başlığı */
    .ozel-projeler-mega-item {
        padding: 0 8px !important;
    }

    .ozel-projeler-title {
        font-weight: 600 !important;
        font-size: 1.05rem !important;
        color: var(--antrasit) !important;
        display: block;
    }

    /* ✅ ALT MENÜ: DİKEY ÇİZGİ + MARGIN */
    .ozel-projeler-sub {
        position: static !important;
        margin: 8px 0 0 !important;
        padding: 8px 0 0 !important;
        border-top: none !important;
        border-left: 4px solid var(--gold) !important;
        padding-left: 12px !important;
        margin-left: 16px !important;
        background: none !important;
        box-shadow: none !important;
        column-count: 1 !important;
        /* alt menü tek sütun */
    }

    /* Alt menü bağlantıları */
    .ozel-projeler-sub a {
        display: block !important;
        padding: 6px 0 !important;
        font-size: 0.95rem !important;
        color: var(--antrasit) !important;
        text-decoration: none !important;
        transition: all 0.2s ease;
    }

    .ozel-projeler-sub a:hover {
        color: var(--gold) !important;
        padding-left: 8px !important;
    }

    /* Toggle ikonu */
    .ozel-toggle-icon {
        width: 24px !important;
        height: 24px !important;
        color: var(--antrasit) !important;
    }

    /* ✅ GEÇİŞ KOLAYLAŞTIRMA: 300ms gecikmeli kapanma */
    #projeler-mega-menu .dropdown-menu {
        transition: opacity 0.2s ease, visibility 0.2s ease;
    }

    #projeler-mega-menu:hover .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
    }

    #projeler-mega-menu .dropdown-menu {
        opacity: 0 !important;
        visibility: hidden !important;
    }
}

/* Fatih dropdown menü bağlantılarına altın madde imi */
.menu-dropdown:not(#projeler-mega-menu) .dropdown-menu a::before {
    content: "●";
    color: var(--gold);
    margin-right: 8px;
    font-size: 0.75rem;
}

/* ========== GÜZELLEŞTİRİLMİŞ MENÜ PENCERELERİ ========== */
@media (min-width: 768px) {

    /* Tüm dropdown menüler */
    .menu-dropdown .dropdown-menu {
        background-color: #28283a !important;
        /* ✅ arka plan rengi */
        border: 4px solid var(--gold) !important;
        /* ✅ ince altın çerçeve */
        border-radius: 10px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
        padding: 16px !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: auto !important;
        /* ✅ genişleme sola doğru */
        min-width: 240px !important;
        z-index: 30 !important;
        display: none !important;
    }

    /* ✅ Tüm alt menü yazıları BEYAZ */
    .menu-dropdown .dropdown-menu a,
    .menu-dropdown .dropdown-menu span {
        color: #ffffff !important;
        font-size: 0.95rem !important;
    }

    /* Hover efekti – gold renk */
    .menu-dropdown .dropdown-menu a:hover {
        color: var(--gold) !important;
    }

    /* ========== PROJELER MEGA MENU ========== */
    #projeler-mega-menu .dropdown-menu {
        width: 100% !important;
        max-width: calc(105vw - 8px) !important;
        /* ✅ sağdan 8px boşluk */
        padding: 16px !important;
        display: grid !important;
        grid-template-columns: 1fr 24px 1fr !important;
        /* ✅ ortada motif için 24px boşluk */
        gap: 0 !important;
        align-items: start !important;
    }

    /* Sol ve sağ sütunlar */
    #projeler-mega-menu .mega-col-left,
    #projeler-mega-menu .mega-col-right {
        padding: 0 8px;
    }

    /* ✅ Ortadaki motif */
    #projeler-mega-menu .mega-divider {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        height: 100% !important;
    }

    #projeler-mega-menu .mega-divider img {
        width: 6px !important;
        /* çok küçük */
        height: auto !important;
        opacity: 0.6 !important;
    }

    /* "Özel Projeler" başlığı ve alt menüsü */
    .ozel-projeler-mega-item {
        grid-column: span 3 !important;
        /* tüm genişliği kapla */
        padding: 0 5px !important;
        margin-bottom: 12px !important;
    }

    .ozel-projeler-sub {
        grid-column: span 3 !important;
        margin-left: 24px !important;
        border-left: 2px solid var(--gold) !important;
        padding-left: 12px !important;
    }

    /* Madde imleri */
    .mega-link,
    .ozel-projeler-sub a,
    .fatih-link {
        position: relative;
        padding-left: 18px !important;
    }

    .mega-link::before,
    .ozel-projeler-sub a::before,
    .fatih-link::before {
        content: "●";
        color: var(--gold);
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.7rem;
    }
}

/* ========== GÜZELLEŞTİRİLMİŞ MENÜ PENCERELERİ – MASAÜSTÜ ========== */
@media (min-width: 768px) {

    /* Genel dropdown menü stili */
    .menu-dropdown .dropdown-menu {
        background-color: #28283a !important;
        border: 4px solid #cc9f52 !important;
        border-radius: 8px !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4) !important;
        padding: 12px !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: auto !important;
        min-width: 220px !important;
        z-index: 30 !important;
        display: none !important;
    }

    /* Tüm alt menü yazıları BEYAZ */
    .menu-dropdown .dropdown-menu a,
    .menu-dropdown .dropdown-menu span {
        color: #ffffff !important;
        font-size: 0.95rem !important;
    }

    .menu-dropdown .dropdown-menu a:hover {
        color: #cc9f52 !important;
    }

    /* ✅ FATİH MENÜSÜ: SAĞ KENAR HİZALAMASI */
    #fatih-dropdown {
        position: relative;
    }

    #fatih-dropdown .dropdown-menu {
        left: auto !important;
        right: -100px !important;
        /* "Fatih" kelimesinin SAĞ KENARI ile hizalanır */
        width: max-content !important;
        /* metin boyutuna göre */
        min-width: 200px !important;
    }

    /* ✅ PROJELER MEGA MENU – TAM İSTENEN ŞEKİLDE */
    #projeler-mega-menu .dropdown-menu {
        background-color: #28283a !important;
        border: 4px solid #cc9f52 !important;
        border-radius: 10px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
        padding: 16px !important;
        position: absolute !important;
        top: 48px !important;
        left: 0 !important;
        right: 8px !important;
        /* ✅ Sağdan 8px boşluk */
        width: calc(100% - 8px) !important;
        display: grid !important;
        grid-template-columns: 1fr 20px 1fr !important;
        gap: 0 !important;
        z-index: 30 !important;
        display: none !important;
    }

    /* Sütunlar */
    .mega-col-left,
    .mega-col-right {
        padding: 0 10px;
    }

    /* ✅ Ortadaki motif */
    .mega-divider {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        height: 100% !important;
    }

    .mega-divider img {
        width: 6px !important;
        height: auto !important;
        opacity: 0.7 !important;
    }

    /* Özel Projeler */
    .ozel-projeler-mega-item {
        grid-column: span 3 !important;
        padding: 0 5px !important;
        margin-bottom: 12px !important;
    }

    .ozel-projeler-title {
        font-weight: 600 !important;
        color: #ffffff !important;
        font-size: 1.05rem !important;
    }

    .ozel-projeler-sub {
        grid-column: span 3 !important;
        margin-left: 24px !important;
        border-left: 2px solid #cc9f52 !important;
        padding-left: 12px !important;
    }

    /* Madde imleri */
    .mega-link,
    .ozel-projeler-sub a {
        position: relative;
        padding-left: 18px !important;
        display: block !important;
        color: #ffffff !important;
        text-decoration: none !important;
    }

    .mega-link::before,
    .ozel-projeler-sub a::before {
        content: "●";
        color: #cc9f52;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.7rem;
    }
}





/* ========== YOUTUBE VİDEO GALERİSİ ========== */
.video-gallery-section {
    margin: 3rem 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.2rem;
    margin-top: 1rem;
}

.video-item {
    text-decoration: none;
    color: #ffffff;
    display: block;
}

.video-thumbnail {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(204, 159, 82, 0.9);
    color: #28283a;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s;
}

.video-item:hover .play-icon {
    opacity: 1;
}

.video-title {
    margin-top: 0.6rem;
    font-size: 0.95rem;
    text-align: center;
    line-height: 1.4;
}

/* LIGHTBOX */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 4000;
}

#lightbox img {
    max-width: 95%;
    max-height: 95%;
    border: 3px solid #cc9f52;
    border-radius: 0.5rem;
}

#close-lightbox {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(204, 159, 82, 0.85);
    color: white;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    font-size: 2.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4001;
}

/* Lightbox */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 4000;
}

#lightbox img {
    max-width: 95%;
    max-height: 95%;
    border: 3px solid #cc9f52;
    border-radius: 0.5rem;
}

#close-lightbox {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(204, 159, 82, 0.85);
    color: white;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    font-size: 2.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4001;
}

.comparison-section {
    margin: 3rem 0;
}

.comparison-title {
    color: #cc9f52;
    text-align: center;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.comparison-container {
    position: relative;
    width: 100%;
    height: 600px;
    max-width: 100%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-radius: 1rem;
}

.comparison-container img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
}

.img-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: inset(0 50% 0 0);
    z-index: 2;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #cc9f52;
    transform: translateX(-50%);
    z-index: 3;
    cursor: ew-resize;
    box-shadow: 0 0 10px rgba(204, 159, 82, 0.7);
}

.slider-handle::before,
.slider-handle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    background: #cc9f52;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}

.slider-handle::before {
    left: -15px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2328283a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.slider-handle::after {
    right: -20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2328283a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

/* ========== YOUTUBE VİDEO GALERİSİ ========== */
.video-gallery-section {
    margin: 3rem 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.2rem;
    margin-top: 1rem;
}

.video-item {
    text-decoration: none;
    color: #ffffff;
    display: block;
}

.video-thumbnail {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(204, 159, 82, 0.9);
    color: #28283a;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s;
}

.video-item:hover .play-icon {
    opacity: 1;
}

.video-title {
    margin-top: 0.6rem;
    font-size: 0.95rem;
    text-align: center;
    line-height: 1.4;
}


/*yukarı çık butonu */

.back-to-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 0.5rem;
    background: linear-gradient(135deg, #cc9f52 0%, #d4af6a 100%);
    color: #28283a;
    font-weight: 600;
    padding: 0.75rem;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(204, 159, 82, 0.4);
    transition: all 0.3s ease;
    z-index: 40;
    text-decoration: none;
    width: 50px;
    height: 50px;
    opacity: 0;
    visibility: hidden;
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(204, 159, 82, 0.6);
}

/* .full-content içindeki tüm h2 başlıklarını düzenle */

font-size: 20px !important;
/* Yazı boyutu 26px */
line-height: 1.4 !important;


page-title {

    font-size: 40px !important;
}


@media (max-width: 768px) {

    /* Üst menü barı referans al */
    .cover-image {

        margin: 0.3rem 0 !important;
    }



    .main-content-area {
        padding: 0 0rem !important;
        padding-right: 0rem !important;
        width: 100% !important;
    }



}

@media (min-width: 768px) {

    /* Üst menü barı referans al */
    .cover-image {

        margin: 2rem 0 !important;
    }

    .decor-image img {
        display: block !important;
        margin: 0 auto !important;
        max-width: 20% !important;
        height: auto !important;
    }

    .main-content-area {
        width: 80%;
        padding: 0 4rem;
    }


}