
header {
    background: #fff;
    padding: 5px;
    text-align: center;
    border-bottom: #ddd 1px solid;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Logo için */
.logo {
  max-width: 200px;   /* İstersen burayı büyüt/küçült */
  height: auto;
  margin: 0 auto 20px;
  display: block;
}


header h1 {
    color: #158169;
    margin: 0;
    font-size: 2.5em;
}

.content {
    background: #fff;
    padding: 25px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #555;
    border-bottom: 2px solid #4CAF50;
    padding-bottom: 5px;
    font-size: 1.8em;
}

h3 {
    color: #777;
    margin-top: 20px;
    font-size: 1.4em;
}

p {
    line-height: 1.6;
    color: #666;
}

.selection-container {
    margin-top: 20px;
}

.selection-container label {
    font-weight: bold;
    color: #333;
}

.selection-container select {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    width: 100%;
    margin-top: 10px;
}

.map-section {
    margin-top: 30px;
}

.map-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

#map-info {
    text-align: center;
    margin-top: 20px;
    font-style: italic;
    color: #777;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    color: #777;
    background: #fff;
    border-top: #ddd 1px solid;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.05);
}

/* Tüm resimleri responsive yap */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lightbox Stilleri */
#lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

#lightbox-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

#lightbox-image {
    max-width: 100%;
    max-height: 100vh;
}

#lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

#lightbox-close:hover {
    color: #bbb;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 40px;
    padding: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    user-select: none;
}

.lightbox-nav:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

#lightbox-prev {
    left: 0;
}

#lightbox-next {
    right: 0;
}

/* Hakkımızda Bölümü İçin Yeni Stiller */
.about-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-top-section {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.about-text-left {
    flex: 1;
}

.about-image-right {
    width: 400px;
    text-align: right;
}

.about-image-right img {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-bottom-text {
    width: 100%;
    margin-top: 20px;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 1.8em;
    }
    .content {
        padding: 15px;
    }
    h2 {
        font-size: 1.5em;
    }
    h3 {
        font-size: 1.2em;
    }
    .about-top-section {
        flex-direction: column;
        align-items: center;
    }
    .about-image-right {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
}