﻿:root {
    --dark-blue: #020c1b;
    --navy-blue: #0a192f;
    --light-navy: #112240;
    --lightest-navy: #233554;
    --slate: #8892b0;
    --light-slate: #a8b2d1;
    --lightest-slate: #ccd6f6;
    --white: #e6f1ff;
    --accent-red: #E84545;
    --accent-blue: 26a69a; /* Sitenizin ana rengi neon mavi, bunu kullanabiliriz */
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--light-slate);
    -webkit-font-smoothing: antialiased;
}


/* --- Genel Sayfa Yapısı --- */
.main-container {
    /*background: var(--navy-blue);*/
}

.announcement-page {
    background: #ffffff;
    color: #333;
}
/*
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    max-width: 1300px;
    margin: 0 auto;
}

.logo img {
    height: 40px;
}

.announcement-page .logo img {

}

nav a {
    color: var(--lightest-slate);
    text-decoration: none;
    margin-left: 25px;
    font-weight: 400;
    transition: color 0.3s ease;
}
   
.announcement-page nav a {
    color: #555;
}

nav a:hover {
    color: var(--accent-red);
}
 */
/* --- Ana Sayfa Hero Bölümü --- */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 80vh;
    background-image: linear-gradient(rgba(10, 25, 47, 0.85), rgba(10, 25, 47, 0.85)), url('https://i.imgur.com/k2Hw2X4.jpeg');
    background-size: cover;
    background-position: center;
    padding: 20px;
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--white);
    font-weight: 700;
    margin: 0;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--light-slate);
    margin-top: 10px;
    margin-bottom: 30px;
}

.cta-button {
    background-color: transparent;
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

    .cta-button:hover {
        background-color: var(--accent-red);
        color: var(--white);
    }

/* --- Yenilikler Sayfası --- */
.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-intro {
    text-align: center;
    margin-bottom: 60px;
}

.intro-logo {
    max-width: 400px;
    margin-bottom: 20px;
}

.page-intro h1 {
    color: #111;
    font-size: 2.8rem;
    font-weight: 700;
}

.page-intro .subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 15px auto 0;
    line-height: 1.6;
}

.feature-card {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 5px solid var(--accent-red);
}

    .feature-card.reverse {
        flex-direction: row-reverse;
        border-left: none;
        border-right: 5px solid var(--accent-red);
    }

.feature-text {
    flex: 1;
}

    .feature-text h2 {
        font-size: 1.8rem;
        color: var(--accent-red);
        margin-top: 0;
    }

    .feature-text h3 {
        font-size: 1.2rem;
        color: #333;
        border-bottom: 1px solid #ddd;
        padding-bottom: 5px;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    .feature-text p {
        line-height: 1.7;
        color: #444;
    }

    .feature-text ul {
        list-style: none;
        padding-left: 0;
    }

    .feature-text li {
        padding-left: 25px;
        position: relative;
        margin-bottom: 12px;
        line-height: 1.7;
        color: #444;
    }

        .feature-text li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-red);
            font-weight: bold;
        }

.feature-image {
    flex: 1;
    max-width: 45%;
}

    .feature-image img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

/* --- Mobil Uyum --- */
@media (max-width: 992px) {
    .feature-card, .feature-card.reverse {
        flex-direction: column;
    }

    .feature-image {
        max-width: 80%;
        margin-top: 30px;
    }
}
/*
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    nav a {
        margin: 0 10px;
    }
*/
.banner-content {
    /*text-align: center;*/
}

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .page-intro h1 {
        font-size: 2rem;
    }

    .feature-card {
        padding: 25px;
    }
}
