/* ══════════════════════════════════════════════════════
   MI SALON — Dark Premium (Enhanced)
   ══════════════════════════════════════════════════════ */

:root {
    --bg-color: #050505; /* Deepened the background for more contrast */
    --surface-bg: #111111;
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --accent-gold: #d4af37;
    --accent-gold-hover: #f1c94f;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.7;
    cursor: none; /* Prepare for custom cursor */
}

a { color: inherit; text-decoration: none; transition: var(--transition); cursor: none; }
img { max-width: 100%; height: auto; display: block; object-fit: cover; }
button { cursor: none; }

.container { max-width: 1250px; margin: 0 auto; padding: 0 5%; }
.section-padding { padding: 8rem 0; }
.text-center { text-align: center; }
.w-full { width: 100%; }

/* ── CUSTOM CURSOR ── */
.cursor-dot {
    width: 8px; height: 8px; background: var(--accent-gold);
    border-radius: 50%; position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%); transition: transform 0.2s;
}
.cursor-outline {
    width: 40px; height: 40px; border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%; position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%); transition: width 0.3s, height 0.3s, background 0.3s;
}

/* ── BUTTONS ── */
.btn-primary, .btn-secondary {
    display: inline-block; padding: 1rem 2.2rem; font-weight: 500; font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 2px; border: 1px solid var(--accent-gold);
    position: relative; overflow: hidden; z-index: 1; transition: var(--transition);
}

.btn-primary { background: var(--accent-gold); color: #000; }
.btn-primary:hover { background: transparent; color: var(--accent-gold); box-shadow: 0 0 20px rgba(212, 175, 55, 0.2); }

.btn-secondary { background: transparent; color: var(--accent-gold); }
.btn-secondary:hover { background: var(--accent-gold); color: #000; box-shadow: 0 0 20px rgba(212, 175, 55, 0.2); }

.btn-large { padding: 1.2rem 3rem; font-size: 0.95rem; }

/* ── NAVBAR ── */
.header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(5, 5, 5, 0.85); backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: padding 0.4s ease, background 0.4s ease;
}
.header.scrolled { padding: 0.5rem 0; background: rgba(5, 5, 5, 0.98); }
.header-inner { display: flex; justify-content: space-between; align-items: center; height: 85px; }

.brand { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; letter-spacing: 3px; }

.nav-desktop { display: flex; gap: 2.5rem; }
.nav-link { 
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; 
    color: var(--text-muted); position: relative; padding-bottom: 5px;
}
.nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
    background: var(--accent-gold); transition: var(--transition);
}
.nav-link:hover { color: var(--text-main); }
.nav-link:hover::after { width: 100%; }

.mobile-toggle { display: none; background: none; border: none; color: var(--text-main); font-size: 1.5rem; cursor: none; }
.mobile-menu { position: fixed; inset: 0; background: rgba(10,10,10,0.98); backdrop-filter: blur(20px); z-index: 2000; transform: translateX(100%); transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.mobile-menu.active { transform: translateX(0); }
.mobile-menu-inner { padding: 2rem; display: flex; flex-direction: column; height: 100%; }
.mobile-close { align-self: flex-end; background: none; border: none; color: var(--text-main); font-size: 2rem; cursor: none; }
.nav-mobile { margin-top: 4rem; display: flex; flex-direction: column; gap: 2.5rem; align-items: center; }
.mobile-link { font-family: var(--font-serif); font-size: 2.5rem; letter-spacing: 2px; }
.mobile-footer { margin-top: auto; }

/* ── HERO ── */
.hero { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; transform: scale(1.1); /* Prep for smooth parallax load */ }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(5,5,5,0.4) 0%, rgba(5,5,5,0.9) 100%); }
.hero-content { max-width: 900px; z-index: 1; padding: 0 20px; }
.hero-eyebrow { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 4px; color: var(--accent-gold); margin-bottom: 1.5rem; }
.hero-title { font-family: var(--font-serif); font-size: clamp(3rem, 7vw, 5.5rem); line-height: 1.1; margin-bottom: 2rem; font-weight: 500; }
.hero-title em { color: var(--accent-gold); font-style: italic; font-weight: 400; }
.hero-subtitle { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 3rem; max-width: 600px; margin-inline: auto; font-weight: 300; }
.hero-actions { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 5rem; }
.section-title { font-family: var(--font-serif); font-size: 3rem; margin-bottom: 1rem; font-weight: 500; }
.section-desc { color: var(--text-muted); font-size: 1rem; text-transform: uppercase; letter-spacing: 2px; }

