﻿:root {
    --bg: #0b0e14;
    --anth: #1f232a;
    --anth2: #2a303a;
    --gold: #d4af37;
    --gold2: #ffde7a;
    --text: #f3f5f7;
    --muted: rgba(255,255,255,.72);
    --muted2: rgba(255,255,255,.56);
    --glass: rgba(10,12,16,.62);
    --glass2: rgba(10,12,16,.74);
    --stroke: rgba(255,255,255,.10);
}

html, body {
    height: 100%
}

body {
    margin: 0;
    min-height: 100vh;
    background-color: var(--bg);
    /* ✅ senin yeni desenin */
    background-image: url("img/arkaplanseffaf.png");
    background-repeat: repeat;
    background-size: 1920px auto; /* istersen 420-700 arası oynat */
}

/* TOP BAR */
.topbar {
    background: linear-gradient(90deg, rgba(31,35,42,.94), rgba(42,48,58,.94));
    color: rgba(255,255,255,.92);
    font-size: 14px;
}

    .topbar a {
        color: rgba(255,255,255,.92);
        text-decoration: none
    }

    .topbar .sep {
        opacity: .35;
        padding: 0 .6rem
    }

/* BUTTONS */
.btn-gold {
    background: var(--gold);
    border-color: var(--gold);
    color: #141007;
    font-weight: 900;
}

    .btn-gold:hover {
        filter: brightness(.96);
        color: #141007
    }

/* NAVBAR */
.om-navbar {
    position: sticky;
    top: 0;
    z-index: 1055;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,.06);
    padding: 18px 0;
    transition: .25s ease;
    overflow: visible !important;
}

    .om-navbar.scrolled {
        padding: 10px 0;
        box-shadow: 0 10px 30px rgba(0,0,0,.08);
    }

    /* navbar metalik shine */
    .om-navbar::before {
        content: "";
        position: absolute;
        top: -40%;
        left: -60%;
        width: 55%;
        height: 180%;
        background: linear-gradient(120deg, transparent 0%, rgba(212,175,55,.10) 35%, rgba(255,255,255,.12) 50%, rgba(212,175,55,.10) 65%, transparent 100%);
        transform: rotate(10deg);
        opacity: 0;
        transition: opacity .25s ease;
        pointer-events: none;
    }

    .om-navbar:hover::before {
        opacity: 1;
        animation: navShine 1.2s ease-in-out
    }

@keyframes navShine {
    0% {
        left: -70%
    }

    100% {
        left: 120%
    }
}

/* NAV ALIGN (sol | logo | sağ) */
.om-center-nav {
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.om-nav-left, .om-nav-right {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.om-nav-left {
    justify-content: flex-end
}

.om-nav-right {
    justify-content: flex-start
}

.om-brand-center {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center
}

/* MENU */
.om-nav {
    gap: 18px;
    align-items: center
}

    .om-nav .nav-link {
        font-weight: 800;
        color: #2b2f36;
        padding: .25rem .1rem;
        position: relative;
        white-space: nowrap;
    }

        .om-nav .nav-link:hover {
            color: #111318
        }

        .om-nav .nav-link::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -12px;
            height: 2px;
            background: var(--gold);
            transform: scaleX(0);
            transform-origin: center;
            transition: transform .2s ease;
            opacity: .95;
        }

        .om-nav .nav-link:hover::after {
            transform: scaleX(1)
        }

        .om-nav .nav-link.active {
            color: #111318
        }

            .om-nav .nav-link.active::after {
                transform: scaleX(1)
            }

/* Dropdown */
.om-dd {
    border-radius: 14px;
    padding: 10px;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

    .om-dd .dropdown-item {
        border-radius: 10px;
        padding: 10px 12px;
        font-weight: 700;
    }

        .om-dd .dropdown-item:hover {
            background: rgba(212,175,55,.14);
            color: #111318;
        }

/* LOGO */
.logo-container {
    width: 460px;
    max-width: 100%;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

.om-logo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    
}

.om-navbar.scrolled .logo-container {
    width: 360px
}

/* logo hover parıltı */
.logo-container::after {
    content: "";
    position: absolute;
    top: -60%;
    left: -80%;
    width: 60%;
    height: 220%;
    background: linear-gradient(120deg, transparent 0%, rgba(212,175,55,.16) 45%, rgba(255,255,255,.16) 50%, rgba(212,175,55,.16) 55%, transparent 100%);
    transform: rotate(12deg);
    opacity: 0;
    pointer-events: none;
}

.logo-container:hover::after {
    opacity: 1;
    animation: logoSpark 1.0s ease-in-out
}

@keyframes logoSpark {
    0% {
        left: -90%
    }

    100% {
        left: 130%
    }
}

/* HERO (okunurluk için) */
.hero {
    position: relative;
    padding: 92px 0;
    color: var(--text);
}

    /* ✅ metinlerin net görünmesi için koyu overlay */
    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0,0,0,.68), rgba(0,0,0,.55));
        pointer-events: none;
        z-index: 0;
    }

    /* hafif altın sheen (çok düşük) */
    .hero::after {
        content: "";
        position: absolute;
        top: -60%;
        left: -80%;
        width: 60%;
        height: 220%;
        background: linear-gradient(120deg, transparent 0%, rgba(212,175,55,.08) 45%, rgba(255,255,255,.08) 50%, rgba(212,175,55,.08) 55%, transparent 100%);
        transform: rotate(12deg);
        opacity: .10;
        animation: heroSheen 10s linear infinite;
        pointer-events: none;
        z-index: 0;
    }

