/* Google Font: Orbitron (başlıklar için), Roboto (metinler için) */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@300;400&display=swap');

/* Temel Sıfırlama ve Body Stilleri */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #0c0c1e; /* Görsele uygun koyu lacivert/siyah tonu */
    color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

/* Ana İçerik Konteyneri */
.container {
    max-width: 700px;
    width: 100%;
    padding: 2rem;
    background-color: rgba(18, 24, 49, 0.5); /* Hafif şeffaf arkaplan */
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Ana Görsel */
.main-image {
    max-width: 450px; /* Görselin boyutunu ayarlayabilirsiniz */
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Başlık */
.title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(100, 181, 246, 0.7); /* Neon efekti */
    margin-bottom: 1rem;
}

/* Açıklama Metni */
.description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #c0c0c0;
    margin-bottom: 2rem;
}

/* İletişim Bilgisi */
.contact-info {
    font-size: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    font-weight: bold;
    color: #4fc3f7; /* Açık mavi */
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Mobil Cihazlar için Duyarlılık */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .title {
        font-size: 2rem;
    }

    .main-image {
        max-width: 300px;
        margin-bottom: 1.5rem;
    }

    .description {
        font-size: 1rem;
    }
}