/* GENEL AYARLAR */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
    --gold: #d4af37;
    --dark: #2c3e50;
    --bg: #fdfbf7; /* Hafif kağıt dokusu rengi */
    --text: #4a4a4a;
}

body {
    background-color: var(--bg);
    font-family: 'Lato', sans-serif;
    color: var(--text);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, .serif {
    font-family: 'Playfair Display', serif;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
a:hover { color: var(--gold); }

/* NAVBAR */
.navbar {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}
.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}
.nav-link {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--dark) !important;
}

/* SLIDER ALANI */
.hero-slider {
    height: 80vh; /* Ekranın %80'i */
    background: #000;
    position: relative;
    overflow: hidden;
}
.hero-slide-item {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}
.hero-overlay {
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.3); /* Resimlerin üzerine hafif karanlık */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

/* MASONRY GRID (DUVAR YAPISI) */
.gallery-container {
    padding: 50px 0;
}
.masonry-grid {
    column-count: 4; /* Masaüstünde 4 sütun */
    column-gap: 20px;
}
@media (max-width: 1200px) { .masonry-grid { column-count: 3; } }
@media (max-width: 768px) { .masonry-grid { column-count: 2; } }
@media (max-width: 576px) { .masonry-grid { column-count: 1; } }

.gallery-item {
    break-inside: avoid; /* Kartın bölünmesini engeller */
    margin-bottom: 20px;
    position: relative;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.gallery-img {
    width: 100%;
    height: auto;
    display: block;
}
/* Filigran için CSS Katmanı (Seçenek B) */
.gallery-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('../img/filigran.png') center center no-repeat;
    background-size: 50%;
    opacity: 0.2; /* Şeffaflık */
    pointer-events: none;
}

.gallery-info {
    padding: 20px;
    text-align: center;
}
.gallery-cat {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 5px;
    display: block;
}
.gallery-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
}
.gallery-price {
    font-family: 'Lato', sans-serif;
    color: var(--gold);
    font-weight: 700;
}

/* FOOTER */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px 0;
    margin-top: 50px;
}
footer h5 { color: var(--gold); margin-bottom: 20px; }
footer ul { list-style: none; padding: 0; }
footer ul li { margin-bottom: 10px; }
footer ul li a { color: #aaa; }
footer ul li a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: #666;
    font-size: 12px;
}
/* WHATSAPP STICKY BUTON */
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-sticky:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: white;
}

/* Hafif kalp atışı efekti */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobilde butonu biraz daha yukarı al (Footer kapatmasın) */
@media (max-width: 768px) {
    .whatsapp-sticky {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}
/* ÇOKLU SEÇİM FİLTRE (MULTI-SELECT) STİLİ */
.filter-dropdown {
    position: relative;
    width: 100%;
}

.filter-btn-trigger {
    width: 100%;
    padding: 12px 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 50px; /* Hap şeklinde modern tasarım */
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.filter-btn-trigger:hover {
    border-color: #d4af37;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.filter-dropdown-menu {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 15px;
    display: none; /* JS ile açılacak */
    z-index: 1000;
    border: 1px solid #f0f0f0;
}

.filter-dropdown-menu.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown { from {opacity:0; transform:translateY(-10px);} to {opacity:1; transform:translateY(0);} }

.filter-option {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.2s;
    margin-bottom: 5px;
}

.filter-option:hover { background: #f9f9f9; }

/* Gizli Checkbox */
.filter-option input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
    cursor: pointer;
    position: relative;
    transition: 0.2s;
}

.filter-option input[type="checkbox"]:checked {
    background-color: #2c3e50;
    border-color: #2c3e50;
}

.filter-option input[type="checkbox"]:checked::after {
    content: '✔';
    position: absolute;
    color: white;
    font-size: 12px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.filter-label { font-size: 14px; color: #444; }

/* Seçili Etiketler (Tags) */
.active-filters-area {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}
.filter-tag {
    background: #2c3e50;
    color: #fff;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.filter-tag i { cursor: pointer; }