/* Design System */
:root {
    --primary: #f8c8d8; /* Blush Pink */
    --primary-dark: #f0a0b8;
    --foreground: #2d2d2d;
    --background: #fffcf9;
    --stone-50: #f9f8f6;
    --stone-100: #f3f2ef;
    --stone-900: #1c1917;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: 'Playfair Display', serif;
}

.italic { font-style: italic; }
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img { max-width: 100%; display: block; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: #4a2c35;
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--stone-900);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Navbar */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

#navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 32px;
    font-weight: 700;
    color: var(--stone-900);
}

.logo span { color: var(--primary); }

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links a:hover { color: var(--primary-dark); }

.menu-btn { display: none; font-size: 24px; cursor: pointer; }

/* Hero */
.hero {
    height: 100vh;
    background: url('assets/luxury_beauty_salon_interior_hero_background.png') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(40px, 8vw, 80px);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background: linear-gradient(transparent, #fff, transparent);
}

.scroll-indicator span { font-size: 10px; letter-spacing: 3px; }

/* About */
.about { padding: 100px 0; background: var(--stone-50); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img {
    position: relative;
}

.about-img img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.experience-badge h3 { font-size: 36px; color: var(--primary-dark); margin-bottom: 5px; }
.experience-badge p { font-size: 12px; font-weight: 600; color: #666; width: 100px; }

.section-tag {
    color: var(--primary-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

h2 { font-size: 48px; margin-bottom: 20px; line-height: 1.2; }

.features { margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.features li { display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: 14px; }
.features i { color: var(--primary-dark); }

/* Services */
.services { padding: 100px 0; background: var(--white); }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover { transform: translateY(-10px); }

.service-img { position: relative; height: 200px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.service-card:hover .service-img img { transform: scale(1.1); }

.service-img .icon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.9);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-dark);
}

.service-info { padding: 25px; text-align: center; }
.service-info h3 { margin-bottom: 10px; }
.service-info p { font-size: 14px; color: #666; margin-bottom: 15px; }
.price { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 600; color: var(--primary-dark); }
.service-link { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-top: 20px; display: inline-block; color: var(--stone-900); }

.disclaimer { text-align: center; margin-top: 40px; font-size: 12px; font-style: italic; color: #999; }

/* Gallery */
.gallery { padding: 100px 0; background: var(--stone-50); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 15px;
}

.gallery-item { position: relative; border-radius: 15px; overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }

.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item.tall { grid-row: span 2; }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.gallery-overlay span {
    color: white;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 20px;
    border-bottom: 1px solid white;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.1); }

/* Contact */
.contact { padding: 100px 0; background: var(--stone-900); color: white; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.info-cards { margin: 40px 0; display: flex; flex-direction: column; gap: 20px; }
.info-card { display: flex; gap: 20px; align-items: flex-start; background: rgba(255,255,255,0.05); padding: 25px; border-radius: 15px; border: 1px solid rgba(255,255,255,0.1); }
.info-card i { color: var(--primary); font-size: 24px; }
.info-card h4 { font-size: 18px; margin-bottom: 5px; }
.info-card p { color: #ccc; font-size: 14px; }
.info-card span { font-size: 12px; color: #999; }

.contact-map { border-radius: 20px; overflow: hidden; filter: grayscale(1) invert(0.9); }
.contact-map:hover { filter: none; }

/* Footer */
.footer { padding: 80px 0 30px; background: #111; color: #ccc; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }

.footer-brand h3 { font-size: 32px; color: white; margin-bottom: 20px; }
.footer-brand h3 span { color: var(--primary); }
.social-links { display: flex; gap: 15px; margin-top: 25px; }
.social-links a { width: 40px; height: 40px; background: rgba(255,255,255,0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.social-links a:hover { background: var(--primary); color: #4a2c35; }

.footer-links h4, .footer-contact h4 { color: white; margin-bottom: 20px; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a:hover { color: var(--primary); }

.footer-contact ul li { display: flex; gap: 15px; margin-bottom: 15px; font-size: 14px; }
.footer-contact ul li i { color: var(--primary); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; text-align: center; font-size: 12px; }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: 0.3s;
}

.whatsapp-float:hover { transform: scale(1.1); }

/* Responsive */
@media (max-width: 991px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    h2 { font-size: 36px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
    .nav-links, .nav-btn { display: none; }
    .menu-btn { display: block; }
    .hero h1 { font-size: 50px; }
    .hero-btns { flex-direction: column; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .gallery-item.large { grid-column: span 2; }
    .features { grid-template-columns: 1fr; }
}
