/* ===========================================================
   LUXE Studio - Kadın Kuaförü
   Siyah & Altın (sarı) kurumsal tema
   =========================================================== */

:root {
    --gold: #F5C518;
    --gold-soft: #ffd84d;
    --gold-dark: #c99e0a;
    --black: #0d0d0d;
    --black-2: #141414;
    --black-3: #1c1c1c;
    --gray: #9a9a9a;
    --gray-light: #d8d8d8;
    --white: #ffffff;
    --border: rgba(245, 197, 24, 0.18);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
    --radius: 16px;
    --font-head: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--gray-light);
    line-height: 1.7;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { width: min(1200px, 92%); margin: 0 auto; }

.section { padding: 110px 0; position: relative; }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-head .sub {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 14px;
    position: relative;
}
.section-head .sub::before,
.section-head .sub::after {
    content: "";
    width: 28px; height: 1px;
    background: var(--gold);
    display: inline-block;
    vertical-align: middle;
    margin: 0 12px;
}
.section-head h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3.1rem);
    color: var(--white);
    font-weight: 700;
    line-height: 1.2;
}
.section-head h2 span { color: var(--gold); }

/* ---------- Butonlar ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.35s ease;
    letter-spacing: 0.5px;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    box-shadow: 0 10px 30px rgba(245, 197, 24, 0.3);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(245, 197, 24, 0.45); }
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: #000; }

/* ---------- Navbar ---------- */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 22px 0;
    transition: all 0.4s ease;
}
.navbar.scrolled {
    background: rgba(13, 13, 13, 0.92);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}
.logo span { color: var(--gold); }
.logo small { display:block; font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 3px; color: var(--gray); text-transform: uppercase; font-weight: 400; }
.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--gray-light);
    position: relative;
    transition: color 0.3s;
}
.nav-links a::after {
    content: ""; position: absolute; left: 0; bottom: -6px;
    width: 0; height: 2px; background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: 11px 26px !important; }
.menu-toggle { display: none; font-size: 1.6rem; color: var(--gold); background: none; border: none; cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg, .hero-bg video, .hero-bg img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(120deg, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.7) 45%, rgba(13,13,13,0.4) 100%);
    z-index: -1;
}
.hero-content { max-width: 680px; }
.hero-content .tag {
    color: var(--gold); letter-spacing: 5px; text-transform: uppercase;
    font-size: 0.85rem; font-weight: 600; margin-bottom: 22px; display: block;
}
.hero-content h1 {
    font-family: var(--font-head);
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 1.1;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 24px;
}
.hero-content h1 span { color: var(--gold); font-style: italic; }
.hero-content p { font-size: 1.1rem; color: var(--gray-light); margin-bottom: 38px; max-width: 540px; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }
.scroll-down {
    position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
    color: var(--gold); font-size: 1.6rem; animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{ transform: translate(-50%,0);} 50%{ transform: translate(-50%,12px);} }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 540px; object-fit: cover; }
.about-img-wrap::before {
    content: ""; position: absolute; top: -20px; left: -20px;
    width: 120px; height: 120px; border-top: 3px solid var(--gold); border-left: 3px solid var(--gold);
    border-radius: 8px 0 0 0;
}
.about-img-wrap::after {
    content: ""; position: absolute; bottom: -20px; right: -20px;
    width: 120px; height: 120px; border-bottom: 3px solid var(--gold); border-right: 3px solid var(--gold);
    border-radius: 0 0 8px 0;
}
.about-text .sub { color: var(--gold); letter-spacing: 4px; text-transform: uppercase; font-weight: 600; font-size: 0.8rem; }
.about-text h2 { font-family: var(--font-head); font-size: clamp(1.9rem, 3.4vw, 2.8rem); color: var(--white); margin: 12px 0 22px; line-height: 1.2; }
.about-text p { margin-bottom: 30px; color: var(--gray); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 30px; }
.stat { text-align: center; padding: 22px 10px; background: var(--black-3); border-radius: 12px; border: 1px solid var(--border); }
.stat .num { font-family: var(--font-head); font-size: 2.1rem; color: var(--gold); font-weight: 700; }
.stat .label { font-size: 0.78rem; color: var(--gray); margin-top: 4px; letter-spacing: 0.5px; }