@keyframes heroSheen {
    0% {
        left: -90%
    }

    100% {
        left: 140%
    }
}

.hero .container {
    position: relative;
    z-index: 1
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .35rem .75rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(8px);
    font-weight: 700;
    font-size: .95rem;
    color: rgba(255,255,255,.86);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--gold);
    display: inline-block;
}

.gold {
    color: var(--gold)
}

.hero-meta {
    color: var(--muted)
}

.hero-p {
    color: rgba(255,255,255,.88)
}

/* SECTIONS */
.section {
    padding: 80px 0
}

/* Cam yüzeyler */
.surface {
    border-radius: 22px;
    border: 1px solid var(--stroke);
    box-shadow: 0 18px 55px rgba(0,0,0,.18);
}

.surface-light {
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(6px);
}

.surface-dark {
    background: var(--glass2);
    backdrop-filter: blur(8px);
}

/* Section içerikleri okunur olsun */
.section h2 {
    color: var(--text)
}

.section p {
    color: var(--muted)
}

/* PRODUCTS */
.products-section {
    padding: 90px 0
}

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.10);
    transition: .35s ease;
    box-shadow: 0 20px 50px rgba(0,0,0,.40);
}

    .product-card img {
        width: 100%;
        height: 420px;
        object-fit: cover;
        transition: .5s ease;
    }

    .product-card:hover img {
        transform: scale(1.08)
    }

    .product-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 22px;
        padding: 2px;
        background: linear-gradient(45deg,var(--gold),var(--gold2),var(--gold));
        -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0;
        transition: .35s;
    }

    .product-card:hover::before {
        opacity: 1
    }

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,.88));
    text-align: center;
}

    .product-overlay h5 {
        color: #fff;
        font-weight: 900;
        letter-spacing: 2px;
        margin: 0;
    }

.product-card:hover .product-overlay h5 {
    color: var(--gold)
}

/* FOOTER */
.footer {
    padding: 50px 0
}

.footer-sub {
    color: var(--muted)
}

.footer-link {
    color: rgba(255,255,255,.88);
    text-decoration: none
}

    .footer-link:hover {
        color: var(--gold)
    }

.footer-hr {
    border-color: rgba(255,255,255,.14)
}

/* Desktop dropdown hover */
@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: .4rem;
        animation: ddIn .12s ease-out;
    }

    .navbar .dropdown-menu {
        margin-top: .4rem
    }
}

