/* styles.css - Akali Oyun Geliştirme - Türk Stili Tasarım */
/* Tüm sayfa merkezleme ve maksimum genişlik */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f1e9; /* Türk kahverengi tonu - hafif çini mürekkebi */
    max-width: 1090px;
    margin: 0 auto;
    padding: 0 15px;
}

/* === Bloklar için kontrast renk paleti (Türk bayrağı esintili) === */
#teklif { /* Blok 1: Teklif */
    background: linear-gradient(135deg, #e30613 0%, #b3000c 100%); /* Kırmızı - Türk bayrağı */
    color: #fff;
    text-align: center;
    padding: 90px 40px;
    min-height: 470px;
    border-radius: 0 0 50px 50px;
    box-shadow: 0 10px 30px rgba(227, 6, 19, 0.3);
    position: relative;
    overflow: hidden;
}

#teklif::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
}

#teklif h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
    font-weight: bold;
}

#teklif p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

#teklif .btn {
    display: inline-block;
    background: #fff;
    color: #e30613;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    margin-top: 20px;
}

#teklif .btn:hover {
    background: #ffd700;
    color: #b3000c;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Diğer bloklar - kontrast renkler */
#yorumlar { /* Blok 5 */
    background: #fff;
    padding: 60px 40px;
    margin: 40px 0;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 8px solid #e30613;
}

#abone-form { /* Blok 2 */
    background: #003087; /* Lacivert - Türk bayrağı */
    color: #fff;
    padding: 60px 40px;
    margin: 40px 0;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 48, 135, 0.3);
}

#uzmanlar { /* Blok 4 */
    background: #f9f9f9;
    padding: 60px 40px;
    margin: 40px 0;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    border-right: 8px solid #ffd700;
}

#urunler { /* Blok 3 */
    background: #fffaf0;
    padding: 60px 40px;
    margin: 40px 0;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    border-top: 8px solid #e30613;
}

#egitim-medya { /* Blok 4.1 */
    background: #e6f2ff;
    padding: 60px 40px;
    margin: 40px 0;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    border-bottom: 8px solid #003087;
}

#iletisim {
    background: #fff;
    padding: 60px 40px;
    margin: 40px 0;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}

footer {
    background: #1a1a1a;
    color: #ccc;
    text-align: center;
    padding: 30px;
    font-size: 0.9rem;
    margin-top: 40px;
    border-radius: 20px 20px 0 0;
}

/* === Tipografi === */
h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

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

#yorumlar h2::after,
#uzmanlar h2::after,
#egitim-medya h2::after { background: #003087; }

#urunler h2::after { background: #ffd700; }

/* === Form Tasarımı === */
#abone-form form {
    max-width: 500px;
    margin: 0 auto;
}

#abone-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 1.1rem;
}

#abone-form input[type="email"] {
    width: 100%;
    padding: 14px 18px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    margin-bottom: 20px;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

#abone-form input[type="email"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.5);
    transform: scale(1.02);
}

#abone-form button {
    background: #ffd700;
    color: #b3000c;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

#abone-form button:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* === Ürün Listesi === */
.fiyat-listesi {
    list-style: none;
    margin: 30px 0;
}

.fiyat-listesi li {
    background: #fff;
    padding: 18px 25px;
    margin: 12px 0;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    font-size: 1.1rem;
    font-weight: 600;
    border-left: 5px solid #e30613;
    transition: transform 0.2s ease;
}

.fiyat-listesi li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(227,6,19,0.2);
}

/* === Makale Vurgusu === */
#urunler article {
    margin-top: 50px;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 2px solid #ffd700;
    position: relative;
}

#urunler article::before {
    content: 'PRO İPUÇLARI';
    position: absolute;
    top: -15px;
    left: 30px;
    background: #e30613;
    color: #fff;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 20px;
    letter-spacing: 1px;
}

#urunler article h3 {
    color: #b3000c;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

#urunler article ol {
    margin: 20px 0;
    padding-left: 20px;
}

#urunler article li {
    margin: 12px 0;
    padding-left: 10px;
    position: relative;
}

#urunler article li strong {
    color: #003087;
}

/* === Yorumlar === */
.yorum {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 15px;
    margin: 15px 0;
    border-left: 5px solid #ffd700;
    font-style: italic;
}

.yorum p {
    margin: 0;
}

.yorum strong {
    color: #e30613;
    font-style: normal;
}

/* === Uzmanlar Listesi === */
#uzmanlar ul {
    list-style: none;
}

#uzmanlar li {
    background: #fff;
    padding: 18px;
    margin: 12px 0;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    border-right: 5px solid #003087;
    font-weight: 500;
}

#uzmanlar strong {
    color: #003087;
}

/* === Harita === */
#iletisim iframe {
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

    #teklif {
        padding: 70px 20px;
        min-height: 400px;
        border-radius: 0 0 30px 30px;
    }

    #teklif h1 {
        font-size: 2.2rem;
    }

    #teklif p {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    section {
        padding: 40px 20px !important;
        margin: 25px 0 !important;
    }

    .fiyat-listesi li,
    .yorum,
    #uzmanlar li {
        padding: 15px;
        font-size: 1rem;
    }

    #abone-form form {
        padding: 0 10px;
    }

    #abone-form input[type="email"],
    #abone-form button {
        font-size: 1rem;
        padding: 12px 16px;
    }

    #urunler article {
        padding: 25px;
    }

    #urunler article::before {
        left: 15px;
        font-size: 0.7rem;
    }
}

/* Animasyon */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
