/* ====== Renk Değişkenleri ====== */
:root {
    --main: #b7ff30;
    /* ana neon */
    --second: #86ea3b;
    /* ikincil neon */
    --bg: #0c1310;
    /* ana arka plan */
    --bg-dark: #050807;
    /* daha koyu */
    --text: #eaf5ec;
    /* açık metin */
    --text-soft: #b7c3bc;
    /* yumuşak metin */
    --hover: #ccff57;
    /* hover aydınlık */
    --shade-1: #10211b;
    /* kart/hover arka plan */
    --grad-1: #0d1f18;
    /* gradyan başlangıç */
    --grad-2: #0d1722;
    /* gradyan bitiş */
    --shadow: 0 10px 30px rgba(0, 0, 0, .35);

    /* ölçüler */
    --container: 1200px;
    --radius: 16px;
    --speed: .6s;
}

/* ====== Global ====== */
* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0
}

body {
    font: 500 16px/1.5 Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background: linear-gradient(160deg, var(--grad-1), var(--grad-2));
}


/* Scrollbar genişliği */
::-webkit-scrollbar {
    width: 8px;
}

/* Scrollbar track (arka plan) */
::-webkit-scrollbar-track {
    background: var(--grad-1);
    /* Koyu zemin */
}

/* Scrollbar thumb (kaydırma çubuğu) */
::-webkit-scrollbar-thumb {
    background: var(--main) ;
    /* Ana renk */
    transition: background 0.3s;
}

/* Hover’da renk değişimi */
::-webkit-scrollbar-thumb:hover {
    background: var(--second);
    /* Hover’da hafif daha açık ton */
}
/*NAVBAR------------------------------------------------------------------------------------------------------------------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: saturate(160%) blur(8px);
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.nav-wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 14px 20px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
}

.brand-logo {
    height: 34px;
    width: auto;
    display: block
}

.nav-links {
    display: flex;
    gap: 28px;
    justify-content: center
}

.nav-links a {
    color: var(--text-soft);
    text-decoration: none;
    transition: color .2s ease;
}

.nav-links a:hover {
    color: var(--hover)
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px
}

.icon-link {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 6px;
    color: var(--text);

    text-decoration: none;
    transition: transform .15s ease, background .2s ease, color .2s;
}

.icon-link:hover {
    transform: translateY(-2px);
    color: var(--hover)
}

.btn {
    --p: 12px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: var(--p);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    box-shadow: var(--shadow);
}

.btn-primary {
    background: var(--main);
    color: #0b120f;
}

.btn-primary:hover {
    background: var(--hover);
    transform: translateY(-1px)
}

.btn-accent {
    background: var(--main);
    color: #0b120f;
}

.btn-accent:hover {
    background: var(--hover);
    transform: translateY(-1px)
}

.btn-ghost {
    background: rgba(255, 255, 255, .06);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: none;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .12);
    color: var(--hover)
}

/* ===== Mobil Toggle ===== */
.menu-toggle {
    display: none;
    border: 0;
    color: var(--text);
    width: 42px;
    height: 42px;
    border-radius: 8px;
    cursor: pointer;
    place-items: center;
    font-size: 22px;
    background: transparent;
}

.menu-toggle i {
    font-size: 24px
}

.menu-toggle:hover {
    background: #162d24;
    color: var(--hover)
}

