/* Genel Stiller */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: black;
    margin: 0;
    padding: 0;
}

/* Mobil Uyumlu Tasarım */
* {
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Başlık ve Header */
.header-bar {
    background-color: white;
    color: black;
    text-align: center;
    padding: 0 0;
    font-size: 18px;
    font-weight: bold;
}

header {
    background-color: #1E1E1E; /* Koyu gri tonu profesyonel bir hava katıyor */
    text-align: center;
    padding: 20px 0;
}

header img {
    max-width: 100%;
    height: auto;
}

/* Bölümler */
section {
    padding: 20px;
    background-color: white;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

h1, h2 {
    color: black;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    letter-spacing: 1px;
    border-bottom: 3px solid black;
    padding-bottom: 5px;
}

ul li {
    margin: 10px 0;
    list-style: none;
}

/* Butonlar */
button, .call-button, .whatsapp-button a {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    font-weight: bold;
    z-index: 9999;
}

button:hover, .call-button:hover, .whatsapp-button a:hover {
    background-color: white;
    color: black;
}

/* Galeri */
.gallery1 {
    text-align: center;
    position: relative;
}

.gallery1 img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Footer */
#iletisim {
    text-align: center;
    padding: 20px;
    background-color: white;
}

/* Sabit Butonlar */
.call-button, .whatsapp-button {
    position: fixed;
    bottom: 20px;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    z-index: 9999;
}

.call-button {
    left: 20px;
}

.whatsapp-button {
    right: 20px;
}

/* Arşiv Kısmı */
.archive-content1 {
    display: none; /* Başlangıçta kapalı olacak */
}

.archive-btn1 {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #2C3E50;
    color: white;
    padding: 10px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    font-weight: bold;
}

.archive-btn1:hover {
    background-color: #1E1E1E;
}

/* Mobil Cihazlar için Responsive Tasarım */
@media (max-width: 768px) {
    .header-bar {
        font-size: 16px;
        padding: 8px 0;
    }
    section {
        margin: 10px;
        padding: 15px;
    }
    h1, h2 {
        font-size: 20px;
    }
    .call-button, .whatsapp-button {
        bottom: 10px;
        padding: 8px 15px;
        font-size: 14px;
    }
}