/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;700&display=swap');

/* Genel Stil */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #000;
}

/* Üst Navigasyon */
header {
    background-color: white;
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* MY SITE Logosu */
.logo {
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    color: black;
    letter-spacing: 1px;
    margin-left: -10px; /* Sola kaydırma */
}

/* Menü */
nav ul {
    list-style: none;
    display: flex;
    gap: 50px;
}

nav ul li {
    display: inline;
}

.nav-link {
    text-decoration: none;
    color: #000;
    font-size: 18px; /* Yazıları büyüt */
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease-in-out;
}

/* Animasyonlu Alt Çizgi */
.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1px;
    width: 0;
    height: 2px;
    background-color: black;
    transition: width 0.2s ease-in-out, left 0.2s ease-in-out;
}

/* Seçilen veya Üzerine Gelinen Menü */
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    left: 0;
}

/* Hero Bölümü */
.hero {
    background-color: #1a1d27;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 55px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1.5s ease-in-out;
}

.hero .highlight {
    color: #ffcc00;
    text-shadow: 2px 2px 10px rgba(255, 204, 0, 0.6);
}

/* Hoş Geldin Bölümü */
.welcome {
    text-align: center;
    padding: 80px 20px;
    animation: fadeIn 2s ease-in-out;
}

.welcome h2 {
    font-size: 24px;
    font-weight: bold;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.welcome p {
    font-size: 17px;
    color: gray;
    max-width: 600px;
    margin: 15px auto 0;
    line-height: 1.6;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

/* Fade-in Animasyonu */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#disqus_thread {
    max-width: 800px; /* İstediğiniz genişlik değerini girin */
    margin: 0 auto; /* Ortalamak için (isteğe bağlı) */
    margin-top: 80px;
}