/* ===== Drawer & Scrim ===== */
.scrim {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

.scrim.show {
    opacity: 1;
    pointer-events: auto
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(88vw, 420px);
    background:
        radial-gradient(600px 400px at 70% 0%, rgba(183, 255, 48, .08), transparent 60%),
        linear-gradient(160deg, var(--bg-dark), #0b1411);
    border-left: 1px solid rgba(255, 255, 255, .06);
    transform: translateX(100%);
    transition: transform .28s ease-out;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    z-index: 1100;
}

.mobile-drawer.show {
    transform: translateX(0)
}

.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 2px 12px;
}

.menu-close {
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: 28px;
    cursor: pointer;
}

.menu-close:hover {
    color: var(--hover)
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
}

.drawer-link:hover {
    background: rgba(255, 255, 255, .08);
    color: var(--hover)
}

.drawer-actions {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

/* ===== Kırılımlar ===== */
@media (max-width: 992px) {
    .nav-links {
        display: none
    }

    .nav-cta {
        display: none
    }



    .container {
        padding: 56px 20px
    }

    .hero {
        min-height: 84vh
    }

    .menu-toggle {
        display: grid;
        justify-self: end;
        /* <-- SAĞA YASLA */
    }
}

/* scroll kilidi */
body.no-scroll {
    overflow: hidden;
}

/*NAVBAR------------------------------------------------------------------------------------------------------------------- */
/* ====== Sections / Containers ====== */
.section {
    position: relative;
    overflow: visible;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 64px 20px
}

/*HERO------------------------------------------------------------------------------------------------------ */
/* ====== Hero ====== */
.hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
    background: transparent;
    overflow-x: clip; 
}

.bg-grad {
    position: absolute;
    inset: 0;
    background: none;
    pointer-events: none;
}

.bg-vignette {
    position: absolute;
    inset: -10%;
    background: none;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.hero-title {
    font-size: clamp(36px, 4.2vw, 64px);
    line-height: 1.05;
    margin: 0 0 22px;
    letter-spacing: -.02em;
}

.accent {
    color: var(--main)
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.camera-img {
    width: min(520px, 100%);
    height: auto;
    display: block;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .5));
}

/* ====== Fade-in Animasyonu ====== */
.fadein {
    opacity: 0;
    transform: translateY(18px);
    animation: fadeInUp var(--speed) ease forwards;
}

.fadein.delay-1 {
    animation-delay: .15s
}

.fadein.delay-2 {
    animation-delay: .3s
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* Basit responsive kırılım (PC odaklı; mobil daha sonra) */
@media (max-width: 992px) {
    .nav-links {
        display: none
    }

    /* şimdilik sadece PC navbar */
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: left
    }

    .camera-img {
        margin: 10px auto 0;
        width: min(520px, 100%);
    }
}

/*HERO------------------------------------------------------------------------------------------------------ */
/*INTRO------------------------------------------------------------------------------------------------------ */
/* ===== INTRO CARDS ===== */
.intro {

    position: relative;
}


.intro-vignette {
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
}

.intro-grid {
    display: grid;
    gap: 40px;
    align-items: center;
    grid-template-columns: .9fr 1.1fr;
    /* solda kartlar, sağda metin */
}

.cards-wrap {
    position: relative;
    min-height: 260px;
}

.intro-card {
    position: absolute;
    width: min(520px, 92%);
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .45));
    border-radius: 24px;
}

.card-top {
    top: -10px;
    left: -6px;
    transform: rotate(-13deg);
}

.card-bottom {
    bottom: -6px;
    left: 18px;
    transform: rotate(-3deg);
}

.intro-title {
    font-size: clamp(40px, 6vw, 88px);
    line-height: .95;
    margin: 0 0 12px;
}

.intro-text {
    color: var(--text-soft);
    max-width: 52ch;
    margin: 0 0 18px;
}

