/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}
.navbar {
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    border-radius: 10px;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    z-index: 1000;
    position: absolute;
    margin-top: 50px;
}
.navbar ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}
.navbar li {
    margin: 0 15px;
}
.navbar a {
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
}
.navbar a:hover {
    color: #ff0000;
}
footer {
    background-color: #111;
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-top: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: auto;
}
.footer-logo img {
    max-width: 150px;
}
.section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f0f0f0;
    border-bottom: 1px solid #ddd;
}
.social-icons a {
    color: white;
    font-size: 20px;
    margin: 0 10px;
    text-decoration: none;
}
.footer-section {
    width: 250px;
    text-align: left;
}
.footer-section h3 {
    border-bottom: 2px solid red;
    padding-bottom: 5px;
    margin-bottom: 15px;
}
.footer-section ul {
    list-style: none;
    padding: 0;
}
.footer-section ul li {
    margin: 8px 0;
}
.footer-bottom {
    background: #000;
    padding: 15px 0;
    font-size: 14px;
}
.footer-bottom a {
    color: rgb(250, 247, 247);
    text-decoration: none;
}
.image-container {
    position: relative;
    width: 100%;
    max-width: 1200px; /* Maksimum genişliği ayarlayın */
    margin: 0 auto; /* Ortalamak için */
    height: auto; /* Yüksekliği otomatik yap */
    overflow: hidden;
    margin-bottom: 20px; /* Alt boşluk ekleyin */
}

.image-container img {
    width: 100%; /* Resmi tam genişlikte yap */
    height: auto; /* Yüksekliği otomatik yap */
    min-width: 300px; /* Minimum genişliği ayarlayın */
    min-height: 200px; /* Minimum yüksekliği ayarlayın */
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    background: rgba(0, 0, 0, 0.5); /* Arka planı yarı saydam yap */
    padding: 20px;
    border-radius: 10px;
}

.overlay h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.overlay p {
    font-size: 18px;
}

.link-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px; /* Yüksekliği ayarlayın */
    text-align: center;
    margin: 20px 0; /* Üst ve alt boşluk ekleyin */
    font-size: 18px; /* Yazı boyutunu ayarlayın */
}

.link-container a {
    color: #007BFF; /* Link rengi */
    text-decoration: none; /* Alt çizgiyi kaldır */
}

.link-container a:hover {
    text-decoration: underline; /* Üzerine gelindiğinde alt çizgi ekle */
}