/*

TemplateMo 593 personal shape

https://templatemo.com/tm-593-personal-shape

*/

@charset "utf-8";
/* CSS Document */
/* CSS dosyasının karakter kodlamasını UTF-8 olarak belirler */

/* Tüm HTML elemanları için varsayılan margin ve padding sıfırlanır,
   box-sizing border-box yapılarak genişlik/yükseklik hesaplaması düzeltilir */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =======================
            FOOTER (ALT BÖLÜM)
            ======================= */

/* Footer alanının genel tasarımı:
            - Arka plan gradyanı
            - Yazı rengi
            - İç boşluklar
            - Üstten ince ayırıcı çizgi */

.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #312e81 100%);
    color: var(--text-light);
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* Footer arka planına SVG grid/desen ekler */

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-grid" width="12" height="12" patternUnits="userSpaceOnUse"><path d="M 12 0 L 0 0 0 12" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grid)"/></svg>');
    opacity: 0.4;
}

/* Footer üzerine yumuşak ışık / renk geçişleri ekler */

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
}

/* Footer içeriğini yatayda hizalar ve esnek yapı oluşturur */

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

/* Footer sol taraftaki yazı (copyright vb.) */

.footer-left p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Footer sağ taraftaki linklerin kapsayıcısı */

.footer-right {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Footer linklerinin normal hali */

.footer-right a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

/* Link üzerine gelince renk değişimi ve hafif yukarı hareket */

.footer-right a:hover {
    color: var(--text-light);
    transform: translateY(-1px);
}

/* Linklerin altına animasyonlu çizgi ekler (başlangıçta görünmez) */

.footer-right a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -3px;
    left: 0;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

/* Hover durumunda alt çizgi tam genişliğe ulaşır */

.footer-right a:hover::after {
    width: 100%;
}

/* =======================
        FOOTER – MOBİL UYUMLULUK
        ======================= */

/* Ekran genişliği 768px ve altına düştüğünde (tablet & mobil) */
@media (max-width: 768px) {

    /* Footer içeriğini alt alta dizer ve ortalar */

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    /* Footer sağ taraftaki linkleri ortalar */

    .footer-right {
        justify-content: center;
        gap: 1.5rem;
    }

    /* Mobilde link yazı boyutunu biraz küçültür */

    .footer-right a {
        font-size: 0.85rem;
    }
}

/* Daha küçük ekranlar (telefon – 480px ve altı) */

@media (max-width: 480px) {

    /* Footer linklerini tamamen alt alta dizer */

    .footer-right {
        flex-direction: column;
        gap: 1rem;
    }
}


/* =======================
            ROOT (GLOBAL CSS DEĞİŞKENLERİ)
            ======================= */

/* Sitede tekrar kullanılan tüm renkler, gölgeler ve gradientler */

:root {

    /* Ana ve ikincil renkler */
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;

    /* Vurgu (accent) renkleri */
    --accent-color: #f59e0b;
    --accent-pink: #ec4899;
    --accent-cyan: #06b6d4;

    /* Metin renkleri */
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --text-light: #ffffff;

    /* Arka plan renkleri */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #0f172a;
    --bg-card: rgba(255, 255, 255, 0.95);

    /* Gradient arka planlar */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-tertiary: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-elegant: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);

    /* Gölge efektleri */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Cam (glassmorphism) efektleri */
    --glass: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
}

/* =======================
            BODY (GENEL SAYFA AYARLARI)
            ======================= */

/* Tüm sayfanın yazı tipi, renkleri ve kaydırma davranışı */

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    scroll-behavior: smooth;
    overflow-x: hidden;
    background: var(--bg-primary);
}

/* =======================
        NAVIGATION (ÜST MENÜ)
        ======================= */

