@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Poppins:wght@300;400;500&display=swap');

:root {
    --gold: #C5A880; /* Daha soft, zarif bir altın tonu */
    --bg-light: #FDFBF7; /* Kırık beyaz / Krem */
    --text-dark: #2C3E50;
    --text-muted: #666666;
    --card-bg: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    scroll-behavior: smooth;
    line-height: 1.6;
}

/* --- Şeffaf ve Ferah Navigasyon --- */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 5%; background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    position: fixed; width: 100%; z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--text-dark); text-decoration: none;
    font-size: 0.9rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px;
    transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }

/* --- Sinematik Hero --- */
.hero { height: 100vh; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.video-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; pointer-events: none; }
.video-container iframe {
    width: 100vw; height: 56.25vw; min-height: 100vh; min-width: 177.77vh;
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(1.15); 
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    /* Siyah yerine kahve/altın alt tonlu sıcak bir karartma */
    background: linear-gradient(to bottom, rgba(44, 62, 80, 0.4) 0%, rgba(253, 251, 247, 1) 100%);
}
.hero-content { z-index: 2; text-align: center; padding: 0 20px; transform: translateY(50px); }
.hero-content h1 { font-family: 'Playfair Display', serif; font-size: 4.5rem; color: var(--text-dark); margin-bottom: 10px; }
.hero-content p { font-size: 1.1rem; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); }

/* --- Ortak Bölüm Ayarları --- */
section { padding: 100px 5%; max-width: 1400px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-family: 'Playfair Display', serif; font-size: 2.8rem; color: var(--text-dark); font-weight: 600; }
.section-title p { color: var(--text-muted); margin-top: 15px; font-size: 1.1rem; max-width: 600px; margin-inline: auto; }

/* --- Paket Listesi (Grid) --- */
.package-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px;
}
.package-item {
    background: var(--card-bg); padding: 20px; border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03); display: flex; align-items: center; gap: 15px;
    border-left: 3px solid var(--gold);
}
.package-item i { color: var(--gold); font-size: 1.5rem; }

/* --- ODi Özel Alan --- */
.odi-showcase {
    background: var(--text-dark); color: white; padding: 80px 5%; border-radius: 20px;
    margin: 50px 5%; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 40px;
}
.odi-text { flex: 1; min-width: 300px; }
.odi-text h3 { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--gold); margin-bottom: 20px; }
.odi-text p { font-weight: 300; font-size: 1.1rem; margin-bottom: 20px; opacity: 0.9; }

/* --- Salon Kartları (Görsel Alanlı) --- */
.salon-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 50px; }
.salon-card { background: var(--card-bg); border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.image-placeholder {
    width: 100%; height: 350px; background-color: #EAEAEA;
    display: flex; align-items: center; justify-content: center;
    color: #999; font-style: italic; border-bottom: 5px solid var(--gold);
}
.salon-info { padding: 40px; }
.salon-info h3 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 10px; }
.salon-info .capacity { color: var(--gold); font-weight: 500; margin-bottom: 20px; display: inline-block; }

/* --- Sabit İkonlar --- */
.floating-btn {
    position: fixed; width: 55px; height: 55px; border-radius: 50%;
    display: flex; justify-content: center; align-items: center; font-size: 24px; z-index: 9999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15); text-decoration: none; transition: 0.3s;
}
.floating-btn:hover { transform: translateY(-5px); }
.whatsapp-btn { bottom: 30px; right: 30px; background: #25d366; color: white; }
.up-btn { bottom: 100px; right: 30px; background: var(--text-dark); color: white; cursor: pointer; }

/* --- İletişim Sayfası Eklemeleri --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.contact-details {
    padding: 50px;
}

.contact-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-item i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-right: 20px;
    margin-top: 5px;
}

.info-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

.social-links-area {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    background: var(--bg-light);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.3s;
    border: 1px solid #eee;
}

.social-btn i {
    margin-right: 12px;
    font-size: 1.2rem;
    color: var(--gold);
}

.social-btn:hover {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}

.social-btn:hover i {
    color: white;
}

.odi-btn {
    background: var(--text-dark);
    color: white;
    border-color: var(--text-dark);
}

.odi-btn i { color: white; }
.odi-btn:hover { background: var(--gold); border-color: var(--gold); }

.contact-map {
    width: 100%;
    min-height: 400px;
    background: #eaeaea;
}

/* --- Footer --- */
.site-footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 5% 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--gold);
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 10px;
}

.maps-link {
    display: inline-flex;
    align-items: center;
    background: var(--gold);
    color: var(--text-dark);
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.maps-link i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.maps-link:hover {
    background: white;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* --- Dil Seçici --- */
.language-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-main);
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: 0.3s;
}

.lang-btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: var(--gold);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 5px;
}

.language-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 12px 15px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

.lang-option:first-child {
    border-radius: 8px 8px 0 0;
}

.lang-option:last-child {
    border-radius: 0 0 8px 8px;
    border-bottom: none;
}

.lang-option:hover,
.lang-option.active {
    background: var(--gold);
    color: white;
    transform: translateX(5px);
}

/* --- Hamburger Menü --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle i {
    font-size: 1.5rem;
    color: var(--text-main);
}

/* Mobil Uyumluluk */
@media screen and (max-width: 768px) {
    .navbar {
        justify-content: space-between;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--card-bg);
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        margin: 0;
        font-size: 1.1rem;
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
    }
    
    .nav-links .language-selector {
        margin-top: 20px;
        align-self: center;
    }
    
    .nav-links .lang-dropdown {
        position: absolute;
        top: 100%;
        right: 0;
        background: white;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        min-width: 120px;
        display: none;
        z-index: 1000;
        margin-top: 5px;
        width: 100%;
    }
    
    .nav-links .lang-dropdown.show {
        display: block;
    }
    
    .hero-content h1 { font-size: 3rem; }
    .odi-showcase { padding: 40px 20px; flex-direction: column; text-align: center; }
    .salon-grid { grid-template-columns: 1fr; }
    .image-placeholder { height: 250px; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-map { min-height: 350px; }
    .contact-details { padding: 30px; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .maps-link { justify-content: center; }
}

@media screen and (max-width: 992px) {
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-map { min-height: 350px; }
    .contact-details { padding: 30px; }
}

/* --- Galeri Sayfası Grid Yapısı --- */
.gallery-section { 
    padding-top: 150px; 
    padding-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background: #fff;
}

.gallery-item img {
    width: 100%;
    height: 350px; /* Fotoğrafların hepsi aynı boyutta hizalı dursun */
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}
