/* =========================================
   2026 PREMIUM NAIL STUDIO UI/UX DESIGN
   ========================================= */
:root {
    --bg-creme: #faf8f6;
    --bg-white: #ffffff;
    --accent-pudra: #DDA7A5;
    --accent-hover: #C58F8D;
    --text-espresso: #3E3230;
    --text-muted: #8E8482;
    
    --font-display: 'Playfair Display', serif;
    --font-body: 'Jost', sans-serif;
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-soft: 0 15px 35px rgba(62, 50, 48, 0.05);
}

body {
    background-color: var(--bg-creme);
    color: var(--text-espresso);
    font-family: var(--font-body) !important;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading) !important;
    color: var(--text-dark);
    margin: 0;
}

a:focus, a:hover{
    text-decoration: none;
    color: unset;
}
/* --- Buttons --- */
.btn-premium {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(62, 50, 48, 0.2);
    transition: var(--transition);
    background: var(--accent-pudra); 
    color: var(--white) !important;
}

.btn-premium:hover {
  background-color: transparent;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(221, 167, 165, 0.2);
  border-color: var(--accent-hover);
  color: #dda7a5 !important;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
    box-shadow: none;
}

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

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* LÜTFEN AŞAĞIDAKİ URL'Yİ ESTETİK BİR NAIL ART GÖRSELİ İLE DEĞİŞTİRİN */
    background: url('assets/img/hero-aesthetic-nail.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(62, 50, 48, 0.4), rgba(62, 50, 48, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(40px, 6vw, 70px);
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--white);
    font-style: italic;
}

.hero-content p {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* --- Brand Introduction & Socials --- */
.brand-intro {
    padding: 80px 20px;
    text-center;
    background-color: var(--white);
}

.brand-logo-wrapper img {
    max-width: 250px;
    height: auto;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 0;
    list-style: none;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--bg-color);
    color: var(--text-dark);
    font-size: 18px;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: scale(1.1);
}

/* --- Sales Boosters (Features) --- */
.features-section {
    padding: 80px 20px;
    background-color: var(--bg-color);
}

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

.feature-box {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
}

.feature-box i {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.feature-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* --- Instagram Style Gallery --- */
.gallery-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 40px;
    font-style: italic;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 500;
}

.ig-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px; /* Insta tarzı ince boşluk */
    max-width: 1200px;
    margin: 0 auto;
}

.ig-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px; /* Modern yumuşak kenar */
}

.ig-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ig-item:hover img {
    transform: scale(1.05);
}

/* --- Testimonials --- */
.testimonials-section {
    padding: 80px 20px;
    background-color: var(--bg-color);
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.stars {
    color: #E6C875;
    margin-bottom: 15px;
    font-size: 18px;
}

.review-text {
    font-family: var(--font-heading) !important;
    font-size: 20px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.5;
}

.review-author {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- Final CTA --- */
.final-cta {
    padding: 100px 20px;
    text-align: center;
    background-color: var(--white);
}

.footer{
  background-color: var(--white);
}
.header-sticky.sticky-bar{
    background-color: #f9f6f2ad;
    backdrop-filter: blur(10px);
}

/* --- Hero Section (Minimal & Logo Centered) --- */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-logo-wrapper {
    width: 320px;
    /*margin-bottom: 40px;*/
    animation: fadeInDown 1.5s ease;
}
.hero-logo-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-content h1 {
    font-family: var(--font-display) !important;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-espresso);
}

.hero-content p {
    font-size: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 45px;
}

/* --- Buttons --- */
.btn-premium {
    display: inline-block;
    background-color: var(--accent-pudra);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(221, 167, 165, 0.3);
    border: 1px solid var(--accent-pudra);
}
.btn-premium:hover {
    background-color: transparent;
    color: var(--accent-pudra);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(221, 167, 165, 0.2);
}

/* --- Section Styling --- */
section { padding: 120px 10%; }
.section-title {
    text-align: center;
    margin-bottom: 80px;
}
.section-title h2 {
    font-family: var(--font-display) !important;
    font-size: 40px;
    margin-bottom: 10px;
}
.section-title span {
    color: var(--accent-pudra);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 600;
}

/* --- Sales Boosters (Features) --- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.feature-card {
    background: var(--bg-white);
    padding: 60px 40px;
    border-radius: 40px 10px 40px 10px; /* Asimetrik yumuşaklık */
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}
.feature-card:hover { transform: translateY(-10px); }
.feature-card i {
    font-size: 45px;
    color: var(--accent-pudra);
    margin-bottom: 25px;
    display: block;
}
.feature-card h3 {
    font-family: var(--font-display) !important;
    font-size: 24px;
    margin-bottom: 15px;
}
.feature-card p {
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 300;
}