/* Sabit üst menü alanı */
nav {
    position: fixed;
    /* Menü ekranın üstünde sabit kalır */
    top: 0;
    width: 100%;
    /* Tüm ekran genişliğini kaplar */
    background: rgba(255, 255, 255, 0.95);
    /* Hafif şeffaf beyaz arka plan */
    backdrop-filter: blur(20px);
    /* Arka planı bulanıklaştırır (glass effect) */
    z-index: 1000;
    /* Diğer elemanların üstünde görünmesini sağlar */
    padding: 1rem 0;
    /* Üst-alt iç boşluk */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* Yumuşak geçiş animasyonu */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* Alt ayırıcı çizgi */
}

/* Sayfa scroll edilince eklenen class ile navbar görünümü */

nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    /* Daha opak arka plan */
    box-shadow: var(--shadow-lg);
    /* Gölge ekler */
    padding: 0.75rem 0;
    /* Yüksekliği biraz küçültür */
}

/* Navbar içeriğini saran kapsayıcı */

.nav-container {
    max-width: 1400px;
    /* İçeriğin maksimum genişliği */
    margin: 0 auto;
    /* Ortalar */
    padding: 0 2rem;
    /* Sağ-sol boşluk */
    display: flex;
    /* Flexbox düzeni */
    justify-content: space-between;
    /* Logo ve linkleri ayırır */
    align-items: center;
    /* Dikey ortalama */
}

/* Logo yazı stili */

.logo {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.75rem;
    /* Logo boyutu */
    font-weight: 700;
    /* Kalın yazı */
    background: var(--gradient-elegant);
    /* Gradient renk */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Gradienti yazıya uygular */
    letter-spacing: -0.5px;
    /* Harfler arası boşluk */
}

/* Menü linklerinin bulunduğu liste */

.nav-links {
    display: flex;
    /* Linkleri yatay dizer */
    list-style: none;
    /* Liste noktalarını kaldırır */
    gap: 2.5rem;
    /* Linkler arası boşluk */
    align-items: center;
}

/* Menü linklerinin normal hali */

.nav-links a {
    text-decoration: none;
    /* Alt çizgiyi kaldırır */
    color: var(--text-primary);
    /* Yazı rengi */
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Hover animasyonu */
    position: relative;
    /* Alt çizgi için gerekli */
    padding: 0.5rem 0;
    /* Tıklama alanını büyütür */
}

/* Link üzerine gelince renk değişimi ve hafif yukarı hareket */

.nav-links a:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

/* Linklerin altına animasyonlu çizgi ekler (başlangıçta görünmez) */

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    /* Başlangıçta çizgi yok */
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--gradient-primary);
    /* Gradient çizgi */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 1px;
}

/* Hover olunca alt çizgi tam genişliğe ulaşır */

.nav-links a:hover::after {
    width: 100%;
}

/* =======================
        MOBILE MENU (MOBİL MENÜ)
        ======================= */

/* Mobil menüyü açıp kapatan hamburger butonu */
.mobile-menu-toggle {
    display: none;
    /* Masaüstünde gizli */
    flex-direction: column;
    /* Hamburger çizgilerini alt alta dizer */
    cursor: pointer;
    /* Üzerine gelince tıklanabilir imleç */
    padding: 0.5rem;
    /* Tıklama alanını büyütür */
    z-index: 1001;
    /* Menüden üstte kalmasını sağlar */
}

/* Hamburger ikonundaki her bir çizgi */

.hamburger {
    width: 25px;
    /* Çizgi genişliği */
    height: 3px;
    /* Çizgi kalınlığı */
    background: var(--text-primary);
    /* Çizgi rengi */
    margin: 3px 0;
    /* Çizgiler arası boşluk */
    transition: all 0.3s ease;
    /* Animasyonlu geçiş */
    border-radius: 1px;
    /* Hafif yuvarlatılmış köşe */
}

/* Menü açıkken hamburgerin 1. çizgisi X şekline döner */

.mobile-menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

/* Menü açıkken hamburgerin 2. çizgisi kaybolur */

.mobile-menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

/* Menü açıkken hamburgerin 3. çizgisi X şekline döner */

.mobile-menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobil menünün kendisi (ekran dışından gelir) */