@keyframes ddIn {
    from {
        opacity: 0;
        transform: translateY(-6px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* Mobile tweaks */
@media (max-width: 992px) {
    .om-center-nav {
        align-items: flex-start
    }

    .om-brand-center {
        order: -1;
        width: 100%;
        justify-content: center;
        margin: 10px 0;
    }

    .om-nav-left, .om-nav-right {
        flex: 0 0 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 10px;
    }

    .om-nav .nav-link::after {
        display: none
    }
}

/* Motion reduce */
@media (prefers-reduced-motion: reduce) {
    .om-navbar::before,
    .logo-container::after,
    .hero::after {
        animation: none !important;
        transition: none !important;
    }
}
/* === Rich text (açıklama metinleri) === */
.richtext {
    color: #3b3f46;
    font-size: 16px;
    line-height: 1.8;
}

    .richtext h3 {
        font-size: 20px;
        font-weight: 800;
        margin: 18px 0 10px;
        color: #1f232a;
    }

    .richtext h4 {
        font-size: 16px;
        font-weight: 800;
        margin: 14px 0 8px;
        color: #1f232a;
    }

    .richtext p {
        margin: 0 0 12px;
    }

    .richtext ul {
        margin: 0 0 12px 18px;
        padding: 0;
    }

    .richtext li {
        margin: 6px 0;
    }

    .richtext .note {
        margin-top: 14px;
        padding: 12px 14px;
        border-radius: 14px;
        background: rgba(212,175,55,.10);
        border: 1px solid rgba(212,175,55,.22);
    }

    .richtext .grid-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

@media (max-width: 768px) {
    .richtext .grid-2 {
        grid-template-columns: 1fr;
    }
}
/* ===========================
   READABILITY & COLOR TUNING
   (paste to END of style1.css)
   =========================== */

/* 1) Cam yüzeyleri biraz daha "açık" yap (okunurluk artar) */
.surface-light {
    background: rgba(255,255,255,.12) !important;
    border-color: rgba(255,255,255,.12) !important;
}

/* İstersen bazı bölümler daha net olsun diye: */
/* .surface-light{ background: rgba(255,255,255,.16) !important; } */

/* 2) Section başlık ve paragrafları daha dengeli */
.section h2 {
    color: rgba(255,255,255,.96) !important;
}

.section p {
    color: rgba(255,255,255,.78) !important;
}

/* 3) Bootstrap text-secondary cam yüzeylerde çok gri kalmasın */
.surface-light .text-secondary {
    color: rgba(255,255,255,.80) !important;
}

/* 4) Richtext: cam yüzey üstünde açık renk + daha profesyonel vurgular */
.surface-light .richtext {
    color: rgba(255,255,255,.82) !important;
}

    .surface-light .richtext h3,
    .surface-light .richtext h4 {
        color: rgba(255,255,255,.96) !important;
    }

    /* Liste ve madde işaretleri */
    .surface-light .richtext ul,
    .surface-light .richtext ol {
        color: rgba(255,255,255,.78) !important;
    }

    .surface-light .richtext li {
        color: rgba(255,255,255,.78) !important;
    }

    /* Not kutusu: altın vurgulu ama bağırmayan */
    .surface-light .richtext .note {
        background: rgba(212,175,55,.10) !important;
        border: 1px solid rgba(212,175,55,.28) !important;
        color: rgba(255,255,255,.88) !important;
    }

/* 5) Linkler (özellikle cam yüzey içinde) */
.surface-light a {
    color: var(--gold) !important;
    text-decoration: none;
}

    .surface-light a:hover {
        color: var(--gold2) !important;
        text-decoration: underline;
    }

/* 6) Kurumsal Bilgiler / kart gibi bloklarda beyaz zemin kullanıyorsan (p-3 bg-white vb.) */
.bg-white {
    background: rgba(255,255,255,.96) !important;
}

    .bg-white,
    .bg-white .text-secondary {
        color: #2a303a !important;
    }

/* 7) Navbar beyaz zeminde link kontrastını biraz yumuşat */
.om-navbar {
    background: rgba(255,255,255,.92) !important;
}

.om-nav .nav-link {
    color: #2a303a !important;
}

    .om-nav .nav-link:hover,
    .om-nav .nav-link.active {
        color: #111318 !important;
    }

/* Dropdown okunurluk */
.om-dd {
    background: rgba(255,255,255,.98) !important;
}

    .om-dd .dropdown-item {
        color: #2a303a !important;
    }

        .om-dd .dropdown-item:hover {
            background: rgba(212,175,55,.14) !important;
            color: #111318 !important;
        }

/* 8) Logo arkasındaki "grilik" için net çözüm (eğer container bir şey alıyorsa) */
.logo-container,
.om-logo {
    background: transparent !important;
}

/* 9) Hero metinleri biraz daha "premium" görünür */
.hero-p {
    color: rgba(255,255,255,.86) !important;
}

.hero-meta {
    color: rgba(255,255,255,.74) !important;
}