﻿/* =========================
   GLOBAL
========================= */
/*html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.7;
    background-color: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
}*/

/* =========================
   MAIN (NAVBAR OFFSET + BACKGROUND)
========================= */
/*main {
    flex: 1;
    background-color: #000;
    position: relative;
    overflow: hidden;
    padding-top: 80px;*/ /* FIXED NAVBAR ÇÖZÜMÜ */
/*}*/

    /* TÜM SAYFALAR LOGO BACKGROUND */
    /*main::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url("/assets/images/logo.png");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 60%;
        opacity: 0.07;
        pointer-events: none;
        z-index: 0;
    }*/

    /* İçerikler logo üstünde kalsın */
    /*main > * {
        position: relative;
        z-index: 1;
    }*/

/* =========================
   NAVBAR
========================= */
/*#mainNav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #000 !important;
    box-shadow: 0 6px 20px rgba(0,0,0,.7);
}

.navbar-brand {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.navbar-logo {
    height: 38px;
    width: auto;
}

.brand-text {
    font-weight: 700;
    letter-spacing: 0.18em;
    font-size: 0.95rem;
    color: #fff;
}*/

/* NAV LINKS */
/*.navbar .nav-link {
    color: #fff !important;
    transition: color .2s ease;
}

    .navbar .nav-link:hover {
        color: #cfcfcf !important;
    }*/

/* DROPDOWN */
/*.navbar .dropdown-menu {
    background-color: #000;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 6px;
    box-shadow: 0 12px 30px rgba(0,0,0,.7);
}

.navbar .dropdown-item {
    color: #fff;
    padding: 10px 22px;
    font-weight: 500;
}

    .navbar .dropdown-item:hover {
        background-color: #111;
        color: #fff;
    }*/

/* =========================
   BUTTONS
========================= */
/*.btn-primary {
    background-color: #0d6efd;
    border: none;
    transition: all .25s ease;
}

    .btn-primary:hover {
        background-color: #0b5ed7;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(13,110,253,.45);
    }*/

/* =========================
   HERO – ANA SAYFA
========================= */
/*.hero-split {
    min-height: calc(100vh - 80px);*/ /* navbar padding ile uyumlu */
    /*display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}*/

/* MERKEZ İÇERİK */
/*.hero-content {
    max-width: 900px;
    padding: 6rem 2rem;
}

    .hero-content h1 {
        font-size: 3.2rem;
        font-weight: 700;
        letter-spacing: 0.18em;
        margin-bottom: 2rem;
        color: #fff;
    }

    .hero-content p {
        font-size: 1.1rem;
        line-height: 1.9;
        color: #f1f1f1;
    }*/

/* =========================
   SECTIONS (ÜRETİM / KURUMSAL / HİZMETLER)
========================= */
/*.section-dark {
    background-color: transparent;
    color: #fff;
    padding: 6rem 0;
}

    .section-dark h2 {
        font-weight: 700;
        letter-spacing: 0.08em;
    }

    .section-dark p {
        max-width: 760px;
        margin: auto;
        opacity: 0.9;
    }*/

/* =========================
   SERVICES
========================= */
/*.service-card {
    background: #111;
    color: #fff;
    padding: 2.5rem 2rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,.4);
    transition: all .3s ease;
}

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(0,0,0,.7);
    }*/

/* =========================
   FOOTER
========================= */
/*.footer {
    background-color: #000;
    color: #aaa;
    padding: 3rem 0;
    font-size: 0.9rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

    .footer a {
        color: #aaa;
        text-decoration: none;
    }

        .footer a:hover {
            color: #fff;
        }*/

/* =========================
   RESPONSIVE
========================= */
/*@media (max-width: 991px) {

    .hero-content h1 {
        font-size: 2.2rem;
        letter-spacing: 0.14em;
    }

    .hero-content {
        padding: 4rem 1.5rem;
    }
}*/


/* =========================
   GLOBAL
========================= */
html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.7;
    background-color: #000 !important; /* 🔴 ARKA PLAN SİYAH */
    color: #fff !important;
    display: flex;
    flex-direction: column;
}

    /* =========================
   LOGO WATERMARK (HER YER)
========================= */
    body::before {
        content: "";
        position: fixed;
        inset: 0;
        background-image: url("/assets/images/logo.png");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 60%;
        opacity: 0.14; /* 🔥 LOGO ŞEFFAFLIK */
        pointer-events: none;
        z-index: 0;
    }

/* İçerikler watermark üstünde */
nav, main, footer {
    position: relative;
    z-index: 1;
}

/* =========================
   MAIN
========================= */
main {
    flex: 1;
    background-color: transparent;
    padding-top: 80px; /* FIXED NAVBAR */
}

/* =========================
   NAVBAR
========================= */
#mainNav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #000 !important;
    box-shadow: 0 6px 20px rgba(0,0,0,.7);
}

.navbar-brand {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.navbar-logo {
    height: 38px;
}

.brand-text {
    font-weight: 700;
    letter-spacing: 0.18em;
    font-size: 0.95rem;
    color: #fff;
}

/* NAV LINKS */
.navbar .nav-link {
    color: #fff !important;
}

    .navbar .nav-link:hover {
        color: #cfcfcf !important;
    }

/* DROPDOWN */
.navbar .dropdown-menu {
    background-color: #000;
    border: 1px solid rgba(255,255,255,.1);
}

.navbar .dropdown-item {
    color: #fff;
}

    .navbar .dropdown-item:hover {
        background-color: #111;
    }

/* =========================
   HERO – ANASAYFA
========================= */
.hero-split {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: transparent;
}

.hero-content {
    max-width: 900px;
    padding: 6rem 2rem;
}

    .hero-content h1 {
        font-size: 3.2rem;
        font-weight: 700;
        letter-spacing: 0.18em;
        color: #fff;
    }

    .hero-content p {
        font-size: 1.1rem;
        color: #fff;
    }

/* =========================
   SECTIONS
========================= */
.section-dark {
    background-color: transparent;
    color: #fff;
    padding: 6rem 0;
}

    .section-dark h2,
    .section-dark p {
        color: #fff;
    }

/* =========================
   SERVICES
========================= */
.service-card {
    background: rgba(255,255,255,0.05);
    color: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    transition: .3s;
}

    .service-card:hover {
        background: rgba(255,255,255,0.08);
    }

/* =========================
   FOOTER (TAM SAYDAM)
========================= */
.footer {
    background-color: transparent;
    color: #aaa;
    padding: 3rem 0;
    text-align: center;
}

    .footer a {
        color: #aaa;
    }

        .footer a:hover {
            color: #fff;
        }

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
}
/* =========================
   HERO VIDEO
========================= */
.hero-video {
    margin-top: 5rem;
    width: 11000px;
    max-width: 94%;
}

    .hero-video video {
        width: 100%;
        border-radius: 14px;
        box-shadow: 0 15px 40px rgba(0,0,0,.6);
        opacity: 0.95;
    }

/* MOBİLDE VİDEOYU GİZLE */
@media (max-width: 768px) {
    .hero-video {
        display: none;
    }
}
