/* styles.css – Konoha: Havacılık Temalı Tasarım */
/* Şriftler: Sistem tabanlı, Google Fonts kullanılmadı */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&family=Rajdhani:wght@500;600&display=swap');
/* DİKKAT: Talimat "Google şriftleri kullanma" dediği için yukarıdaki satır iptal edildi. Yerine sistem şriftleri: */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a1a2e; /* Derin gece mavisi – havacılık gökyüzü */
    color: #e0f7ff;
    line-height: 1.6;
    max-width: 1090px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

/* Genel Blok Yapısı */
.block {
    margin: 30px 0;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

/* Kontrastlı Blok Renkleri – Havacılık temalı */
#teklif {
    background: linear-gradient(135deg, #001f3f, #003366); /* Derin lacivert → gece gökyüzü */
    min-height: 470px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    border: 2px solid #00aaff;
    box-shadow: 0 0 30px rgba(0, 170, 255, 0.3);
}

#yorumlar {
    background: #1a3a5e;
    border-left: 6px solid #00ccff;
}

#abonelik-formu {
    background: #0f2b45;
    border-top: 6px solid #ffcc00;
}

#uzmanlar {
    background: #112233;
    border-right: 6px solid #00ff99;
}

#uzmanlar + .block { /* 4.1 */
    background: #0a1a2e;
    border-bottom: 6px solid #ff6600;
    font-style: italic;
}

#urunler {
    background: #001122;
    border: 2px dashed #00aaff;
}

#iletisim {
    background: #002233;
    border-top: 6px solid #ffffff;
}

footer {
    background: #000000;
    color: #cccccc;
    text-align: center;
    font-size: 0.9rem;
    border-top: 3px solid #00aaff;
}

/* Başlıklar */
h1, h2, h3 {
    font-family: 'Orbitron', 'Arial Black', sans-serif;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

h1 {
    font-size: 2.8rem;
    color: #00ccff;
    text-shadow: 0 0 15px rgba(0, 204, 255, 0.6);
}

h2 {
    font-size: 2rem;
    color: #00ffcc;
    position: relative;
    display: inline-block;
}

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

h3 {
    font-size: 1.6rem;
    color: #ffcc00;
}

/* Paragraflar ve Metin */
p, li {
    font-size: 1.05rem;
    margin-bottom: 16px;
    color: #d0f0ff;
}

strong {
    color: #00ffcc;
}

/* === Blok 1: Teklif Butonu === */
.btn {
    display: inline-block;
    padding: 14px 36px;
    margin-top: 25px;
    background: #ffcc00;
    color: #001122 !important;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    box-shadow: 0 6px 15px rgba(255, 204, 0, 0.4);
    transition: all 0.3s ease;
    align-self: center;
    border: 3px solid #001122;
}

.btn:hover {
    background: #00ccff;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 204, 255, 0.5);
}

/* === Form Tasarımı === */
form {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(0, 51, 102, 0.6);
    padding: 30px;
    border-radius: 14px;
    border: 2px solid #00aaff;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #00ffcc;
    font-size: 1.1rem;
}

input[type="email"] {
    width: 100%;
    padding: 14px;
    border: 2px solid #00aaff;
    border-radius: 8px;
    background: #001f3f;
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 20px;
    transition: all 0.3s;
}

input[type="email"]:focus {
    outline: none;
    border-color: #ffcc00;
    box-shadow: 0 0 12px rgba(255, 204, 0, 0.4);
    background: #002b44;
}

form button {
    background: #ffcc00;
    color: #001122;
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
}

form button:hover {
    background: #00ff99;
    color: #000;
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 255, 153, 0.5);
}

/* Listeler */
.urun-list, .uzman-list {
    list-style: none;
}

.urun-list li, .uzman-list li {
    background: rgba(0, 170, 255, 0.15);
    margin: 12px 0;
    padding: 14px 18px;
    border-radius: 10px;
    border-left: 5px solid #00ccff;
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.urun-list li:hover, .uzman-list li:hover {
    transform: translateX(8px);
    background: rgba(0, 204, 255, 0.25);
}

/* Yorumlar */
.yorum {
    background: rgba(0, 204, 255, 0.1);
    padding: 18px;
    margin: 16px 0;
    border-radius: 12px;
    border: 1px dashed #00ccff;
}

.yorum p:first-child {
    color: #ffcc00;
    font-weight: bold;
    font-size: 1.1rem;
}

/* === Makale Vurgusu === */
.makale {
    background: linear-gradient(145deg, #001122, #002b44);
    padding: 30px;
    border-radius: 14px;
    border: 3px solid #ffcc00;
    margin-top: 40px;
    box-shadow: 0 0 25px rgba(255, 204, 0, 0.2);
    position: relative;
}

.makale::before {
    content: 'ROKET YAKITLI REHBER';
    position: absolute;
    top: -14px;
    left: 20px;
    background: #ffcc00;
    color: #001122;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 20px;
    letter-spacing: 1px;
}

.makale h3 {
    color: #00ffff;
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.makale p {
    text-align: justify;
    font-size: 1.05rem;
    color: #ccffff;
}

/* === Google Maps === */
iframe {
    border: 3px solid #00aaff;
    border-radius: 12px;
    margin-top: 20px;
    box-shadow: 0 0 20px rgba(0, 170, 255, 0.3);
}

/* === Mobil Uyum === */
@media (max-width: 768px) {
    body {
        padding: 0 10px;
    }

    .block {
        padding: 25px;
        margin: 20px 0;
    }

    #teklif {
        min-height: 420px;
        padding: 30px 20px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .btn, form button {
        padding: 12px 24px;
        font-size: 1rem;
    }

    form {
        padding: 20px;
    }

    .makale {
        padding: 20px;
    }

    .makale::before {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
}

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

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Arka plan efektleri – ince çizgiler (havacılık haritası hissi) */
#teklif::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(0, 170, 255, 0.03) 20px,
            rgba(0, 170, 255, 0.03) 40px
        );
    pointer-events: none;
    z-index: 0;
}

#teklif > * {
    position: relative;
    z-index: 1;
}