.mobile-menu {
    position: fixed;
    /* Ekrana sabitlenir */
    top: 0;
    right: -100%;
    /* Başlangıçta ekran dışında */
    width: 100%;
    /* Tam ekran genişliği */
    height: 100vh;
    /* Tam ekran yüksekliği */
    background: rgba(15, 23, 42, 0.98);
    /* Koyu yarı saydam arka plan */
    backdrop-filter: blur(20px);
    /* Arka plan bulanıklığı */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Dikey ortalama */
    align-items: center;
    /* Yatay ortalama */
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* Açılış animasyonu */
    z-index: 999;
}

/* Menü aktif olunca ekrana girer */

.mobile-menu.active {
    right: 0;
}

/* Mobil menü linklerinin listesi */

.mobile-nav-links {
    list-style: none;
    /* Liste işaretlerini kaldırır */
    text-align: center;
}

/* Menü linklerinin animasyonlu giriş hali */

.mobile-nav-links li {
    margin: 2rem 0;
    /* Linkler arası boşluk */
    opacity: 0;
    /* Başlangıçta görünmez */
    transform: translateY(30px);
    /* Aşağıdan gelir */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Menü aktifken linkler görünür hale gelir */

.mobile-menu.active .mobile-nav-links li {
    opacity: 1;
    transform: translateY(0);
}

/* Linklerin sırayla animasyonla gelmesini sağlar */

.mobile-menu.active .mobile-nav-links li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu.active .mobile-nav-links li:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-menu.active .mobile-nav-links li:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-menu.active .mobile-nav-links li:nth-child(4) {
    transition-delay: 0.4s;
}

/* Mobil menü linklerinin yazı stili */

.mobile-nav-links a {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 2.5rem;
    /* Büyük ve dikkat çekici yazı */
    font-weight: 500;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--gradient-elegant);
    /* Gradient yazı efekti */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Link üzerine gelince hafif büyüme efekti */

.mobile-nav-links a:hover {
    transform: scale(1.05);
}

/* =======================
        HERO SECTION (GİRİŞ ALANI)
        ======================= */

/* Hero bölümünün ana kapsayıcısı */
.hero {
    height: 100vh;
    /* Ekranın tamamını kaplar */
    display: flex;
    align-items: center;
    /* İçeriği dikey ortalar */
    justify-content: center;
    /* İçeriği yatay ortalar */
    background: var(--gradient-elegant);
    /* Arka plan gradienti */
    position: relative;
    overflow: hidden;
    /* Taşan animasyonları gizler */
}

/* Hero arka planına grid/desen ve yavaş hareket efekti ekler */

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: float 25s ease-in-out infinite;
    /* Yavaş süzülen animasyon */
    opacity: 0.7;
}

/* Hero üzerine ışık/pulse efektleri ekler */

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite alternate;
}

/* =======================
        FLOATING SHAPES (YÜZEN ŞEKİLLER)
        ======================= */

/* Tüm yüzen şekilleri saran kapsayıcı */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Tıklanamaz */
    z-index: 1;
}

/* Ortak shape özellikleri */

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

/* 1. yüzen şekil */

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation: floatShape1 20s ease-in-out infinite;
}

/* 2. yüzen şekil */

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    background: rgba(255, 255, 255, 0.08);
    animation: floatShape2 25s ease-in-out infinite reverse;
}

/* 3. yüzen şekil */

.shape-3 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 25%;
    background: rgba(255, 255, 255, 0.12);
    animation: floatShape3 18s ease-in-out infinite;
}

/* 4. yüzen şekil */

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 25%;
    left: 20%;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    animation: floatShape4 22s ease-in-out infinite;
}

/* 5. yüzen şekil */

.shape-5 {
    width: 40px;
    height: 40px;
    top: 15%;
    right: 40%;
    background: rgba(255, 255, 255, 0.15);
    animation: floatShape5 16s ease-in-out infinite reverse;
}

/* 6. yüzen şekil */

.shape-6 {
    width: 140px;
    height: 140px;
    bottom: 15%;
    right: 10%;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 30px;
    animation: floatShape6 28s ease-in-out infinite;
}

/* =======================
        SHAPE ANİMASYONLARI
        ======================= */