/* ---------- Services ---------- */
.section-dark { background: var(--black-2); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
    background: var(--black-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.service-card:hover { transform: translateY(-10px); background: #222; box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 64px; height: 64px; border-radius: 14px;
    background: linear-gradient(135deg, rgba(245,197,24,0.2), rgba(245,197,24,0.05));
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1.6rem; margin-bottom: 24px;
    border: 1px solid var(--border);
}
.service-card h3 { font-family: var(--font-head); color: var(--white); font-size: 1.35rem; margin-bottom: 12px; }
.service-card p { color: var(--gray); font-size: 0.94rem; margin-bottom: 18px; }
.service-price { color: var(--gold); font-weight: 700; font-size: 1.2rem; }
.service-price span { font-size: 0.78rem; color: var(--gray); font-weight: 400; }

/* ---------- Gallery ---------- */
.gallery-filter { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
    background: transparent; border: 1px solid var(--border); color: var(--gray-light);
    padding: 9px 22px; border-radius: 50px; cursor: pointer; font-size: 0.85rem;
    transition: all 0.3s; font-family: var(--font-body);
}
.filter-btn.active, .filter-btn:hover { background: var(--gold); color: #000; border-color: var(--gold); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item {
    position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer;
    aspect-ratio: 1 / 1;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.12); }
.gallery-overlay {
    position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,13,13,0.9), transparent 60%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
    opacity: 0; transition: opacity 0.4s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay .cat { color: var(--gold); font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; }
.gallery-overlay h4 { color: var(--white); font-family: var(--font-head); font-size: 1.2rem; }
.gallery-overlay .zoom { position: absolute; top: 20px; right: 20px; width: 42px; height: 42px; border-radius: 50%; background: var(--gold); color:#000; display:flex; align-items:center; justify-content:center; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.team-card { text-align: center; }
.team-img {
    position: relative; border-radius: var(--radius); overflow: hidden; margin-bottom: 22px;
    aspect-ratio: 3 / 4;
}
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.team-card:hover .team-img img { transform: scale(1.08); }
.team-social {
    position: absolute; bottom: -60px; left: 0; right: 0;
    background: linear-gradient(to top, rgba(13,13,13,0.92), transparent);
    padding: 40px 0 18px; display: flex; gap: 14px; justify-content: center;
    transition: bottom 0.4s ease;
}
.team-card:hover .team-social { bottom: 0; }
.team-social a {
    width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: #000;
    display: flex; align-items: center; justify-content: center; transition: transform 0.3s;
}
.team-social a:hover { transform: translateY(-4px); }
.team-card h3 { font-family: var(--font-head); color: var(--white); font-size: 1.25rem; }
.team-card .role { color: var(--gold); font-size: 0.85rem; letter-spacing: 1px; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.testi-card {
    background: var(--black-3); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 36px; position: relative;
}
.testi-card .quote { font-size: 3.5rem; color: var(--gold); font-family: var(--font-head); line-height: 0.6; opacity: 0.4; }
.testi-card p { color: var(--gray-light); font-style: italic; margin: 16px 0 24px; }
.testi-foot { display: flex; align-items: center; gap: 16px; }
.testi-foot img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.testi-foot .name { color: var(--white); font-weight: 600; }
.testi-foot .stars { color: var(--gold); font-size: 0.85rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info-card {
    display: flex; gap: 18px; align-items: flex-start; margin-bottom: 28px;
    background: var(--black-3); padding: 22px; border-radius: 12px; border: 1px solid var(--border);
}
.contact-info-card .ico { width: 50px; height: 50px; border-radius: 12px; background: var(--gold); color:#000; display:flex; align-items:center; justify-content:center; font-size: 1.2rem; flex-shrink: 0; }
.contact-info-card h4 { color: var(--white); margin-bottom: 4px; font-size: 1rem; }
.contact-info-card p { color: var(--gray); font-size: 0.92rem; white-space: pre-line; margin: 0; }
.contact-form { background: var(--black-3); padding: 38px; border-radius: var(--radius); border: 1px solid var(--border); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 8px; font-size: 0.85rem; color: var(--gray-light); }
.form-control {
    width: 100%; padding: 14px 18px; background: var(--black); border: 1px solid #333;
    border-radius: 10px; color: var(--white); font-family: var(--font-body); font-size: 0.95rem;
    transition: border 0.3s;
}
.form-control:focus { outline: none; border-color: var(--gold); }
textarea.form-control { resize: vertical; min-height: 120px; }
.map-wrap { margin-top: 50px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 360px; border: 0; filter: grayscale(0.4) invert(0.9) contrast(0.85); }

/* ---------- Footer ---------- */
.footer { background: var(--black-2); padding: 70px 0 30px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-col h4 { color: var(--white); font-family: var(--font-head); margin-bottom: 22px; font-size: 1.2rem; }
.footer-col p { color: var(--gray); font-size: 0.92rem; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: var(--gray); font-size: 0.92rem; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--gold); padding-left: 6px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 42px; height: 42px; border-radius: 50%; background: var(--black-3); border: 1px solid var(--border);
    color: var(--gold); display: flex; align-items: center; justify-content: center; transition: all 0.3s;
}
.footer-social a:hover { background: var(--gold); color: #000; transform: translateY(-4px); }
.footer-bottom { text-align: center; padding-top: 28px; border-top: 1px solid #2a2a2a; color: var(--gray); font-size: 0.85rem; }
.footer-bottom a { color: var(--gold); }

/* ---------- WhatsApp float ---------- */
.wa-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 900;
    width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 1.7rem;
    box-shadow: 0 8px 26px rgba(37,211,102,0.5); animation: pulse 2.2s infinite;
}
@keyframes pulse { 0%{ box-shadow:0 0 0 0 rgba(37,211,102,0.5);} 70%{ box-shadow:0 0 0 18px rgba(37,211,102,0);} 100%{ box-shadow:0 0 0 0 rgba(37,211,102,0);} }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 2000; display: none; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 88%; border-radius: 10px; }
.lightbox .close { position: absolute; top: 26px; right: 36px; color: #fff; font-size: 2.4rem; cursor: pointer; }

/* ---------- Reveal animasyon ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Flash mesaj ---------- */
.alert { padding: 14px 20px; border-radius: 10px; margin-bottom: 18px; font-size: 0.92rem; }
.alert-success { background: rgba(124,252,155,0.12); color: #7CFC9B; border: 1px solid rgba(124,252,155,0.3); }
.alert-error { background: rgba(255,107,107,0.12); color: #ff6b6b; border: 1px solid rgba(255,107,107,0.3); }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .testi-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-img-wrap img { height: 420px; }
}
@media (max-width: 640px) {
    .section { padding: 70px 0; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 75%; height: 100vh;
        background: var(--black-2); flex-direction: column; justify-content: center;
        gap: 30px; transition: right 0.4s ease; box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    }
    .nav-links.open { right: 0; }
    .menu-toggle { display: block; z-index: 1100; }
    .services-grid, .gallery-grid, .team-grid, .footer-grid, .stats { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats { gap: 12px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
}