.accent-gradient {
    background: linear-gradient(90deg, var(--main) 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

/* Responsive */
@media (max-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .cards-wrap {
        min-height: 220px
    }

    .card-top {
        width: 90%
    }

    .card-bottom {
        width: 90%
    }

    .intro-title {
        font-size: clamp(36px, 18vw, 64px);
    }
}

@media (max-width: 520px) {
    .cards-wrap {
        min-height: 200px
    }

    .card-top {
        transform: rotate(-10deg)
    }

    .card-bottom {
        transform: rotate(-2deg)
    }
}

/*INTRO------------------------------------------------------------------------------------------------------ */
/*SERVICES------------------------------------------------------------------------------------------------------ */
/* ===== Section başlık ===== */
.section-title {
    text-align: center;
    font-size: clamp(36px, 6.2vw, 96px);
    margin: 0 0 28px;
    color: var(--main);
    letter-spacing: -0.02em;
}

/* ===== Hizmetler grid ===== */
.services {
    /* background YOK; body neyse o */
    /* boş: body gradyanı geçiyor */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 32px;
    max-width: 1040px;
    margin: 0 auto;
}

/* ===== Kart ===== */
.service-card {
    position: relative;
    display: block;
    padding: 22px 24px;
    border-radius: 22px;
    text-decoration: none;
    color: var(--text);
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .06),
        0 10px 24px rgba(0, 0, 0, .35);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
    backdrop-filter: blur(2px);
}

.service-card:hover {
    transform: translateY(-2px);
    border-color: rgba(204, 255, 87, .55);
    background: rgba(255, 255, 255, .06);
    box-shadow:
        0 14px 34px rgba(0, 0, 0, .45),
        0 0 0 3px rgba(183, 255, 48, .09);
}

/* Başlık + alt metin */
.svc-title {
    font-size: clamp(18px, 2.2vw, 26px);
    font-weight: 700;
    color: var(--main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.svc-title i {
    font-size: 1.2em
}

.svc-sub {
    margin-top: 6px;
    color: var(--text-soft);
    font-size: 14.5px;
}

/* Son tek kartı ortaya hizala (5. kart) */
.services-grid>.service-card:last-child {
    grid-column: 1 / -1;
    max-width: 720px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px
    }

    .services-grid>.service-card:last-child {
        grid-column: auto;
        max-width: none;
        margin: 0;
    }
}

/*SERVICES------------------------------------------------------------------------------------------------------ */
/*TEAM------------------------------------------------------------------------------------------------------ */
/* ===== EKİBİMİZ ===== */
.team {
    /* arkaplan yok; body gradyanı geçer */
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 32px;
    max-width: 1040px;
    margin: 0 auto;
}

.team-card {
    position: relative;
    display: grid;
    grid-template-columns: 300px 1fr;
    /* görsel | metin */
    align-items: center;
    min-height: 220px;
    padding: 18px 22px;
    border-radius: 26px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .06),
        0 10px 24px rgba(0, 0, 0, .35);
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
    backdrop-filter: blur(2px);
}

.team-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .06);
    border-color: rgba(204, 255, 87, .45);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .45), 0 0 0 3px rgba(183, 255, 48, .06);
}

/* medya */
.team-media {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.team-media img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, .45));
    pointer-events: none;
    user-select: none;
}

/* metin */
.team-copy {
    padding: 8px 6px 8px 10px
}

.team-name {
    margin: 0 0 4px;
    font-size: clamp(22px, 3vw, 32px);
    letter-spacing: .2px;
    font-weight: 800;
}

.team-role {
    margin: 0;
    color: var(--text-soft);
    font-size: 15px
}

/* sağa hizalı kart (Mustafa) */
.team-card.is-reverse {
    grid-template-columns: 1fr 300px;
    /* metin | görsel */
}

.team-card.is-reverse .team-media {
    order: 2;
    justify-content: flex-end
}

.team-card.is-reverse .team-copy {
    order: 1;
    text-align: right;
    padding-right: 10px
}

/* isim gradyanı */
.name-gradient {
    background: linear-gradient(90deg, #b7ff30 0%, #ccff57 45%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* responsive */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 18px
    }

    .team-card,
    .team-card.is-reverse {
        grid-template-columns: 140px 1fr;
        min-height: 170px;
    }
}

@media (max-width: 560px) {

    .team-card,
    .team-card.is-reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .team-card .team-media,
    .team-card.is-reverse .team-media {
        order: 1;
        justify-content: center;
        min-height: 120px;
    }

    .team-card .team-copy,
    .team-card.is-reverse .team-copy {
        order: 2;
        text-align: center;
        padding: 6px 0 12px;
    }
}

/*TEAM------------------------------------------------------------------------------------------------------ */
/*PORTFOY------------------------------------------------------------------------------------------------------ */
/* ===== PORTFÖY ===== */
.portfolio {
    /* background yok */
}

.pf-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 28px;
    max-width: 1040px;
    margin: 0 auto;
}

.pf-card {
    display: block;
    padding: 18px;
    border-radius: 20px;
    color: var(--text);
    text-decoration: none;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .06),
        0 10px 24px rgba(0, 0, 0, .35);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
    backdrop-filter: blur(2px);
}

.pf-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .06);
    border-color: rgba(204, 255, 87, .45);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .45), 0 0 0 3px rgba(183, 255, 48, .06);
}