/* 1. şeklin hareket animasyonu */

@keyframes floatShape1 {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-30px) translateX(20px) rotate(90deg);
    }

    50% {
        transform: translateY(-15px) translateX(-10px) rotate(180deg);
    }

    75% {
        transform: translateY(-40px) translateX(15px) rotate(270deg);
    }
}

/* 2. şeklin hareket animasyonu */

@keyframes floatShape2 {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) scale(1);
    }

    33% {
        transform: translateY(25px) translateX(-20px) scale(1.1);
    }

    66% {
        transform: translateY(-20px) translateX(25px) scale(0.9);
    }
}

/* 3. şeklin hareket animasyonu */

@keyframes floatShape3 {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) translateX(-30px) rotate(180deg);
    }
}

/* 4. şeklin hareket animasyonu */

@keyframes floatShape4 {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }

    25% {
        transform: translateY(20px) translateX(-15px) rotate(45deg);
    }

    50% {
        transform: translateY(-10px) translateX(30px) rotate(90deg);
    }

    75% {
        transform: translateY(15px) translateX(-20px) rotate(135deg);
    }
}

/* 5. şeklin hareket animasyonu */

@keyframes floatShape5 {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) scale(1);
    }

    50% {
        transform: translateY(-35px) translateX(20px) scale(1.2);
    }
}

/* 6. şeklin hareket animasyonu */

@keyframes floatShape6 {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-15px) translateX(10px) rotate(60deg);
    }

    66% {
        transform: translateY(10px) translateX(-25px) rotate(120deg);
    }
}

/* Hero arka plan grid animasyonu */

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

/* Arka plan ışık efektinin nabız animasyonu */

@keyframes pulse {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 0.8;
    }
}

/* =======================
        HERO İÇERİK
        ======================= */

/* Hero yazı ve butonların kapsayıcısı */

.hero-content {
    text-align: center;
    color: var(--text-light);
    z-index: 2;
    /* Arka plan efektlerinin üstünde */
    position: relative;
    max-width: 900px;
    padding: 0 2rem;
}

/* Hero üst başlık */

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.2s forwards;
    /* Yukarıdan fade animasyonu */
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Ana başlık (H1) */

.hero h1 {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.4s forwards;
    line-height: 1.1;
    letter-spacing: -1px;
}

/* Hero açıklama metni */

.hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.6s forwards;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Call To Action butonu */

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
}

/* Buton hover efekti */

.cta-button:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Yukarı doğru fade animasyonu */

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Indicator - Ana sayfada aşağı kaydırmayı anlatan mouse benzeri ikon */
.scroll-indicator {
    position: absolute;
    /* Sayfa içinde sabit konum */
    bottom: 40px;
    /* Alttan boşluk */
    left: 50%;
    /* Ortaya hizalama */
    transform: translateX(-50%);
    /* Tam merkezleme */
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    /* Dış çerçeve */
    border-radius: 25px;
    /* Oval görünüm */
    cursor: pointer;
    transition: all 0.3s ease;
    /* Hover animasyonu */
}

/* Hover olunca çerçeve daha belirgin olur */

.scroll-indicator:hover {
    border-color: rgba(255, 255, 255, 0.9);
}

/* İçindeki hareket eden küçük nokta */

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
    /* Sürekli aşağı hareket */
}

/* Scroll animasyonu */

@keyframes scroll {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
    }
}

/* Genel section (bölüm) ayarları */
section {
    padding: 8rem 0;
    /* Üst-alt boşluk */
}

/* İçeriği ortalayan ana container */

.container {
    max-width: 1400px;
    margin: 0 auto;
    /* Ortalar */
    padding: 0 2rem;
}

/* Bölüm başlıkları */

.section-title {
    text-align: center;
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 4rem;
    background: var(--gradient-elegant);
    /* Gradient yazı */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    position: relative;
}

/* Başlık altındaki çizgi */

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* About (Hakkımda) bölümü */
.about {
    background: var(--bg-secondary);
    position: relative;
}

/* About arkaplanında hafif ışık efekti */

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
}

/* About içeriği grid yapısı */

