/* *Ana Sayfa* */

/* Genel Stil */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Stil */
header {
    background: linear-gradient(135deg, #06dbf6, #003cff);
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #e100ff;
}

/* Hero Bölümü */
#hero {
    text-align: center;
    padding: 100px 20px;
    background: url('https://source.unsplash.com/1600x900/?modern-house') no-repeat center center/cover;
    color: white;
}

/* Başlık */
#hero h1 {
    font-size: 48px;
    margin-top: 130px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

#hero p {
    font-size: 20px;
    margin-top: 10px;
    color: rgb(37, 230, 188);
}

/* Buton */
.btn-primary {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background-color: #06dbf6;
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #ff3b3b;
}

/* Genel Stil */
#hakkimizda {
    background-color: #f4f4f9;
}

#iletisim {
    background-color: #fff;
}

/* *Basında Biz Sayfası* */

#basinda-biz {
    text-align: center;
    padding: 50px 20px;
    animation: fadeIn 1s ease-in-out;
}

#basinda-biz h2 {
    font-size: 36px;
    margin-bottom: 30px;
    animation: slideUp 1s ease-in-out;
}

/* Basında Biz Liste */
#basinda-biz ul {
    list-style-type: none;
    padding: 0;
    animation: fadeIn 1.5s ease-in-out;
}

#basinda-biz ul li {
    margin: 10px 0;
    opacity: 0;
    animation: fadeUp 0.6s ease-out forwards;
}

#basinda-biz ul li:nth-child(1) {
    animation-delay: 0.3s;
}

#basinda-biz ul li:nth-child(2) {
    animation-delay: 0.6s;
}

#basinda-biz ul li:nth-child(3) {
    animation-delay: 0.9s;
}

#basinda-biz ul li a {
    text-decoration: none;
    font-weight: bold;
    color: #b00000;
    transition: color 0.3s ease;
    font-size: 18px;
    display: inline-block;
    transform: translateX(-20px);
    opacity: 0;
    animation: slideIn 0.8s ease-out forwards;
}

#basinda-biz ul li a:hover {
    color: #ff3b3b;
}


/* Biyografi Sayfası */
#bio-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 50px 20px;
    background-color: #f4f4f9;
}

.bio-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
    max-width: 700px;
}

.bio-content img {
    width: 200px;
    height: auto;
    border: 4px solid #b00000;
    padding: 5px;
    background-color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.bio-text h1 {
    font-size: 28px;
    color: #b00000;
    margin-top: 15px;
}

.bio-text h2 {
    font-size: 20px;
    color: #666;
}

.bio-text p {
    font-size: 16px;
    color: #444;
    margin-top: 10px;
    line-height: 1.5;
    max-width: 600px;
}

/* Ekibimiz Bölümü */
#ekibimiz {
    text-align: center;
    padding: 50px 20px;
    animation: slideUp 1s ease-in-out;
}

#ekibimiz h2 {
    position: relative;
    top: -40px; /* Yazıyı yukarı taşır */
}

.team-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.team-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease-in-out;
    width: 250px;
    height: 380px;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}
.team-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
}

.team-card h3 {
    font-size: 22px;
    margin-top: 10px;
    color: #b00000
}

.team-card p {
    font-size: 16px;
    color: #000000;
    margin-bottom: 10px;
}

.team-card:hover {
    transform: scale(1.05);
}

.team-card:hover img {
    opacity: 0.8;
}



/* Ortadaki kart büyük başlar ve özel bir renge sahip olur */
.team-card.large {
    width: 280px;
    height: 420px;
    position: relative;
    top: -10px;
    background-color: rgba(0, 0, 0, 0.05); /* Özel renk */
}

.team-card.large img {
    height: 500px;
}

.team-card.large h3 {
    font-size: 24px;
}

.team-card.large p {
    font-size: 18px;
}

/* Tıklanınca büyüme efekti */
.team-card.expanded {
    width: 320px;
    height: 500px;
    background-color: rgba(0, 0, 0, 0.05) !important; /* Rengi koru */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    padding: 30px;
    z-index: 10;
}

/* Küçülen diğer kartlar */
.team-card.shrink {
    width: 230px;
    height: 350px;
    opacity: 0.7;
    filter: blur(2px);
}

/* Biyografi Alanı (Sadece tıklanan kartta görünür) */
.bio-content {
    display: none;
    font-size: 14px;
    color: #333;
    margin-top: 15px;
}

.team-card.expanded .bio-content {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}


/* Kurucumuz Bölümü */
#kurucumuz {
    text-align: center;
    padding: 50px 20px;
    animation: fadeIn 1s ease-in-out;
    margin-top: 120px;
}

#kurucumuz img {
    max-width: 300px;
    height: auto;
    border-radius: 0px; /* Yuvarlaklığı kaldırır */
    margin-bottom: 10px;
    border: 4px solid #b00000; /* Kırmızı çerçeve */
    padding: 10px; /* Çerçeve ile fotoğraf arasında boşluk */
    background-color: white; /* Çerçevenin içi beyaz olsun */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3); /* Gölge efekti */
    animation: logoGlow 4s infinite linear; /* 8 saniyede renk geçişleri */
}

#kurucumuz p {
    font-size: 18px;
    color: #666;
}

/* ParsoftX Bölümü */
#parsoftx {
    text-align: center;
    padding: 50px 20px;
    animation: fadeUp 1s ease-out forwards;
}

#parsoftx img {
    max-width: 220px;
    height: auto;
    margin-bottom: 10px;
}

#parsoftx p {
    font-size: 18px;
    color: #666;
}


/* *İletişim Sayfası* */
#iletisim {
    text-align: center;
    padding: 50px 20px;
}

/* İletişim Başlığı */
#iletisim h2 {
    font-size: 36px;
    margin-bottom: 30px;
    animation: slideUp 1s ease-in-out;
    margin-top: 145px;
}

/* İletişim İçeriği */
#iletisim p {
    font-size: 18px;
    color: #333;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeUp 1s ease-out forwards;
}

/* İletişim Formu */
#iletisim form {
    display: inline-block;
    width: 100%;
    max-width: 500px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: scaleUp 0.8s ease-out forwards;
}

/* Form Elemanları */
#iletisim form input, #iletisim form textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

#iletisim form input:focus, #iletisim form textarea:focus {
    border-color: #ff7e5f;
    outline: none;
}

/* Gönder Butonu */
#iletisim form button {
    padding: 15px;
    background-color: #ff7e5f;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    animation: fadeInButton 1s ease-out forwards;
}

#iletisim form button:hover {
    background-color: #feb47b;
}



/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Kurucumuz çerçevesi için özel çalışılmış animasyon */
@keyframes logoGlow {
    0% { border-color: #9D0B0E; }  /* Koyu Kırmızı */
    25% { border-color: #C21416; } /* Canlı Kırmızı */
    50% { border-color: #E60000; } /* Parlak Kırmızı */
    75% { border-color: #C21416; } /* Tekrar Canlı Kırmızı */
    100% { border-color: #9D0B0E; } /* Başa Dön */
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: auto;
}

footer p {
    margin: 0;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    #hero {
        padding: 80px 20px;
    }

    #hero h1 {
        font-size: 36px;
    }

    .btn-primary {
        padding: 12px 25px;
        font-size: 16px;
    }

    .ilan-container {
        grid-template-columns: 1fr;
    }

    #kurucumuz, #parsoftx, #basinda-biz {
        padding: 30px 10px;
    }

    #kurucumuz img, #parsoftx img {
        max-width: 150px;
    }

    nav ul li a {
        font-size: 13px;
    }
}



