/*
Theme Name: Portal 3D Child
Description: Portal 3D Premium Koyu Tema
Author: Ahmet Ferit KIZILKAYA
*/

/* --- 1. RENK PALETİ VE DEĞİŞKENLER (PREMIUM KOYU TEMA) --- */
:root {
    --bg-color: #0b1120; /* Derin, göz yormayan lacivert-siyah */
    --surface: #151e32; /* Kartlar ve kutular için tok koyu renk */
    --text-main: #f8fafc; /* Tam beyaz yerine yumuşak kırık beyaz (göz yormaz) */
    --text-muted: #94a3b8; /* Alt metinler için zarif gri */
    --primary: #00f2fe; /* Portal 3D'nin imza neon mavisi */
    --primary-glow: rgba(0, 242, 254, 0.15); /* Hafif mavi parlama efekti */
}

/* --- 2. GENEL AYARLAR (RESET) --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: 0.3s;
}

/* Başlıklar Tok ve Net */
h1, h2, h3, h4, h5, h6, .hero-title, .section-title {
    color: #ffffff !important;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

/* --- 3. ÜST MENÜ (NAVBAR) --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(11, 17, 32, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
}

.logo a {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff !important;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--primary-glow);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 8px var(--primary-glow);
}

/* --- 4. VİTRİN (HERO) ALANI --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    background: radial-gradient(circle at center, #151e32 0%, #0b1120 100%);
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 4rem !important;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(0, 242, 254, 0.4) !important;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* --- 5. BUTONLAR --- */
.btn, .cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: #0b1120 !important;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s;
    box-shadow: 0 5px 15px var(--primary-glow);
    border: none;
    cursor: pointer;
}

.btn:hover, .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 242, 254, 0.4);
}

/* --- 6. KATALOG VE KART (GRID) YAPISI --- */
.katalog {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem !important;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* MODERN KARTLAR VE KUTULAR (Yumuşak köşeler, tok duruş) */
.card, div[style*="background: var(--surface)"] {
    background: var(--surface) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4) !important; 
    border-radius: 16px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card:hover {
    box-shadow: 0 15px 40px var(--primary-glow) !important;
    border-color: rgba(0, 242, 254, 0.3) !important;
    transform: translateY(-5px);
}

.card-img {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* --- 7. FAQ (SIKÇA SORULANLAR) AKORDEON --- */
.faq-section {
    margin-top: 60px;
}

.faq-item {
    background: var(--surface) !important;
    border: 1px solid rgba(255,255,255,0.05) !important;
    border-radius: 16px !important;
    margin-bottom: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4) !important;
}

.faq-item:hover {
    box-shadow: 0 15px 40px var(--primary-glow) !important;
    border-color: rgba(0, 242, 254, 0.3) !important;
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--text-muted);
    padding: 0 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.faq-answer p {
    padding-bottom: 20px;
}

.faq-question::after {
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.faq-question.active::after {
    content: '\f068';
}

/* --- 8. ANİMASYONLAR (REVEAL) --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- 9. MOBİL UYUMLULUK (RESPONSIVE FIX) --- */
@media screen and (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    /* Menü mobilde alt alta gelsin */
    .navbar {
        flex-direction: column;
        padding: 15px;
        gap: 15px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    /* Yazılar ekrandan taşmasın */
    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }

    .section-title {
        font-size: 1.8rem !important;
    }

    h1 {
        font-size: 2rem !important;
    }

    /* Kutular alt alta dizilsin */
    .grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 10px;
    }

    div[style*="display: flex"] {
        flex-direction: column !important;
        gap: 20px !important;
    }

    /* Ekrandan sağa taşmaları kesin olarak engelle */
    div, section, header {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}/*
Theme Name: Portal 3D Child
Description: Portal 3D Premium Koyu Tema
Author: Ahmet Ferit KIZILKAYA
*/

/* --- 1. RENK PALETİ VE DEĞİŞKENLER (PREMIUM KOYU TEMA) --- */
:root {
    --bg-color: #0b1120; /* Derin, göz yormayan lacivert-siyah */
    --surface: #151e32; /* Kartlar ve kutular için tok koyu renk */
    --text-main: #f8fafc; /* Tam beyaz yerine yumuşak kırık beyaz (göz yormaz) */
    --text-muted: #94a3b8; /* Alt metinler için zarif gri */
    --primary: #00f2fe; /* Portal 3D'nin imza neon mavisi */
    --primary-glow: rgba(0, 242, 254, 0.15); /* Hafif mavi parlama efekti */
}

/* --- 2. GENEL AYARLAR (RESET) --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: 0.3s;
}

/* Başlıklar Tok ve Net */
h1, h2, h3, h4, h5, h6, .hero-title, .section-title {
    color: #ffffff !important;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

/* --- 3. ÜST MENÜ (NAVBAR) --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(11, 17, 32, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
}

.logo a {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff !important;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--primary-glow);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 8px var(--primary-glow);
}

/* --- 4. VİTRİN (HERO) ALANI --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    background: radial-gradient(circle at center, #151e32 0%, #0b1120 100%);
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 4rem !important;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(0, 242, 254, 0.4) !important;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* --- 5. BUTONLAR --- */
.btn, .cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: #0b1120 !important;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s;
    box-shadow: 0 5px 15px var(--primary-glow);
    border: none;
    cursor: pointer;
}

.btn:hover, .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 242, 254, 0.4);
}

/* --- 6. KATALOG VE KART (GRID) YAPISI --- */
.katalog {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem !important;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* MODERN KARTLAR VE KUTULAR (Yumuşak köşeler, tok duruş) */
.card, div[style*="background: var(--surface)"] {
    background: var(--surface) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4) !important; 
    border-radius: 16px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card:hover {
    box-shadow: 0 15px 40px var(--primary-glow) !important;
    border-color: rgba(0, 242, 254, 0.3) !important;
    transform: translateY(-5px);
}

.card-img {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* --- 7. FAQ (SIKÇA SORULANLAR) AKORDEON --- */
.faq-section {
    margin-top: 60px;
}

.faq-item {
    background: var(--surface) !important;
    border: 1px solid rgba(255,255,255,0.05) !important;
    border-radius: 16px !important;
    margin-bottom: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4) !important;
}

.faq-item:hover {
    box-shadow: 0 15px 40px var(--primary-glow) !important;
    border-color: rgba(0, 242, 254, 0.3) !important;
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--text-muted);
    padding: 0 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.faq-answer p {
    padding-bottom: 20px;
}

.faq-question::after {
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.faq-question.active::after {
    content: '\f068';
}

/* --- 8. ANİMASYONLAR (REVEAL) --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- 9. MOBİL UYUMLULUK (RESPONSIVE FIX) --- */
@media screen and (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    /* Menü mobilde alt alta gelsin */
    .navbar {
        flex-direction: column;
        padding: 15px;
        gap: 15px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    /* Yazılar ekrandan taşmasın */
    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }

    .section-title {
        font-size: 1.8rem !important;
    }

    h1 {
        font-size: 2rem !important;
    }

    /* Kutular alt alta dizilsin */
    .grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 10px;
    }

    div[style*="display: flex"] {
        flex-direction: column !important;
        gap: 20px !important;
    }

    /* Ekrandan sağa taşmaları kesin olarak engelle */
    div, section, header {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}