.about-content {
    display: grid;

    grid-template-columns: 1fr 1.5fr;
    /* Görsel + metin */
    gap: 6rem;
    align-items: center;
    position: relative;
}

/* About görsel alanı */

.about-image {
    width: 100%;
    height: 500px;
    background: none !important;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transform: rotate(-2deg);
    /* Hafif eğik */
    transition: transform 0.4s ease;
}

/* Görselin kendisi */

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hover olunca düzleşir ve büyür */

.about-image:hover {
    transform: rotate(0deg) scale(1.02);
}

/* Görselin üstündeki gradient katman */

.about-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(99, 102, 241, 0.3),
            rgba(139, 92, 246, 0.2));
    pointer-events: none;
}

/* Hover'da gradient daha belirgin */

.about-image:hover::before {
    opacity: 0.7;
}

/* Boş after – ileride efekt eklemek için */

.about-image::after {
    content: "";
}

/* About başlığı */

.about-text h3 {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.3;
}

/* About paragraf */

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Skill etiketleri */

.skills {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

/* Tek skill */

.skill-tag {
    padding: 0.75rem 1.5rem;
    background: var(--bg-card);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

/* Skill hover efekti */

.skill-tag:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Portfolio bölümü */
.portfolio {
    background: var(--bg-primary);
}

/* Portfolio kartları grid yapısı */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

/* Portfolio kartı */

.portfolio-item {
    background: var(--bg-card);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(20px);
    /* İlk başta aşağıda */
    opacity: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

/* Scroll ile görünür olunca */

.portfolio-item.animate {
    transform: translateY(0);
    opacity: 1;
}

/* Hover'da yukarı kalkar */

.portfolio-item:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-2xl);
}

.portfolio-image {
    width: 100%;
    height: 280px;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portfolio-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-image::before {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.4) 0%, rgba(139, 92, 246, 0.3) 100%);
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-content h4 {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.portfolio-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.portfolio-tech {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tech-tag {
    padding: 0.4rem 1rem;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #3b4cb8 0%, #4a2c65 50%, #9c35a8 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-grid" width="8" height="8" patternUnits="userSpaceOnUse"><path d="M 8 0 L 0 0 0 8" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-grid)"/></svg>');
    animation: contactFloat 30s ease-in-out infinite;
    opacity: 0.6;
}

.contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 75%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    animation: contactPulse 6s ease-in-out infinite alternate;
}
/* Contact Floating Shapes */
.contact-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.contact-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.contact-shape-1 {
    width: 70px;
    height: 70px;
    top: 15%;
    left: 8%;
    animation: contactFloatShape1 24s ease-in-out infinite;
}

.contact-shape-2 {
    width: 110px;
    height: 110px;
    top: 65%;
    right: 12%;
    background: rgba(255, 255, 255, 0.06);
    animation: contactFloatShape2 28s ease-in-out infinite reverse;
}

.contact-shape-3 {
    width: 55px;
    height: 55px;
    top: 25%;
    right: 30%;
    background: rgba(255, 255, 255, 0.1);
    animation: contactFloatShape3 20s ease-in-out infinite;
}

.contact-shape-4 {
    width: 90px;
    height: 90px;
    bottom: 20%;
    left: 18%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    animation: contactFloatShape4 26s ease-in-out infinite;
}

.contact-shape-5 {
    width: 35px;
    height: 35px;
    top: 12%;
    right: 45%;
    background: rgba(255, 255, 255, 0.12);
    animation: contactFloatShape5 18s ease-in-out infinite reverse;
}

.contact-shape-6 {
    width: 130px;
    height: 130px;
    bottom: 12%;
    right: 8%;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 35px;
    animation: contactFloatShape6 32s ease-in-out infinite;
}

@keyframes contactFloatShape1 {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-25px) translateX(15px) rotate(90deg);
    }

    50% {
        transform: translateY(-10px) translateX(-8px) rotate(180deg);
    }

    75% {
        transform: translateY(-35px) translateX(12px) rotate(270deg);
    }
}

