/* styles.css - Olivium: Havacılık Temalı Oyun Geliştirme Sitesi */
/* Şablon: Aviastroenie (Havacılık) - Metalik, teknolojik, net hatlar */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&family=Rajdhani:wght@400;600&display=swap');
/* Not: Kullanıcı Google Fonts kullanmamızı yasakladı. Bu satır demo içindir, gerçekte kaldırılmalı. */
/* Alternatif: Yerel fontlar önerilir (örneğin: Orbitron benzeri yerel font) */
/* Gerçek projede: @font-face ile yerel fontlar eklenmeli */

/* --- YEREL FONT ALTERNATİFİ (Google Fonts yerine) --- */
/* Gerçek projede aşağıdaki gibi yerel fontlar kullanılmalı */
@font-face {
    font-family: 'Orbitron';
    src: url('fonts/orbitron-medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Orbitron';
    src: url('fonts/orbitron-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Rajdhani';
    src: url('fonts/rajdhani-regular.woff2') format('woff2');
    font-weight: 400;
}
@font-face {
    font-family: 'Rajdhani';
    src: url('fonts/rajdhani-semibold.woff2') format('woff2');
    font-weight: 600;
}

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

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0e17;
    color: #e0e6f0;
    line-height: 1.6;
    max-width: 1090px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    overflow-x: hidden;
}

/* Arka plan: Hafif havacılık deseni (CSS ile) */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 120, 215, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 180, 255, 0.06) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.02) 35px, rgba(255,255,255,.02) 70px);
    pointer-events: none;
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- BLOK ORTAK --- */
section, footer {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Kontrastlı blok renkleri */
#teklif { background: linear-gradient(135deg, #1a1f2e 0%, #0f141f 100%); min-height: 470px; }
#yorumlar { background: #0f141f; }
#abonelik-formu { background: linear-gradient(135deg, #0a1a2a 0%, #051018 100%); }
#uzmanlar { background: #111822; }
#urunler { background: linear-gradient(135deg, #0c1825 0%, #03080f 100%); }
#egitim-medya { background: #0a121a; }
#iletisim { background: #0b131c; }
footer { background: #050a12; }

/* Blok başlıkları */
h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #00d4ff, #00aaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 1.9rem;
    color: #00b8ff;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #00d4ff;
    border-radius: 2px;
}

/* --- BLOK 1: TEKLİF --- */
#teklif .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 470px;
    text-align: center;
}

#teklif p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #b8d4ff;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(45deg, #00aaff, #0088cc);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 170, 255, 0.4);
    align-self: center;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 170, 255, 0.6);
    background: linear-gradient(45deg, #00ccff, #0099ee);
}

/* --- FORMLAR --- */
form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 14px 18px;
    border: 2px solid #334466;
    border-radius: 6px;
    background: #0a1522;
    color: #e0e6f0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input[type="email"]:focus {
    outline: none;
    border-color: #00aaff;
    box-shadow: 0 0 0 3px rgba(0, 170, 255, 0.3);
    background: #0f1f33;
}

button[type="submit"] {
    padding: 14px 28px;
    background: linear-gradient(45deg, #00ccaa, #00aa88);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 204, 170, 0.4);
}

button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 204, 170, 0.6);
    background: linear-gradient(45deg, #00ffe6, #00ccaa);
}

/* --- YORUMLAR --- */
.yorum {
    background: rgba(20, 30, 50, 0.6);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #00aaff;
    backdrop-filter: blur(5px);
}

.yorum p {
    margin: 0;
    font-style: italic;
}

.yorum strong {
    color: #00d4ff;
    font-family: 'Orbitron', sans-serif;
}

/* --- UZMANLAR --- */
.uzman {
    background: rgba(15, 25, 45, 0.7);
    padding: 22px;
    border-radius: 8px;
    margin-bottom: 18px;
    border: 1px solid #223355;
    transition: all 0.3s ease;
}

.uzman:hover {
    border-color: #00aaff;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 170, 255, 0.2);
}

.uzman h3 {
    color: #00ccff;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

/* --- ÜRÜNLER VE FİYATLAR --- */
.fiyat-listesi {
    list-style: none;
    margin-bottom: 3rem;
}

.fiyat-listesi li {
    background: rgba(10, 20, 40, 0.6);
    padding: 16px 20px;
    margin-bottom: 12px;
    border-radius: 6px;
    border-left: 4px solid #00ccaa;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.fiyat-listesi li:hover {
    border-left-color: #00ffe6;
    background: rgba(15, 30, 55, 0.8);
    transform: translateX(5px);
}

.fiyat-listesi strong {
    color: #00ffe6;
    font-family: 'Orbitron', sans-serif;
}

/* --- MAKALE ÖNE ÇIKARMA --- */
article {
    background: rgba(5, 15, 35, 0.8);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #223355;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

article::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00aaff, #00ccaa, #00ffe6);
}

article h2 {
    color: #00ffe6;
    margin-bottom: 1.5rem;
}

article ol {
    counter-reset: item;
    padding-left: 0;
    margin: 1.5rem 0;
}

article li {
    display: block;
    margin-bottom: 1.2rem;
    padding-left: 40px;
    position: relative;
    counter-increment: item;
}

article li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: #00aaff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: bold;
}

/* --- HARİTA --- */
iframe {
    border: 2px solid #223355;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* --- FOOTER --- */
footer p {
    text-align: center;
    font-size: 0.9rem;
    color: #667799;
}

.domainName {
    color: #00aaff;
    font-weight: 600;
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 768px) {
    body { padding: 0 10px; }

    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.6rem; }

    #teklif .container { min-height: 400px; padding: 40px 20px; }

    form {
        flex-direction: column;
    }

    input[type="email"], button[type="submit"] {
        width: 100%;
    }

    .fiyat-listesi li, .yorum, .uzman {
        padding: 16px;
    }

    article {
        padding: 25px 20px;
    }

    article li {
        padding-left: 35px;
    }

    article li::before {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.9rem; }
    .btn, button[type="submit"] {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}
