* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    position: relative;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: white;
    
}

.logo {
    font-size: 30px;
    font-weight: bold;
}

.logo span {
    font-weight: normal;
    font-size: 24px;
    color: #8d8d8d;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.navbar-logo {
    width: 50px;
    height: 50px;
    margin-right: 20px; /* Yazı ile logo arasındaki mesafe */
    cursor: pointer;
    display: inline-block;
    vertical-align: middle; /* Yazı ile logo hizası */
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-size: 19px;
    font-weight: 300;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: blue;
}

/* İçerik alanı */
.container {
    display: flex;
    flex: 1;
    position: relative;
}

/* Sol kısım */
.left-section {
    width: 40%;
    background-color: #e6dace;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Sağ kısım */
.right-section {
    width: 60%;
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ortadaki kırmızı kutu */
.center-box {
    width: 750px;
    height: 500px;
    background-color: rgb(255, 255, 255);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
}

/* Ortadaki kutunun sol tarafı */
.center-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 5px rgba(0.3, 0.3, 0.3, 0.3);
}

/* Sol tarafın üst kısmı */
.center-left-top {
    height: 92%;
    background-color: #f4ece6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 25px; /* İç boşluk biraz artırıldı */
}

/* Profil fotoğrafı */
.profile-img {
    width: 170px; /* Fotoğraf boyutu büyütüldü */
    height: 170px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    margin-bottom: 30px; /* Fotoğraf ile isim arasındaki boşluk artırıldı */
}

/* İsim ve unvan */
.profile-name {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: -5px; /* Yazıyı aşağı kaydırdım */
}

.profile-surname {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 15px;
}


/* Alt çizgi */
.profile-underline {
    width: 60px;
    height: 3px;
    background-color: blue;
    margin-bottom: 20px; /* Çizgi ile unvan arasındaki boşluk artırıldı */
}

/* Unvan */
.profile-title {
    font-size: 16px;
    font-weight: 300; /* İnce font */
    color: #8d8d8d;
    letter-spacing: 2px; /* Harfler arası boşluk artırıldı */
}
.text {
    transition: color 0.1s ease-in-out;
}

/* Sosyal medya ikonları alanı */
.center-left-bottom {
    height: 8%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.center-left-bottom i {
    font-size: 30px;  /* İkon boyutunu ayarlayabilirsin */
    color: #333; /* İkon rengi */
    margin: 0 10px;  /* İkonlar arasındaki mesafeyi ayarlayabilirsin */
    transition: color 0.3s ease;
}

.center-left-bottom i:hover {
    color: blue;  /* Hover durumunda ikon rengi değişir */
}


/* Sağ taraf */
.center-right {
    width: 50%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Sağdaki divdeki içerik */
.right-section {
    width: 60%;
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
    margin-right: 110px;
}

/* Başlık "HELLO" */
.hello-title {
    font-size: 50px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 20px;
}

/* Alt başlık "Here's who I am & what I do" */
.who-am-i {
    font-size: 30px;
    font-weight: 500;
    color: rgb(0, 0, 0);
    margin-bottom: 30px;
}



/* Butonlar */
.buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.cv-button, .about-me-button {
    padding: 10px 20px; /* Daha küçük padding */
    font-size: 14px; /* Font boyutunu küçülttüm */
    font-weight: bold;
    border-radius: 25px;
    border: none;
    cursor: pointer;
}

.cv-button {
    background-color: blue;
    color: white;
}

.cv-button:hover {
    background-color: darkblue;
}

.about-me-button {
    background-color: white;
    color: black;
    border: 2px solid black;
}

.about-me-button:hover {
    background-color: lightgray;
}

/* Paragraf yazıları */
.paragraph {
    font-size: 14px;
    color: rgb(0, 0, 0);
    margin-bottom: 30px;
}

.story-text {
    font-size: 14px;
    color: rgb(0, 0, 0);
}


/* Footer */
.footer {
    text-align: center;
    padding: 25px 0;
    background-color: #f1f1f1;
    font-size: 14px;
    font-weight: 300;
}