@keyframes contactFloatShape2 {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) scale(1);
    }

    33% {
        transform: translateY(20px) translateX(-15px) scale(1.05);
    }

    66% {
        transform: translateY(-15px) translateX(20px) scale(0.95);
    }
}

@keyframes contactFloatShape3 {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) translateX(-25px) rotate(180deg);
    }
}

@keyframes contactFloatShape4 {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }

    25% {
        transform: translateY(15px) translateX(-12px) rotate(30deg);
    }

    50% {
        transform: translateY(-8px) translateX(25px) rotate(60deg);
    }

    75% {
        transform: translateY(12px) translateX(-18px) rotate(90deg);
    }
}

@keyframes contactFloatShape5 {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) scale(1);
    }

    50% {
        transform: translateY(-30px) translateX(15px) scale(1.15);
    }
}

@keyframes contactFloatShape6 {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-12px) translateX(8px) rotate(45deg);
    }

    66% {
        transform: translateY(8px) translateX(-20px) rotate(90deg);
    }
}

@keyframes contactFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-15px) rotate(0.5deg);
    }

    66% {
        transform: translateY(-10px) rotate(-0.5deg);
    }
}

@keyframes contactPulse {
    0% {
        opacity: 0.4;
    }

    100% {
        opacity: 0.7;
    }
}

.contact-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.contact .section-title {
    color: var(--text-light);
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-form {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    display: grid;
    gap: 0.75rem;
    text-align: left;
}

.form-group label {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.submit-btn {
    padding: 1.2rem 3rem;
    background: var(--gradient-primary);
    color: var(--text-light);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1rem;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero h1 {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: 5rem 0;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-text h3 {
        font-size: 2rem;
    }

    .skills {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .container {
        padding: 0 1rem;
    }
}

/* Modal – portfolyo detay popup */

.portfolio-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
}

/* Modal aktifken görünür */

.portfolio-modal.active {
    display: flex;
}

/* Modal ana kutu */

.modal-content {
    max-width: 1100px;
    width: 92%;
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.8), rgba(139, 92, 246, 0.8));
    padding: 32px;
    border-radius: 16px;
    animation: modalSmoothIn 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

/* Modal kapanış animasyonu */

.portfolio-modal.closing .modal-content {
    animation: modalSmoothOut 0.3s ease forwards;
}

/* Modal iç düzen */

.modal-body {
    display: flex;
    gap: 36px;
    align-items: flex-start;
}

/* Modal görsel */

.modal-image img {
    max-width: 460px;
    width: 100%;
    border-radius: 12px;
}

/* Modal yazı alanı */

.modal-text {
    flex: 1;
}

.modal-text h3 {
    color: #fff;
    margin-bottom: 14px;
    font-size: 26px;
}

.modal-text p {
    color: #f0f0f0;
    font-size: 16px;
    line-height: 1.8;
}

/* Kapatma butonu */

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 28px;
    line-height: 44px;
    text-align: center;
    cursor: pointer;
    z-index: 999;
    transition: background 0.2s ease, transform 0.2s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: scale(1.1);
}


/* MOBİL */
@media (max-width: 768px) {
    .modal-body {
        flex-direction: column;
    }

    .modal-image img {
        max-width: 100%;
    }
}




@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Arka plan scroll kilidi */

body.modal-open {
    overflow: hidden;
}

/* Modal açıkken arka plan blur */

body.modal-open>*:not(.portfolio-modal) {
    filter: blur(6px);
    transition: filter 0.3s ease;
}


/* Sosyal medya kartları */

.social-content {
    text-align: center;
    position: relative;
    z-index: 2;
    color: #fff;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.social-card {
    width: 180px;
    height: 180px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.12),
            rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-card img {
    width: 62px;
    margin-bottom: 14px;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.social-card span {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Hover animasyonu */
.social-card:hover {
    transform: translateY(-12px) scale(1.08);
}

/* INSTAGRAM */
.social-card.instagram {
    background: linear-gradient(135deg,
            #667eea,
            #764ba2,
            #f093fb);
}

.social-card.instagram:hover {
    box-shadow:
        0 0 35px rgba(240, 147, 251, 0.7),
        0 0 70px rgba(118, 75, 162, 0.5);
}

.social-card.instagram:hover img {
    transform: rotate(10deg) scale(1.18);
    filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.9));
}

/* LINKEDIN */
.social-card.linkedin {
    background: linear-gradient(135deg,
            #4f46e5,
            #6366f1,
            #8b5cf6);
}

.social-card.linkedin:hover {
    box-shadow:
        0 0 35px rgba(99, 102, 241, 0.7),
        0 0 70px rgba(139, 92, 246, 0.5);
}

.social-card.linkedin:hover img {
    transform: rotate(-8deg) scale(1.16);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.85));
}

/* MAIL */
.social-card.mail {
    background: linear-gradient(135deg,
            #ff6b6b,
            #ff4757,
            #ff7f50);
}

.social-card.mail:hover {
    box-shadow:
        0 0 35px rgba(255, 107, 107, 0.7),
        0 0 70px rgba(255, 71, 87, 0.5);
}

.social-card.mail:hover img {
    transform: rotate(10deg) scale(1.18);
    filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.9));
}





