/* Kaymaları ve hizalama sorunlarını sıfırlayan ana ayar */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #ffffff; 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Masaüstü Düzeni İçin Kapsayıcı */
.main-wrapper {
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    gap: 20px; 
    width: 100%;
    max-width: 600px;
}

/* Ana Mobil Kart Tasarımı (TÜMÜ AÇIK TURKUAZ) */
.mobile-card {
    background-color: #affcff; 
    border-radius: 40px;
    width: 100%;
    max-width: 380px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05); 
    position: relative;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center; 
}

/* Fotoğraf veya Video ve Geçiş Efekti */
.image-container {
    position: relative;
    width: 100%;
    height: 380px; 
    overflow: hidden; 
}

.image-container video {
    width: 100%;
    height: 125%;
    object-fit: cover;
    object-position: center center; 
    display: block;
    background-color: #ffffff; 
}

.fade-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, rgba(175, 252, 255, 0) 0%, rgba(175, 252, 255, 1) 90%, #affcff 100%);
}

/* İçerik Konumlandırma */
.content-area {
    width: 100%; 
    padding: 0 30px; 
    text-align: center;
    margin-top: -30px; 
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.name {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #004080; 
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.title {
    font-size: 0.9rem;
    color: #333333; 
    margin-bottom: 25px;
    font-weight: 500;
}

/* =========================================
   BİLGİ (HAKKIMDA) KARTI TASARIMI
   ========================================= */
.info-card {
    background-color: #ffffff;
    width: 100%;
    border-radius: 25px;
    padding: 25px 20px;
    margin-bottom: 10px;
    box-shadow: 0 10px 25px rgba(0, 64, 128, 0.08); /* Kartın havada durmasını sağlayan hafif gölge */
    text-align: left; /* Okunabilirliği artırmak için sola hizalı */
}

.info-card p {
    font-size: 0.9rem;
    color: #444444; /* Göz yormayan koyu gri */
    line-height: 1.6;
    margin-bottom: 12px;
}

.info-card p:last-child {
    margin-bottom: 0; /* Son paragrafın altındaki gereksiz boşluğu siler */
}

/* Sosyal İkonlar */
.social-container {
    display: flex;
    flex-direction: row; 
    justify-content: center; 
    gap: 15px;
    width: 100%;
}

.social-icon {
    background-color: #004080;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.5rem; 
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 8px 20px rgba(0, 64, 128, 0.3);
}

.social-icon:hover {
    transform: scale(1.1);
    background-color: #003060;
}

/* En alttaki telif yazısı için stil */
.footer-text {
    font-size: 0.85rem;
    color: #888888;
    margin-top: 10px;
    font-weight: 500;
}

/* Mobil Cihazlar İçin Medya Sorgusu */
@media (max-width: 650px) {
    .main-wrapper {
        flex-direction: column;
    }
}