:root {
    --bg-body: #0a0a0a;
    --bg-section: #111111;
    --bg-card: #141414;
    --gold: #c5a059;
    --gold-hover: #e6b800;
    --text-light: #e5e5e5;
    --text-muted: #888888;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, .nav-logo, .main-title { font-family: 'Cinzel', serif; letter-spacing: 1px; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }

/* NAVBAR */
nav {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 15px 5%;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}
.nav-logo { font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.nav-menu { display: flex; gap: 30px; align-items: center; }
.nav-menu a:hover { color: var(--gold); }
.nav-btn { background: var(--gold); color: #000; padding: 8px 20px; border-radius: 2px; font-weight: 700; }
.menu-toggle { display: none; font-size: 1.8rem; cursor: pointer; color: var(--gold); }

/* HERO */
.hero {
    height: 100vh;
    width: 100%;
    background-color: #1a1a1a;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1621605815971-fbc98d665033?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    
    display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
    padding: 0 10%;
}
.hero-title { font-size: 3.5rem; line-height: 1.1; margin-bottom: 25px; }
.hero-title span { color: var(--gold); font-style: italic; }

/* BUTON GRUBU */
.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-main {
    padding: 15px 40px; border: 1px solid var(--gold); color: var(--gold); 
    font-family: 'Cinzel', serif; font-weight: 700; display: inline-block;
    white-space: nowrap;
}
.btn-main:hover { background: var(--gold); color: #000; box-shadow: 0 0 15px rgba(197, 160, 89, 0.5); }

/* SECTIONS */
.section { padding: 80px 5%; }
.section-title { font-size: 2.5rem; margin-bottom: 40px; text-align: center; color: #fff; }
.section-title span { color: var(--gold); border-bottom: 2px solid var(--gold); }

/* HİZMETLER */
.services { background: var(--bg-section); }
.price-list { max-width: 800px; margin: 0 auto; }
.price-item {
    display: flex; justify-content: space-between; align-items: baseline;
    border-bottom: 1px dashed #333; padding-bottom: 10px; margin-bottom: 20px;
}
.price-val { color: var(--gold); font-weight: 700; font-family: 'Cinzel', serif; font-size: 1.2rem; }

/* GALERİ */
.gallery { background: var(--bg-body); padding-bottom: 0; }
.gallery-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 5px;
}
.gallery-item { height: 300px; overflow: hidden; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.gallery-item:hover img { transform: scale(1.1); filter: brightness(1.2); }

/* EKİP */
.staff-section { background: var(--bg-section); padding-bottom: 100px; }
.staff-container {
    width: 100%; max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
}
.staff-card {
    background: var(--bg-card); border: 1px solid #222;
    display: flex; flex-direction: column; transition: transform 0.3s, border-color 0.3s; width: 100%;
}
.staff-card:hover { transform: translateY(-10px); border-color: var(--gold); }
.card-img-wrapper { width: 100%; height: 280px; overflow: hidden; background: #000; }
.staff-img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: 0.5s; }
.staff-card:hover .staff-img { transform: scale(1.05); }
.staff-info { padding: 15px; flex-grow: 1; display: flex; flex-direction: column; text-align: center; }
.staff-name { font-size: 1.1rem; margin-bottom: 5px; color: #fff; font-family: 'Cinzel', serif; }
.staff-role { color: var(--gold); font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 15px; display: block; }
.btn-profile { background: transparent; border: 1px solid #333; color: #aaa; padding: 8px; width: 100%; margin-bottom: 10px; cursor: pointer; transition: 0.3s; font-size: 0.8rem; }
.btn-profile:hover { border-color: #fff; color: #fff; background: #222; }
.btn-book { background: #222; color: #fff; border: none; padding: 10px; width: 100%; cursor: pointer; font-weight: 700; transition: 0.3s; font-size: 0.9rem; }
.btn-book:hover { background: var(--gold); color: #000; box-shadow: 0 0 10px rgba(197, 160, 89, 0.4); }

/* FOOTER */
footer { background: #050505; padding: 30px 5%; border-top: 1px solid #222; }
.footer-wrapper {
    max-width: 900px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    gap: 40px; flex-wrap: wrap; 
}
.footer-info { flex: 1; min-width: 250px; display: flex; flex-direction: column; justify-content: center; }
.footer-logo { font-size: 1.8rem; font-weight: 700; color: var(--gold); margin-bottom: 15px; font-family: 'Cinzel', serif; line-height: 1; }

.contact-row { display: flex; align-items: flex-start; margin-bottom: 12px; color: #ccc; }
.contact-row i { color: var(--gold); margin-right: 12px; font-size: 1rem; margin-top: 4px; }
.contact-row div { display: flex; flex-direction: column; }
.contact-row strong { color: #fff; font-size: 0.8rem; margin-bottom: 2px; font-family: 'Cinzel', serif; }
.contact-row span { font-size: 0.85rem; color: #888; line-height: 1.3; }

.social-links { display: flex; gap: 10px; margin-top: 15px; }
.social-icon {
    color: #fff; font-size: 1.1rem; transition: all 0.3s ease;
    display: flex; align-items: center; justify-content: center;
    width: 35px; height: 35px; border-radius: 50%; border: 1px solid #333;
}
.social-icon:hover { 
    color: var(--gold-hover); border-color: var(--gold); transform: scale(1.1); box-shadow: 0 0 10px rgba(197, 160, 89, 0.4); background: #111;
}

.footer-map-container {
    width: 260px; height: 260px;
    border: 2px solid var(--gold); border-radius: 10px;
    overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    position: relative; flex-shrink: 0;
}
.footer-map-container iframe {
    width: 100% !important; height: 400px !important; border: 0; display: block; margin-top: -65px;
}
.copyright { text-align: center; margin-top: 30px; padding-top: 15px; border-top: 1px solid #1a1a1a; color: #444; font-size: 0.75rem; }

/* MODALS */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95); z-index: 2000; display: none; align-items: center; justify-content: center; backdrop-filter: blur(5px);
}
.modal-overlay.active { display: flex; }
.modal-content {
    background: #141414; width: 90%; max-width: 450px; 
    border: 1px solid var(--gold); position: relative; max-height: 95vh; overflow-y: auto;
}
.modal-image-container { width: 100%; height: 350px; background: #000; display: flex; align-items: center; justify-content: center; }
.modal-image-container img { width: 100%; height: 100%; object-fit: contain; }
.modal-body { padding: 25px; }
.close-btn {
    position: absolute; top: 10px; right: 10px; color: #fff; background: rgba(0,0,0,0.5); 
    border: none; width: 30px; height: 30px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; z-index: 10;
}
select, textarea { width: 100%; padding: 12px; background: #000; border: 1px solid #333; color: #fff; margin-bottom: 15px; border-radius: 4px; }

.time-slots { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.time-label { padding: 10px; background: #222; text-align: center; cursor: pointer; font-size: 0.8rem; border-radius: 4px; display: block; }
.time-radio:checked + .time-label { background: rgba(197, 160, 89, 0.2); color: var(--gold); border: 1px solid var(--gold); }
.time-radio { display: none; }
.btn-whatsapp { background: #25D366; color: #fff; width: 100%; padding: 15px; border: none; font-weight: 700; cursor: pointer; border-radius: 4px; }

/* RESPONSIVE & MOBILE FIXES */
@media (max-width: 1024px) {
     .staff-container { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    
    .hero {
        background-attachment: scroll; 
        background-position: center;
        background-size: cover; 
    }

    .hero-btns {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        width: 100%;
    }
    .btn-main {
        padding: 12px 10px; 
        font-size: 0.85rem;
        flex: 1; 
        text-align: center;
    }

    .menu-toggle { display: block; }
    .nav-menu { 
        display: none; position: absolute; top: 70px; left: 0; width: 100%;
        background: #0a0a0a; flex-direction: column; padding: 20px;
        border-bottom: 1px solid var(--gold); text-align: center;
    }
    .nav-menu.active { display: flex; }
    .nav-menu a { margin: 10px 0; font-size: 1.1rem; }

    .section { padding: 60px 5%; }
    .footer-wrapper { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-info { align-items: center; }
    .contact-row { flex-direction: column; align-items: center; }
    .contact-row i { margin-right: 0; margin-bottom: 10px; }
    .footer-map-container { margin: 0 auto; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    
    .staff-container { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 15px; padding-bottom: 20px; }
    .staff-card { min-width: 260px; scroll-snap-align: center; }
    .staff-container::-webkit-scrollbar { display: none; }
}