/* üst satır */
.pf-head {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
}

.pf-title {
    margin: 0;
    font-weight: 700;
    font-size: clamp(16px, 2.1vw, 22px);
    color: var(--main);
}

.pf-ext {
    color: var(--text-soft);
    font-size: 18px
}

.pf-card:hover .pf-ext {
    color: var(--hover)
}

.pf-sub {
    margin: 4px 0 12px;
    color: var(--text-soft);
    font-size: 14px;
}

/* görsel alanı */
.pf-media {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: transparent;
    padding: 24px;
    aspect-ratio: 16/9;
    /* boyutlar sabit */
}

.pf-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: saturate(1.05) contrast(1.02);
    transition: transform .25s ease, opacity .25s ease;
}

.pf-play {
    position: absolute;
    left: 12px;
    bottom: 10px;
    font-size: 28px;
    color: rgba(255, 255, 255, .9);
    text-shadow: 0 6px 18px rgba(0, 0, 0, .55);
    opacity: .9;
    pointer-events: none;
}

.pf-card:hover .pf-media img {
    transform: scale(1.03)
}

/* responsive */
@media (max-width: 992px) {
    .pf-grid {
        grid-template-columns: 1fr;
        gap: 18px
    }
}

/*PORTFOY------------------------------------------------------------------------------------------------------ */
/*ABOUT------------------------------------------------------------------------------------------------------ */
/* ===== Hakkımızda ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 1040px;
    margin: 0 auto;
}

.about-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 20px;
    padding: 24px 28px;
    backdrop-filter: blur(3px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 10px 24px rgba(0, 0, 0, .35);
}

.about-title {
    margin: 0 0 12px;
    color: var(--main);
    font-size: clamp(20px, 2.3vw, 28px);
}

.about-card p {
    color: var(--text);
    font-size: 15.5px;
    margin: 0 0 12px;
    line-height: 1.6;
}

.about-values {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 4px 12px;
}

.about-values li {
    color: var(--text-soft);
    font-size: 15px;
    border: 1px solid var(--hover);
    border-radius: 8px;
    padding: 3px;
    text-align: center;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 18px
    }
}

/*ABOUT------------------------------------------------------------------------------------------------------ */
/*CONTACT------------------------------------------------------------------------------------------------------ */
/* ===== İLETİŞİM ===== */
.contact-card {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 18px;
    align-items: center;
    padding: 22px 28px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06),
        0 10px 24px rgba(0, 0, 0, .35);
    backdrop-filter: blur(3px);
    max-width: 720px;
    margin: 0 auto;
}

.contact-media img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .4));
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.contact-name {
    margin: 0;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    color: var(--main);
}

.contact-role {
    margin: 0;
    font-size: 14px;
    color: var(--text-soft);
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}

.contact-actions .btn {
    font-weight: 600;
    font-size: 15px;
    border-radius: 14px;
}

.contact-actions .btn i {
    font-size: 1.2em
}

@media (max-width: 600px) {
    .contact-card {
        grid-template-columns: 1fr;
        text-align: center
    }

    .contact-actions {
        justify-content: center
    }
}

/*CONTACT------------------------------------------------------------------------------------------------------ */
/*FOOTER------------------------------------------------------------------------------------------------------ */
/* ===== FOOTER ===== */
.footer {
    background: var(--main);
    /* lime arka plan */
    color: #000;
    margin-top: 64px;
}

.footer-wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 32px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.footer-info {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-info li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
}

.footer-info a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.footer-info a:hover {
    text-decoration: underline;
}
    
.footer-credits {
    font-size: 13.5px;
    text-align: right;
    line-height: 1.4;
    margin: 0 0 12px;
}

.footer-credits a {
    color: #000;
    font-weight: 600;
    text-decoration: none;
}

.footer-credits a:hover {
    text-decoration: underline;
}

.footer-copy {
    font-size: 13px;
    text-align: right;
    margin: 0;
}

@media (max-width: 600px) {
    .footer-wrap {
        flex-direction: column;
        text-align: center;
    }

    .footer-credits,
    .footer-copy {
        text-align: left
    }
}

/*FOOTER------------------------------------------------------------------------------------------------------ */