/* --- Instagram Gallery Grid --- */
.ig-item {
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border-radius: 4px;
}
.ig-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1s ease;
}
.ig-item:hover img { transform: scale(1.1); }

/* --- Testimonials --- */
.testimonials {
    background: var(--bg-white);
    border-radius: 60px;
    margin: 0 5% 100px;
    padding: 80px 40px;
    text-align: center;
}
.testimonial-text {
    font-family: var(--font-display) !important;
    font-size: clamp(20px, 3vw, 28px);
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--text-espresso);
}
.author {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-pudra);
    font-weight: 600;
}

/* --- Animations --- */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

:root { --google-blue: #4285F4; --google-yellow: #FBBC05; }
body { background-color: #f8f9fa; font-family: 'Roboto', sans-serif; color: #3c4043; }
.comment-container { padding: 60px 0; max-width: 1100px; margin: auto; }

/* Dinamik Başlık Alanı */
.stats-header { text-align: center; margin-bottom: 40px; }
.stats-header h2 { font-size: 32px; margin-bottom: 10px; color: #202124; }
.big-stars { color: var(--google-yellow); font-size: 24px; }
.avg-text { font-size: 18px; color: #5f6368; font-weight: bold; margin-left: 10px; }
.total-text { display: block; font-size: 14px; color: #70757a; margin-top: 5px; }

/* Slider Kartları */
.swiper { padding: 20px 20px 60px 20px; }
.review-card {
    background: #fff; padding: 25px; border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.05);
    height: 240px; display: flex; flex-direction: column; position: relative;
}
.header { display: flex; align-items: center; margin-bottom: 15px; }
.avatar { 
    width: 40px; height: 40px; border-radius: 50%; background: #1a73e8; color: white;
    display: flex; align-items: center; justify-content: center; font-weight: bold; margin-right: 12px;
}
.user-meta h4 { margin: 0; font-size: 14px; color: #202124; }
.small-stars { color: var(--google-yellow); font-size: 11px; }
.g-logo { position: absolute; top: 20px; right: 20px; width: 18px; }
.body-text { 
    font-size: 14px; color: #3c4043; line-height: 1.6; font-style: italic;
    display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden;
}
.verified { margin-top: auto; color: #1a73e8; font-size: 12px; font-weight: 500; }

/* =========================================
   SCROLL REVEAL ANIMATIONS
   ========================================= */

/* Base state — tüm animate elementler başlangıçta gizli */
[data-reveal] {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

[data-reveal="fade-up"]    { transform: translateY(32px); }
[data-reveal="fade-down"]  { transform: translateY(-24px); }
[data-reveal="fade-left"]  { transform: translateX(32px); }
[data-reveal="fade-right"] { transform: translateX(-32px); }
[data-reveal="scale-in"]   { transform: scale(0.94); }
[data-reveal="fade"]       { transform: none; }

/* Görünür olunca — JS tarafından .is-visible eklenir */
[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

/* Stagger delays */
[data-delay="100"] { transition-delay: 0.10s; }
[data-delay="200"] { transition-delay: 0.20s; }
[data-delay="300"] { transition-delay: 0.30s; }
[data-delay="400"] { transition-delay: 0.40s; }
[data-delay="500"] { transition-delay: 0.50s; }
[data-delay="600"] { transition-delay: 0.60s; }

/* ── Hero — logodan içeriğe ince bir giriş ── */
.hero-logo-wrapper {
    animation: heroLogoIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-content {
    animation: heroContentIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

@keyframes heroLogoIn {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroContentIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Galeri — önizleme fotoğraflarına hafif blur-in ── */
.ig-item {
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.4s ease;
}

/* ── Section header ince çizgi decoration ── */
.section-header h2::after {
    content: '';
    display: block;
    width: 0;
    height: 1.5px;
    background: var(--accent-pudra);
    margin: 12px auto 0;
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
    opacity: 0.5;
}
.section-header.is-visible h2::after {
    width: 60px;
}

/* ── Feature cards & review cards smooth hover ── */
.feature-box,
.review-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s ease,
                opacity 0.7s ease;
}

/* ── Sticky header fade ── */
.header-sticky {
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
}

/* ── btn-premium ripple hint ── */
.btn-premium {
    position: relative;
    overflow: hidden;
}
.btn-premium::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}
.btn-premium:hover::after {
    opacity: 1;
}