/* ── SERVICES (Glassmorphism Cards) ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem; }
.service-card { 
    background: rgba(255, 255, 255, 0.02); backdrop-filter: blur(10px);
    padding: 3rem 2.5rem; border: 1px solid rgba(255, 255, 255, 0.05); 
    text-align: center; transition: var(--transition); border-radius: 4px;
}
.service-card:hover { 
    border-color: rgba(212, 175, 55, 0.3); transform: translateY(-10px); 
    background: rgba(212, 175, 55, 0.03); box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}
.service-icon { font-size: 2.5rem; color: var(--accent-gold); margin-bottom: 2rem; opacity: 0.8; transition: var(--transition); }
.service-card:hover .service-icon { opacity: 1; transform: scale(1.1); }
.service-title { font-family: var(--font-serif); font-size: 1.8rem; margin-bottom: 1rem; }
.service-desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 2rem; }
.service-meta { display: flex; justify-content: space-between; font-size: 0.85rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.service-price { color: var(--accent-gold); font-weight: 500; letter-spacing: 1px; }
.service-time { color: var(--text-muted); }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.gallery-item { aspect-ratio: 4/5; overflow: hidden; position: relative; border-radius: 4px; }
.gallery-item img { width: 100%; height: 100%; transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.gallery-item::after { 
    content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.3); 
    transition: var(--transition); 
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { background: transparent; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-image { aspect-ratio: 4/5; overflow: hidden; position: relative; border-radius: 4px; }
.about-image::before { 
    content: ''; position: absolute; inset: 20px; border: 1px solid rgba(255,255,255,0.2); 
    z-index: 1; pointer-events: none; 
}
.about-image img { width: 100%; height: 100%; }

/* ── TESTIMONIALS ── */
.google-rating { display: inline-flex; align-items: center; gap: 1rem; background: rgba(255, 255, 255, 0.03); padding: 0.8rem 2rem; border-radius: 50px; margin-bottom: 3rem; border: 1px solid rgba(255,255,255,0.05); }
.rating-score { font-size: 1.5rem; font-weight: 600; }
.google-rating .stars i { color: #fbbc05; }
.review-card { max-width: 900px; margin: 0 auto; }
.review-stars { color: var(--accent-gold); font-size: 1.2rem; margin-bottom: 2rem; }
.review-text { font-family: var(--font-serif); font-size: clamp(1.5rem, 4vw, 2.2rem); font-style: italic; margin-bottom: 2rem; line-height: 1.4; color: var(--text-main); }
.review-author { font-size: 0.9rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; }

/* ── BOOKING CTA ── */
.cta-section { 
    background: linear-gradient(rgba(5,5,5,0.85), rgba(5,5,5,0.85)), url('asset/interior5.jpg'); 
    background-size: cover; background-position: center; padding: 8rem 0; background-attachment: fixed; 
}
.cta-title { font-family: var(--font-serif); font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1.5rem; }
.cta-desc { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 3rem; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.contact-item { display: flex; gap: 2rem; margin-bottom: 3rem; align-items: flex-start; }
.contact-item i { font-size: 1.8rem; color: var(--accent-gold); background: rgba(212, 175, 55, 0.1); padding: 1rem; border-radius: 50%; }
.contact-item h4 { font-family: var(--font-sans); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.8rem; color: var(--text-main); }
.contact-item p { color: var(--text-muted); line-height: 1.8; }
.contact-item a:hover { color: var(--text-main) !important; }

.map-placeholder { 
    background: rgba(255,255,255,0.02); height: 100%; min-height: 400px; 
    display: flex; flex-direction: column; align-items: center; justify-content: center; 
    border: 1px solid rgba(255,255,255,0.05); border-radius: 4px; 
}

/* ── FOOTER ── */
.footer { background: #020202; padding: 5rem 0 2rem; border-top: 1px solid rgba(255,255,255,0.03); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 5rem; margin-bottom: 4rem; }
.footer-brand h2 { font-family: var(--font-serif); font-size: 2rem; letter-spacing: 3px; margin-bottom: 1.5rem; }
.footer-brand p { color: var(--text-muted); margin-bottom: 2rem; max-width: 350px; }
.social-links { display: flex; gap: 1rem; }
.social-links a { display: flex; align-items: center; justify-content: center; width: 45px; height: 45px; background: rgba(255,255,255,0.05); border-radius: 50%; color: var(--accent-gold); font-size: 1.1rem; }
.social-links a:hover { background: var(--accent-gold); color: #000; transform: translateY(-3px); }
.footer-links h4, .footer-contact h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 2rem; color: var(--accent-gold); }
.footer-links a, .footer-contact p { display: block; color: var(--text-muted); margin-bottom: 1rem; font-size: 0.95rem; transition: var(--transition); }
.footer-links a:hover { color: var(--text-main); padding-left: 5px; }
.footer-bottom { text-align: center; color: rgba(255,255,255,0.3); font-size: 0.85rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.03); letter-spacing: 1px; }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-up.active { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
.mobile-sticky-cta { display: none; position: fixed; bottom: 0; left: 0; width: 100%; z-index: 1000; background: var(--surface-bg); padding: 15px; border-top: 1px solid rgba(255,255,255,0.05); }

@media (max-width: 992px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
    .footer-top { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .footer-brand p { margin: 0 auto 2rem; }
    .social-links { justify-content: center; }
    .contact-item { flex-direction: column; align-items: center; text-align: center; gap: 1rem; }
}

@media (max-width: 768px) {
    .nav-desktop, .desktop-btn { display: none; }
    .mobile-toggle { display: block; }
    .hero-actions { flex-direction: column; }
    .btn-large { width: 100%; }
    .mobile-sticky-cta { display: block; }
    body { padding-bottom: 80px; }
    .cursor-dot, .cursor-outline { display: none !important; }
}