/* MODAL IMAGE ZOOM */
.modal-image img {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: zoom-in;
}

.modal-image img.zoomed {
    transform: scale(1.8);
    cursor: zoom-out;
}

/* Modal açılış animasyonu */

@keyframes modalSmoothIn {
    0% {
        opacity: 0;
        transform: scale(0.92) translateY(20px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Modal kapanış animasyonu */

@keyframes modalSmoothOut {
    from {
        opacity: 1;
        transform: scale(1) translateY(0);
    }

    to {
        opacity: 0;
        transform: scale(0.92) translateY(20px);
    }
}

/* ========================= */
/* MOBİL UYUMLULUK (768px)  */
/* ========================= */

@media (max-width: 768px) {

    /* Sayfada sağ-sol kaymayı engeller */
    body {
        overflow-x: hidden;
    }

    /* Navbar yüksekliğini küçültür */
    nav {
        padding: 0.75rem 0;
    }

    /* Hero alanını mobile uygun yapar */
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 5rem 1.5rem;
    }

    /* Ana başlık küçülür */
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    /* Alt başlık küçülür */
    .hero .subtitle {
        font-size: 1rem;
    }

    /* Section başlıkları küçülür */
    .section-title {
        font-size: 2rem;
    }

    /* About bölümü alt alta iner */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* About görseli küçülür */
    .about-image {
        height: 280px;
    }

    /* Portfolio tek sütun olur */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Modal mobilde taşmaz */
    .modal-content {
        width: 94%;
        max-height: 85vh;
        overflow-y: auto;
    }

    /* Footer alt alta dizilir */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

/* ========================= */
/* MOBİL NAVBAR DÜZELTME    */
/* ========================= */

@media (max-width: 768px) {

    /* Masaüstü menüyü gizle */
    .nav-links {
        display: none;
    }

    /* Hamburger menüyü göster */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Mobil menü arkaplan */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        z-index: 999;
        transition: right 0.3s ease;
        padding: 5rem 2rem;
    }

    /* Menü açıkken */
    .mobile-menu.active {
        right: 0;
    }

    /* Mobil menü linkleri */
    .mobile-nav-links a {
        display: block;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        color: #fff;
        text-align: left;
    }
}

/* ========================= */
/* HERO MOBİL DÜZEN         */
/* ========================= */

@media (max-width: 768px) {

    .hero {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.3rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons a {
        width: 100%;
    }
}

/* ========================= */
/* PORTFOLIO MOBİL DÜZEN     */
/* ========================= */

@media (max-width: 768px) {

    .portfolio-grid {
        display: grid;
        grid-template-columns: 1fr;
        /* Tek sütun */
        gap: 1.5rem;
    }

    .portfolio-item {
        width: 100%;
    }

    .portfolio-item img {
        width: 100%;
        height: auto;
        border-radius: 16px;
    }

    .portfolio-item h4 {
        font-size: 1.1rem;
        text-align: center;
        margin-top: 0.5rem;
    }
}

/* ========================= */
/* BLOG MOBİL DÜZEN          */
/* ========================= */

@media (max-width: 768px) {

    .blog-container,
    .blog-list {
        display: flex;
        flex-direction: column;
        /* Alt alta diz */
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .blog-card,
    .blog-item {
        width: 100%;
    }

    .blog-card img,
    .blog-item img {
        width: 100%;
        height: auto;
        border-radius: 14px;
    }

    .blog-card h3,
    .blog-item h3 {
        font-size: 1.1rem;
        text-align: center;
        margin-top: 0.6rem;
    }

    .blog-card p,
    .blog-item p {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: center;
    }

    .blog-card a,
    .blog-item a {
        display: block;
        text-align: center;
        margin-top: 0.8rem;
    }
}

/* ========================= */
/* HERO MOBİL DÜZEN          */
/* ========================= */

@media (max-width: 768px) {

    .hero {
        min-height: 90vh;
        /* Çok uzun olmasın */
        padding: 100px 20px 60px;
        /* Üstten navbar payı */
        text-align: center;
        /* Ortala */
    }

    .hero h1 {
        font-size: 2rem;
        /* Büyük ama taşmaz */
        line-height: 1.3;
    }

    .hero h2,
    .hero p {
        font-size: 1rem;
        margin-top: 12px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        /* Butonlar alt alta */
        gap: 14px;
        margin-top: 30px;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }

    /* Mobilde parallax kapatılır (performans) */
    .hero {
        transform: none !important;
    }
}

/* ========================= */
/* PORTFOLYO MOBİL DÜZEN     */
/* ========================= */

@media (max-width: 768px) {

    .portfolio-grid {
        display: grid;
        grid-template-columns: 1fr;
        /* Tek sütun */
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .portfolio-item {
        width: 100%;
    }

    .portfolio-item img {
        width: 100%;
        height: auto;
        border-radius: 16px;
    }

    .portfolio-item h3 {
        font-size: 1.1rem;
        text-align: center;
        margin-top: 10px;
    }

    .portfolio-item p {
        font-size: 0.95rem;
        text-align: center;
        line-height: 1.6;
    }

    /* Hover efektleri mobilde kapatılır */
    .portfolio-item:hover {
        transform: none;
        box-shadow: none;
    }
}

/* ========================= */
/* MODAL MOBİL DÜZEN         */
/* ========================= */

@media (max-width: 768px) {

    /* Modal arkaplan */
    #portfolioModal {
        padding: 20px;
        align-items: center;
        justify-content: center;
    }

    /* Modal kutusu */
    .modal-content {
        width: 100%;
        max-width: 95%;
        max-height: 90vh;
        /* Ekranı aşmasın */
        overflow-y: auto;
        /* İçerik uzunsa kaydır */
        border-radius: 18px;
        padding: 20px;
    }

    /* Modal görsel */
    .modal-content img {
        width: 100%;
        height: auto;
        border-radius: 14px;
    }

    /* Modal başlık */
    .modal-content h3 {
        font-size: 1.2rem;
        text-align: center;
        margin-top: 12px;
    }

    /* Modal açıklama */
    .modal-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: center;
    }

    /* Kapatma butonu */
    .modal-close {
        top: 12px;
        right: 12px;
        font-size: 22px;
    }
}

/* ========================= */
/* GENEL MOBİL AYARLAR       */
/* ========================= */

@media (max-width: 768px) {

    /* Sayfanın yanlara taşmasını engeller */
    html,
    body {
        overflow-x: hidden;
    }

    /* Genel container boşlukları */
    .container,
    section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Başlıklar mobil için dengelenir */
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    /* Paragraflar */
    p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* Link ve butonlar (touch rahatlığı) */
    a,
    button {
        min-height: 44px;
        /* Apple touch standardı */
    }

    /* Resimler her zaman ekrana sığsın */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Masaüstü hover efektleri mobilde kapatılır */
    *:hover {
        transform: none !important;
        box-shadow: none !important;
    }
}

