/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1e0033;
    color: #ffffff;
}

/* Üst Menü */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
    background-color: #1e0033;
}

.navbar a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 30px;
    font-size: 36px;
    font-weight: bold;
}

.navbar a:hover {
    color: #9999ff;
}

/* İçerik Başlığı */
.content h1 {
    font-size: 48px;
    text-align: left;
    margin-top: 30px;
    padding-left: 50px;
}

/* Proje Container */
.project-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px;
}

/* Proje Listesi */
.project-list {
    max-width: 50%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.project-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: #ffffff;
    transition: transform 0.3s ease, color 0.3s ease;
}

.project-item:hover {
    color: #9999ff;
}

.project-item img {
    width: 45px; /* İkon boyutu büyütüldü */
    height: auto;
}

.project-item span {
    font-size: 30px; /* Yazılar büyütüldü */
    font-weight: bold;
}

/* Hover Olmayan Öğeler */
.no-hover:hover {
    color: #ffffff; /* Renk değişimi yok */
    transform: none;
}

/* Sağ: Fotoğraf ve Butonlar */
.project-right {
    max-width: 40%;
    text-align: center;
}

.project-photo {
    width: 90%; /* Fotoğraf biraz küçültüldü */
    border-radius: 10px;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px; /* Butonlar arasındaki boşluk */
    margin-top:-5px; /* Fotoğraftan uzaklık */
}

.button {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    color: #1e0033;
    background-color: #ffffff;
    font-weight: bold;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.button:hover {
    background-color: #9999ff;
}
