/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;600&display=swap');

:root {
    --gold: #d4af37;
    --dark: #111111;
    --dark-light: #1a1a1a;
    --white: #ffffff;
    --gray: #cccccc;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; background-color: var(--dark); color: var(--gray); line-height: 1.6; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--gold); }
a { text-decoration: none; color: inherit; transition: 0.3s; }
.container { width: 90%; max-width: 1200px; margin: auto; padding: 40px 0; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 30px; border-bottom: 2px solid var(--gold); display: inline-block; padding-bottom: 10px; }
.text-center { text-align: center; }

/* HEADER */
.top-bar { background: #000; padding: 10px 20px; font-size: 0.85rem; display: flex; justify-content: center; gap: 20px; color: var(--gold); }
.navbar { background: var(--dark-light); padding: 20px 50px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(212, 175, 55, 0.2); }
.navbar .logo h2 { font-size: 1.8rem; color: var(--white); }
.navbar .logo span { color: var(--gold); }
.nav-links { list-style: none; display: flex; gap: 25px; }
.nav-links a { color: var(--white); font-weight: 600; text-transform: uppercase; font-size: 0.9rem; }
.nav-links a:hover { color: var(--gold); }

/* BUTTONS */
.btn-gold { background: var(--gold); color: var(--dark); padding: 12px 25px; font-weight: 600; text-transform: uppercase; border-radius: 3px; display: inline-block; }
.btn-gold:hover { background: var(--white); color: var(--dark); }

/* SERVICES GRID */
.services-section { background: var(--dark-light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.service-card { background: #000; padding: 30px; text-align: center; border: 1px solid rgba(212,175,55,0.1); border-radius: 5px; transition: transform 0.3s, box-shadow 0.3s; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2); border-color: var(--gold); }
.service-icon { font-size: 3rem; color: var(--gold); margin-bottom: 15px; }
.btn-readmore { display: inline-block; margin-top: 15px; font-size: 0.9rem; color: var(--gold); border-bottom: 1px solid var(--gold); }

/* FAQ */
.faq-section { background: var(--dark); text-align: center; }
.faq-item { background: var(--dark-light); margin: 15px auto; padding: 20px; max-width: 800px; border-left: 4px solid var(--gold); text-align: left; }
.faq-item h4 { color: var(--white); margin-bottom: 10px; font-family: 'Poppins', sans-serif; }

/* FOOTER */
.main-footer { background: #000; padding: 60px 20px 20px; border-top: 2px solid var(--gold); }
.footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; max-width: 1200px; margin: auto; }
.footer-col h3 { margin-bottom: 20px; font-size: 1.5rem; }
.footer-services, .footer-contact { list-style: none; }
.footer-services li, .footer-contact li { margin-bottom: 10px; font-size: 0.9rem; }
.footer-services a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact i { color: var(--gold); margin-right: 10px; }
.footer-bottom { text-align: center; padding-top: 30px; margin-top: 30px; border-top: 1px solid #333; font-size: 0.85rem; }
/* =========================================
   MOBİL EKRAN (TELEFON) DÜZELTMELERİ
========================================= */
@media (max-width: 768px) {
    
    /* 1. HEADER & MENÜ DÜZELTMESİ (Üst üste binmeyi engeller) */
    .navbar {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    .navbar .logo h2 {
        font-size: 1.6rem; /* Logo devasa olmasın */
        margin-bottom: 15px;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .nav-links a {
        font-size: 0.85rem;
    }

    /* 2. ANA SAYFA DEV SLIDER YAZILARI (Taşmaları engeller) */
    .hero-slide {
        height: 60vh !important; /* Mobilde çok uzun kalıp ekranı kaplamasın */
    }
    .hero-content {
        padding: 15px !important;
    }
    .hero-content h1 {
        font-size: 2rem !important; /* 4rem'lik dev yazıyı telefona uygun boyuta çektik */
        line-height: 1.3 !important;
    }
    .hero-content p {
        font-size: 1rem !important;
    }
    .hero-content .btn-gold {
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
    }

    /* 3. SALON INSPIRATION GALERİ DÜZELTMESİ (Sıkışan fotoları 2'li ızgara yapar) */
    .gallery-section div[style*="display:flex"] {
        flex-wrap: wrap !important;
    }
    .gallery-section div[style*="flex:1 1 25%"] {
        flex: 1 1 50% !important; /* Yanyana 4 yerine 2 fotoğraf gösterir (2x2 kare şeklinde) */
        height: 250px !important;
    }
    
    /* İletişim sayfasındaki adres kutuları vb. mobilde alt alta düzgün insin diye garanti önlem */
    .contact-section div[style*="display: flex"],
    .about-snippet .container {
        flex-direction: column !important;
    }
}
/* =========================================
   MOBİL (TELEFON) SON RÖTUŞLAR
========================================= */
@media (max-width: 768px) {
    /* 1. En üstteki siyah bilgi çubuğunun ekrandan taşmasını engeller (Alt alta dizer) */
    .top-bar {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 10px !important;
        padding: 15px 10px !important;
    }
    .top-bar span {
        display: block;
        width: 100%;
        font-size: 0.85rem;
    }

    /* 2. İletişim sayfasındaki haritanın yarım kalıp siyah boşluk yaratmasını engeller */
    .contact-section div[style*="min-height: 400px"],
    .contact-section iframe,
    .map-col iframe {
        height: 350px !important;
        min-height: 350px !important;
        display: block !important;
    }

    /* 3. Uzun mail adresinin (info@...) ortadan çirkin kırılmasını önler */
    .contact-section ul li, 
    .footer-contact li {
        word-break: break-word !important;
        font-size: 0.95rem !important;
    }
}
/* =========================================
   LOGO VE HEADER DÜZELTMELERİ
========================================= */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    /* Logonun navbar'da cam gibi net ve elit durması için boyutu sabitlendi */
    max-height: 80px; /* Çok büyük olmasın, navbar'ı ezmesin */
    width: auto; /* Aspect ratio bozulmasın */
    display: block;
}

/* Mobilde logo boyutunu biraz daha küçültelim */
@media (max-width: 768px) {
    .logo img {
        max-height: 60px; /* Telefonda daha kibar dursun */
    }
}
/* =========================================
   BUTTONS & LINKS & GOLD-LINK
========================================= */
.btn-gold {
    background: var(--gold);
    color: #111;
    padding: 12px 25px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
    display: inline-block;
    transition: 0.3s;
    text-decoration: none;
    font-size: 1rem;
}
.btn-gold:hover { background: #fff; color: #111; }

/* Elite styling for the Instagram button */
.instagram-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.15rem;
    padding: 15px 35px;
    background: var(--gold);
    color: #111;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
    text-decoration: none;
    transition: 0.3s;
}
.instagram-btn:hover { background: #fff; color: #111; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3); }
.instagram-btn i { font-size: 1.8rem; }

/* Elit Link Sınıfı */
.gold-link {
    color: #fff !important;
    text-decoration: none;
    transition: 0.3s;
}
.gold-link:hover {
    color: var(--gold) !important;
    text-decoration: underline;
}

/* =========================================
   CONTACT PAGE VIP DETAILS (Ordery & Elite)
========================================= */
.combined-comm-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}
.comm-details-col {
    display: flex;
    align-items: center;
    gap: 15px;
}
.comm-divider-col {
    display: flex;
    align-items: center;
    border-left: 2px solid var(--gold);
    padding-left: 15px;
}

/* =========================================
   RESPONSIVE (TELEFON) KUSURSUZLAŞTIRICI
========================================= */
@media (max-width: 768px) {
    /* ... existing responsive rules ... */

    /* Mobilde Butonların Sayfa Dışına Taşmasını ve Çirkin Durmasını Engelle (BETON GİBİ ÇÖZÜM) */
    .hero-content .btn-gold,
    .instagram-btn,
    .contact-section li a.btn-gold,
    .btn-gold {
        font-size: 0.9rem !important;
        padding: 10px 18px !important;
        width: auto !important;
        max-width: 100% !important;
        display: inline-flex !important;
        text-align: center !important;
    }
    .instagram-btn i { font-size: 1.4rem !important; }

    /* İletişim sayfasındaki combinado satır mobilde alt alta düzgün insin diye garanti */
    .combined-comm-row {
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
        text-align: center !important;
    }
    .comm-details-col {
        width: 100% !important;
        justify-content: center !important;
    }
    .comm-divider-col {
        border-left: none !important;
        border-top: 1px solid var(--gold) !important;
        padding-left: 0 !important;
        padding-top: 10px !important;
        width: 100% !important;
        justify-content: center !important;
    }
}
/* =========================================
   Haberleşme İkon ve Link Stilleri (VIP SET)
========================================= */
.vip-link-group li {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 20px !important;
    font-size: 1.1rem !important;
}
.vip-link-group li:last-child { margin-bottom: 0 !important; }

/* Elit Link Sınıfı */
.gold-link {
    color: #fff !important;
    text-decoration: none;
    transition: 0.3s;
}
.gold-link:hover {
    color: var(--gold) !important;
    text-decoration: underline;
}

/* =========================================
   Ana Sayfa Elit Instagram Butonu
========================================= */
/* Elit styling for the Instagram button */
.instagram-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.15rem;
    padding: 15px 35px;
    background: var(--gold);
    color: #111;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
    text-decoration: none;
    transition: 0.3s;
    /* Mobilde taşmayı önlemek için temel kural */
    max-width: 100% !important;
}
.instagram-btn:hover { background: #fff; color: #111; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3); }
.instagram-btn i { font-size: 1.8rem; }


/* =========================================
   RESPONSIVE (TELEFON) KUSURSUZLAŞTIRICI
========================================= */
@media (max-width: 768px) {
    /* Mevcut responsive kuralların en sonuna ekle */

    /* Mobilde Butonların Sayfa Dışına Taşmasını ve Çirkin Durmasını Engelle (BETON GİBİ ÇÖZÜM) */
    .hero-content .btn-gold,
    .instagram-btn,
    .contact-section li a.btn-gold,
    .btn-gold {
        font-size: 0.9rem !important;
        padding: 10px 20px !important;
        width: auto !important;
        display: inline-flex !important;
        text-align: center !important;
        justify-content: center !important;
        gap: 8px !important;
    }
    .instagram-btn i { font-size: 1.4rem !important; }
}
/* =========================================
   Ana Sayfa Elit Instagram Butonu (Minimalist & VIP)
========================================= */
/* Elit styling for the Instagram button */
.instagram-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1rem; /* Smaller, more elegant font */
    padding: 12px 25px; /* Adjust padding for hap shape */
    background: linear-gradient(to right, #D4AF37, #FBF4CB, #D4AF37); /* Fırçalanmış altın metalik doku */
    color: #111; /* Siyah metin okunaklılık için */
    font-weight: 400; /* Daha ince, zarif yazı tipi */
    text-transform: uppercase;
    border-radius: 50px; /* Hap şeklinde */
    text-decoration: none;
    transition: 0.3s;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Premium gölge */
    /* Mobilde taşmayı önlemek için temel kural */
    max-width: 100% !important;
}

.instagram-btn:hover {
    background: linear-gradient(to right, #f2dc87, #FBF4CB, #f2dc87); /* Üzerine gelince parıltı efekti */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

.instagram-btn i {
    font-size: 1.5rem; /* İkonu biraz daha büyük tutuyoruz */
    color: #111;
}

/* =========================================
   RESPONSIVE (TELEFON) KUSURSUZLAŞTIRICI
========================================= */
@media (max-width: 768px) {
    /* ... existing responsive rules ... */

    /* Mobilde Butonların Sayfa Dışına Taşmasını ve Çirkin Durmasını Engelle (BETON GİBİ ÇÖZÜM) */
    .hero-content .btn-gold,
    .instagram-btn,
    .contact-section li a.btn-gold,
    .btn-gold {
        font-size: 0.9rem !important;
        padding: 10px 18px !important;
        width: auto !important;
        max-width: 100% !important;
        display: inline-flex !important;
        text-align: center !important;
        justify-content: center !important;
        gap: 8px !important;
    }
    .instagram-btn i { font-size: 1.3rem !important; }
}
/* =========================================
   HİZMET SAYFALARI YAN PANEL (VIP Buton Hizalaması)
========================================= */
.service-detail-content .btn-gold {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important; /* Yan yana sıkışıp yamulmalarını engeller, alt alta jilet gibi dizer */
    height: 55px !important; /* İki butonun da milimetrik olarak aynı boyda olmasını sağlar */
    padding: 10px 20px !important;
    margin-bottom: 15px !important;
    box-sizing: border-box !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    gap: 10px !important; /* İkon ile yazı arasına nefes payı */
    border-radius: 3px !important;
}

/* WhatsApp Butonundaki Yeşili Ezip Lüks Altın Rengine Çevirme */
.service-detail-content a[href*="wa.me"] {
    background: transparent !important; /* İkinci butonu içi boş altın çerçeveli yaparak hiyerarşi ve elitlik katıyoruz */
    color: var(--gold) !important;
    border: 2px solid var(--gold) !important;
}

.service-detail-content a[href*="wa.me"]:hover {
    background: var(--gold) !important;
    color: #111 !important;
}

.service-detail-content a[href*="wa.me"] i {
    font-size: 1.5rem !important;
}