@charset "utf-8";
/* CSS Document */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    display: flex;
    background-color: #f8f9fa;
}

/* Sol Menü */
.sidebar {
    width: 260px;
    height: 100vh;
    background-color: #527E85;
    color: white;
    position: fixed;
    padding: 20px 0;
}

.sidebar-header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-links {
    list-style: none;
    margin-top: 20px;
}

.nav-links li a {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: 0.3s;
}

.nav-links li.active a, .nav-links li a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
    border-left: 5px solid #ffffff;
}

.nav-links i { margin-right: 15px; width: 20px; }

.divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 20px 25px;
}

/* Sağ Galeri Alanı */
.content {
    margin-left: 260px; /* Sidebar genişliği kadar boşluk */
    width: calc(100% - 260px);
    padding: 50px;
}

.gallery-info {
    margin-bottom: 40px;
    border-left: 5px solid #527E85;
    padding-left: 20px;
}

.gallery-info h1 {
    color: #527E85;
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-info p {
    color: #666;
    margin-top: 5px;
}

/* Galeri Grid Sistemi */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 280px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Üzerine Gelince Efekt */
.gallery-item:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(82, 126, 133, 0.7); /* Şeffaf Petrol Mavisi */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay span {
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 5px;
}
/* Genel Ayarlar */
body { margin: 0; display: flex; background-color: #f8f9fa; }

/* Sidebar ve Content düzeni */
.sidebar { width: 260px; height: 100vh; background: #527E85; color: white; position: fixed; }
.content { margin-left: 260px; width: calc(100% - 260px); padding: 40px; }

/* Galeri Grid */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; margin-bottom: 40px; }
.gallery-item { position: relative; border-radius: 15px; overflow: hidden; height: 220px; box-shadow: 0 5px 15px rgba(0,0,0,0.08); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }

/* Overlay */
.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(82, 126, 133, 0.7); display: flex; justify-content: center; align-items: center; opacity: 0; transition: 0.4s; }
.gallery-item:hover .overlay { opacity: 1; }
.overlay span { color: white; font-weight: bold; border: 2px solid white; padding: 8px 15px; border-radius: 5px; }

/* Yeni Ekstra Bilgi Bölümü */
.extra-info { display: grid; grid-template-columns: 2fr 1.2fr 1.2fr; gap: 20px; margin-top: 30px; }
.info-card { background: white; padding: 25px; border-radius: 15px; box-shadow: 0 4px 12px rgba(0,0,0,0.04); }

.text-card p { color: #555; line-height: 1.6; font-size: 1.05rem; }

.testimonial-card { border-top: 5px solid #527E85; text-align: center; }
.quote-icon { color: #527E85; font-size: 1.8rem; margin-bottom: 10px; }
.customer-name { display: block; margin-top: 15px; font-weight: bold; color: #527E85; }

.social-card { background: #f0f7f8; }
.social-top { color: #1DA1F2; font-weight: bold; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.social-footer { margin-top: 15px; color: #777; font-size: 0.9rem; display: flex; gap: 15px; }

/* Etkinlik Bandı */
.events-banner { background: #e2e8e9; margin-top: 40px; padding: 20px; border-radius: 15px; text-align: center; }
.banner-title { font-weight: bold; color: #527E85; margin-bottom: 10px; letter-spacing: 1px; }
.banner-items span { color: #444; font-size: 0.95rem; }
.sep { margin: 0 15px; color: #ccc; }

/* Footer */
.main-footer { margin-top: 50px; padding-top: 20px; border-top: 1px solid #ddd; display: flex; justify-content: space-between; align-items: center; color: #888; font-size: 0.85rem; }
.footer-socials i { margin-left: 15px; font-size: 1.2rem; cursor: pointer; transition: 0.3s; }
.footer-socials i:hover { color: #527E85; }