/* ROSE GOLD BEAUTY CLINIC CSS */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --primary: #ffffff;
    --secondary: #fff5f7; /* Very soft powder pink */
    --accent: #d4af37; /* Champagne Gold / Rose Gold */
    --accent-light: #fbebf0; 
    --text-dark: #3a3a3a;
    --text-light: #8a8a8a;
    --border: #f0e6e8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--primary);
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    color: var(--text-dark);
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links { display: flex; gap: 40px; }
.nav-links a {
    color: var(--text-dark); text-decoration: none;
    font-weight: 500; font-size: 13px;
    text-transform: uppercase; letter-spacing: 2px;
    transition: 0.3s;
}
.nav-links a:hover { color: var(--accent); }

.btn-book {
    background: var(--text-dark);
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.4s;
}
.btn-book:hover { background: var(--accent); color: #fff; }

/* Hero */
.hero {
    height: 90vh;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    padding: 0 5vw;
    background-image: url('mockup_guzellik_hero.webp');
    background-size: cover; background-position: center;
}
.hero::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.4);
}
.hero-content {
    position: relative; z-index: 1;
    background: rgba(255, 255, 255, 0.9);
    padding: 60px; text-align: center;
    max-width: 600px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.hero-subtitle {
    display: block; font-size: 12px; text-transform: uppercase;
    letter-spacing: 4px; color: var(--accent); margin-bottom: 20px;
    font-weight: 600;
}
.hero h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 30px; }
.hero p { font-size: 1rem; color: var(--text-light); line-height: 1.8; margin-bottom: 40px; }

/* Services */
.services { padding: 120px 5vw; background: var(--primary); text-align: center; }
.section-title { font-size: 3rem; margin-bottom: 20px; }
.section-desc { color: var(--text-light); max-width: 600px; margin: 0 auto 60px; line-height: 1.6; font-size: 14px; }

.service-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
}
.service-card {
    background: var(--secondary);
    padding: 50px 30px;
    transition: 0.4s;
    border: 1px solid transparent;
}
.service-card:hover { background: #fff; border-color: var(--border); box-shadow: 0 15px 30px rgba(0,0,0,0.03); transform: translateY(-5px); }
.service-icon {
    width: 50px; height: 50px; margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
}
.service-icon svg { width: 30px; height: 30px; stroke-width: 1; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
.service-card p { color: var(--text-light); font-size: 13px; line-height: 1.6; }

/* Tech Park */
.tech-park {
    display: flex; align-items: center; background: var(--secondary);
}
.tech-img {
    flex: 1; height: 600px;
    background-image: url('mockup_guzellik_cihaz.webp');
    background-size: cover; background-position: center;
}
.tech-text { flex: 1; padding: 100px 5vw; }
.tech-text h2 { font-size: 3rem; margin-bottom: 30px; }
.tech-text p { color: var(--text-light); line-height: 1.8; margin-bottom: 30px; font-size: 15px; }
.tech-list { list-style: none; }
.tech-list li {
    font-size: 14px; color: var(--text-dark); font-weight: 500;
    margin-bottom: 15px; display: flex; align-items: center; gap: 15px;
}
.tech-list li::before {
    content: ''; display: inline-block; width: 30px; height: 1px; background: var(--accent);
}

/* Instagram Feed */
.instagram { padding: 120px 5vw; text-align: center; }
.ig-title { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 14px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 40px; color: var(--text-dark); display: flex; align-items: center; justify-content: center; gap: 10px; }
.ig-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px;
}
.ig-item {
    position: relative; aspect-ratio: 1; overflow: hidden; background: #eee;
}
.ig-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.ig-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255,255,255,0.8); display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: 0.3s; color: var(--text-dark);
}
.ig-item:hover img { transform: scale(1.05); }
.ig-item:hover .ig-overlay { opacity: 1; cursor: pointer; }

/* Contact/Booking */
.booking { padding: 100px 5vw; background: var(--text-dark); color: #fff; text-align: center; }
.booking h2 { color: #fff; font-size: 3rem; margin-bottom: 30px; }
.booking p { color: #ccc; max-width: 600px; margin: 0 auto 40px; line-height: 1.7; }
.btn-book-light {
    display: inline-block;
    background: #fff; color: var(--text-dark);
    padding: 15px 40px; text-decoration: none; font-size: 13px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2px; transition: 0.3s;
}
.btn-book-light:hover { background: var(--accent); color: #fff; }

/* Footer */
footer { padding: 40px 5vw; text-align: center; border-top: 1px solid var(--border); }
footer p { font-size: 12px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }

@media(max-width: 768px) {
    header { padding: 15px 5vw; }
    .logo { font-size: 20px; }
    .nav-links { display: none; }
    .hero-content { padding: 40px 20px; }
    .hero h1 { font-size: 11vw; }
    .service-grid { grid-template-columns: 1fr 1fr; }
    .tech-park { flex-direction: column; }
    .tech-img { width: 100%; height: 400px; }
    .tech-text { padding: 60px 5vw; }
    .ig-grid { grid-template-columns: 1fr 1fr; }
}
