/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* Hero Bölümü */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    padding: 0 20px;
    width: 100%;
}

/* Profil Bölümü */
.profile-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    text-align: left;
}

.profile-image {
    flex-shrink: 0;
    animation: fadeInLeft 1s ease-out;
}

.profile-image img {
    width: 600px;
    height: 450px;
    /*border-radius: 50%;*/
    /*border: 8px solid rgba(255, 255, 255, 0.2);*/
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
}

.profile-text {
    flex-grow: 1;
    animation: fadeInRight 1s ease-out;
}

.profile-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.tagline {
    font-size: 1.8rem;
    color: #007bff;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.bio {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.hero-social-links {
    display: flex;
    gap: 1.5rem;
}

.hero-social-links a {
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.hero-social-links a:hover {
    color: #007bff;
    transform: translateY(-3px);
}

/* Navigasyon */
nav {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #007bff;
}

/* Ana İçerik */
main {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 20px;
}

.articles-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.article-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.article-content {
    padding: 1.5rem;
}

.article-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.article-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.article-meta i {
    margin-right: 5px;
    margin-left: 15px;
}

.article-meta i:first-child {
    margin-left: 0;
}

.article-excerpt {
    margin-bottom: 1rem;
    color: #666;
}

.read-more {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #007bff;
    font-weight: 500;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.social-links {
    margin-bottom: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #007bff;
}

/* Animasyonlar */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .profile-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .profile-text h1 {
        font-size: 2.8rem;
    }

    .tagline {
        font-size: 1.5rem;
    }

    .hero-social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-links {
        margin-top: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .profile-text h1 {
        font-size: 2.5rem;
    }

    .profile-image img {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .profile-text h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .bio {
        font-size: 1rem;
    }

    .profile-image img {
        width: 200px;
        height: 200px;
    }
}