/* Elit Kadın Kuaförü - Premium Modern Tasarım Sistemi & Stil Dosyası */

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

/* CSS Değişkenleri */
:root {
    --primary-gold: #c5a880;
    --primary-gold-dark: #b1936c;
    --accent-rose: #e8c5c8;
    --accent-rose-dark: #d5a6aa;
    --bg-cream: #fdfbf7;
    --bg-white: #ffffff;
    --text-dark: #2a2a2a;
    --text-muted: #666666;
    --border-color: #f1eae0;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-light: 0 4px 20px rgba(197, 168, 128, 0.08);
    --shadow-medium: 0 10px 30px rgba(197, 168, 128, 0.15);
    --shadow-dark: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Genel Sıfırlamalar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Tipografi */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.section-title p {
    font-size: 1rem;
    color: var(--primary-gold-dark);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--primary-gold);
    margin: 1.5rem auto 0 auto;
}

/* Layout Konteyner */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Butonlar */
.btn {
    display: inline-block;
    padding: 0.8rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--primary-gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(197, 168, 128, 0.4);
}

.btn-outline {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-gold);
    color: var(--bg-white);
    transform: translateY(-3px);
}

/* Üst Bilgi Barı (Header Top) */
.header-top {
    background-color: #1a1a1a;
    color: #e5d8c3;
    font-size: 0.8rem;
    padding: 0.5rem 0;
    letter-spacing: 1px;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.header-info-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Navbar */
header {
    background-color: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-light);
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo span {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    color: var(--primary-gold-dark);
    font-weight: 500;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dark);
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-gold);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-medium);
    border-top: 3px solid var(--primary-gold);
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    list-style: none;
    z-index: 1010;
    padding: 0.8rem 0;
}

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

.dropdown-item a {
    display: block;
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid #faf8f5;
}

.dropdown-item:last-child a {
    border-bottom: none;
}

.dropdown-item a:hover {
    background-color: var(--bg-cream);
    color: var(--primary-gold);
    padding-left: 1.8rem;
}

/* Hamburger Menü (Mobil) */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 80vh;
    min-height: 550px;
    background: linear-gradient(rgba(253, 251, 247, 0.35), rgba(253, 251, 247, 0.25)), url('hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    max-width: 650px;
    background: rgba(253, 251, 247, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 3rem;
    border-left: 4px solid var(--primary-gold);
    box-shadow: var(--shadow-medium);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 0.9rem;
    color: var(--primary-gold-dark);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.hero h2 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Tanıtım / Hakkımızda */
.intro {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.intro-img-wrapper {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.intro-img-wrapper img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.intro-img-wrapper:hover img {
    transform: scale(1.05);
}

.intro-content {
    padding-right: 1rem;
}

.intro-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.intro-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Hizmetler Bölümü (Hızlı Bakış) */
.services-section {
    padding: 6rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* Protez Tırnak Vurgu Kartı */
.service-card.featured {
    border: 2px solid var(--primary-gold);
    background: linear-gradient(145deg, #ffffff 0%, #fffcf8 100%);
    box-shadow: var(--shadow-light);
}

.service-card.featured .badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-gold);
    color: var(--bg-white);
    font-size: 0.65rem;
    padding: 0.3rem 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.service-card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
}

.service-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-link {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-gold-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    color: var(--text-dark);
    gap: 0.8rem;
}

/* Instagram ve Galeri Bölümü */
.instagram-section {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 26, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.instagram-overlay-content {
    text-align: center;
    color: var(--bg-white);
}

.instagram-overlay-content span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-top: 5px;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

/* Detaylı Hizmet Sayfası Şablonu */
.service-hero {
    height: 40vh;
    min-height: 280px;
    background: linear-gradient(rgba(26, 26, 26, 0.6), rgba(26, 26, 26, 0.5)), url('elit_kuafor_sirinevler_2.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: var(--bg-white);
    text-align: center;
}

.service-hero-content {
    width: 100%;
}

.service-hero h2 {
    color: var(--bg-white);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.service-hero-path {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-rose);
}

.service-detail-section {
    padding: 6rem 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
}

.service-main-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.service-main-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.service-main-content ul {
    list-style: none;
    margin-bottom: 2rem;
    margin-top: 1.5rem;
}

.service-main-content li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.service-main-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.service-sidebar {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    height: fit-content;
    position: sticky;
    top: 120px;
}

.service-sidebar-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.8rem;
}

.sidebar-service-list {
    list-style: none;
}

.sidebar-service-list li {
    margin-bottom: 0.8rem;
}

.sidebar-service-list a {
    display: block;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.sidebar-service-list a:hover, .sidebar-service-list a.active {
    color: var(--primary-gold);
    padding-left: 0.5rem;
}

.cta-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: var(--bg-white);
    padding: 2.5rem 2rem;
    margin-top: 2rem;
    text-align: center;
}

.cta-box h4 {
    color: var(--bg-white);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.cta-box p {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* İletişim Bilgileri */
.contact-section {
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-list {
    margin-bottom: 2.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.8rem;
    align-items: flex-start;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--bg-white);
    border: 1px solid var(--primary-gold);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-info-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.map-container {
    width: 100%;
    height: 450px;
    box-shadow: var(--shadow-medium);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Yüzen WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: var(--bg-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    font-size: 2rem;
    transition: var(--transition);
}

.whatsapp-widget:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Alt Bilgi (Footer) */
footer {
    background-color: #111111;
    color: #dddddd;
    padding: 5rem 0 2rem 0;
    border-top: 3px solid var(--primary-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.2fr 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    color: var(--bg-white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    color: var(--bg-white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer-about p {
    color: #999999;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background-color: #222222;
    color: var(--bg-white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0;
    transition: var(--transition);
}

.footer-social-link:hover {
    background-color: var(--primary-gold);
    color: var(--bg-white);
    transform: translateY(-3px);
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 0.8rem;
}

.footer-links-list a {
    color: #999999;
    font-size: 0.9rem;
}

.footer-links-list a:hover {
    color: var(--primary-gold);
    padding-left: 0.5rem;
}

.footer-hours-list {
    list-style: none;
}

.footer-hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: #999999;
    border-bottom: 1px dashed #222222;
    padding-bottom: 0.3rem;
}

.footer-hours-list li span:last-child {
    color: var(--primary-gold);
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid #222222;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: #666666;
}

/* Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        z-index: 9999;
        background-color: var(--bg-cream);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 1.5rem;
        transition: var(--transition);
        overflow-y: auto;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        padding-left: 1rem;
        background-color: transparent;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .intro-grid, .service-detail-grid, .contact-grid, .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .intro-content {
        padding-right: 0;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    /* Mobil Uyum İyileştirmeleri */
    .services-grid {
        grid-template-columns: 1fr !important;
    }
    .intro-images {
        grid-template-columns: 1fr !important;
    }
    .intro-img-wrapper img {
        height: 220px !important;
    }
    .hero h2 {
        font-size: 1.8rem !important;
    }
    .service-hero h2 {
        font-size: 1.8rem !important;
    }
    .footer-grid {
        gap: 2rem !important;
        text-align: center;
    }
    .footer-hours-list li {
        justify-content: center;
        gap: 15px;
    }
    .header-top {
        display: none;
    }

    .hero h2 {
        font-size: 2.2rem;
    }

    .hero-content {
        padding: 2rem 1.2rem;
    }

    .instagram-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
}
