/* === MY THO NAILS - PROFESSIONAL REDESIGN === */
/* === RESET & BASE === */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary: #8B4D6B;
    --primary-dark: #6B3A52;
    --accent: #D4AF37;
    --accent-light: #E8C86D;
    --cream: #FAF8F7;
    --blush: #F5EBE8;
    --warm-white: #FFFEFD;
    --charcoal: #2D2D2D;
    --text: #4A4A4A;
    --text-light: #7A7A7A;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;
}
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
}

/* === NAV === */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2.5rem;
    background: var(--warm-white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(139,77,107,0.08);
    border-bottom: 2px solid var(--blush);
}
.logo { 
    font-family: var(--font-heading); 
    font-size: 1.8rem; 
    font-weight: 700; 
    color: var(--primary); 
    letter-spacing: 0.02em;
    text-decoration: none;
}
a.logo:hover { opacity: 0.8; }
.logo span { color: var(--accent); font-style: italic; }
.nav-links { display: flex; list-style: none; gap: 2.5rem; }
.nav-links a { 
    color: var(--text); 
    text-decoration: none; 
    font-size: 0.8rem; 
    font-weight: 600; 
    letter-spacing: 0.12em; 
    text-transform: uppercase; 
    transition: all 0.3s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }
.hamburger { display: none; cursor: pointer; font-size: 1.8rem; color: var(--primary); background: none; border: none; }

/* === HERO === */
.hero {
    position: relative;
    min-height: 85vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}
.hero-image {
    position: relative;
    overflow: hidden;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 20s ease-in-out infinite alternate;
}
@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 4rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--warm-white);
}
.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--charcoal);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1rem;
    color: var(--warm-white);
}
.hero-content h1 em { font-style: italic; color: var(--accent); }
.hero-tagline {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    max-width: 420px;
}
.hero-rating {
    color: var(--accent);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}
.hero-cta { display: flex; gap: 1.2rem; flex-wrap: wrap; justify-content: center; }
.cta-primary {
    background: var(--accent);
    color: var(--charcoal);
    padding: 1rem 2.4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(212,175,55,0.3);
}
.cta-primary:hover { background: var(--accent-light); transform: translateY(-3px); }
.cta-outline {
    background: transparent;
    color: var(--warm-white);
    padding: 1rem 2.4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 2px solid rgba(255,255,255,0.4);
    transition: all 0.3s;
}
.cta-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--accent); }

/* === TRUST BAR === */
.trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 2rem 2rem;
    background: var(--warm-white);
    border-bottom: 1px solid var(--blush);
}
.trust-item { text-align: center; }
.trust-item .number { display: block; font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; color: var(--primary); }
.trust-item .label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-light); margin-top: 0.3rem; }

/* === INFO BAR === */
.info-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1.2rem 2rem;
    background: var(--blush);
    font-size: 0.95rem;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.info-icon { font-size: 1.1rem; }
.info-divider {
    width: 1px;
    height: 20px;
    background: var(--primary);
    opacity: 0.3;
}

/* === SECTIONS === */
section { padding: 5rem 2rem; max-width: 1400px; margin: 0 auto; }
section h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--primary);
}
.section-subtitle { text-align: center; color: var(--text-light); margin-bottom: 3.5rem; font-size: 1rem; }

/* === GALLERY === */
.gallery { background: var(--warm-white); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.2rem; }
.gallery-grid img { width: 100%; height: 320px; object-fit: cover; border-radius: 8px; cursor: pointer; transition: all 0.3s; }
.gallery-grid img:hover { transform: scale(1.03); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }

/* === SERVICES === */
.services { background: var(--blush); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; max-width: 1200px; margin: 0 auto; }
.service-item { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: transform 0.3s; }
.service-item:hover { transform: translateY(-5px); }
.service-photo { width: 100%; height: 220px; object-fit: cover; }
.service-info { padding: 1.8rem; }
.service-info h3 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--primary); margin-bottom: 0.3rem; }
.duration { color: var(--text-light); font-size: 0.85rem; margin-bottom: 0.3rem; }
.price { font-size: 1.3rem; font-weight: 700; color: var(--accent); margin-bottom: 0.8rem; }
.service-info p { color: var(--text); font-size: 0.92rem; line-height: 1.6; margin-bottom: 1.2rem; }
.service-cta { display: inline-block; background: var(--primary); color: var(--white); padding: 0.7rem 1.5rem; border-radius: 25px; text-decoration: none; font-weight: 600; font-size: 0.85rem; transition: background 0.3s; }
.service-cta:hover { background: var(--accent); color: var(--charcoal); }

/* === CONTACT === */
.contact { background: var(--white); padding: 4rem 2rem; }
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1100px; margin: 3rem auto 0; }
.contact-info h3 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--primary); margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.8rem; }
.contact-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-text { color: var(--text); font-size: 0.95rem; line-height: 1.7; }
.contact-text a { color: var(--primary); text-decoration: none; font-weight: 600; }
.contact-text a:hover { text-decoration: underline; }
.contact-form { background: var(--cream); padding: 2.5rem; border-radius: 16px; }
.contact-form h3 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--primary); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--charcoal); margin-bottom: 0.4rem; }
.form-group input, .form-group textarea { width: 100%; padding: 0.9rem 1rem; border: 2px solid var(--cream-dark); border-radius: 10px; font-family: var(--font-body); font-size: 0.95rem; background: var(--white); transition: border-color 0.3s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); }
.form-group textarea { min-height: 120px; resize: vertical; }
.btn-submit { width: 100%; background: var(--primary); color: var(--white); padding: 1rem; border: none; border-radius: 10px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: background 0.3s; }
.btn-submit:hover { background: var(--accent); color: var(--charcoal); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; }
.service-item {
    background: var(--warm-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(139,77,107,0.08);
    transition: all 0.3s;
}
.service-item:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(139,77,107,0.15); }
.service-photo { width: 100%; height: 220px; object-fit: cover; }
.service-info { padding: 1.8rem; }
.service-info h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.duration { font-size: 0.78rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.price { font-size: 1.4rem; font-weight: 700; color: var(--accent); margin-bottom: 1rem; }
.service-info p { color: var(--text); margin-bottom: 1.5rem; line-height: 1.8; }
.service-cta {
    display: inline-block;
    background: var(--primary);
    color: var(--warm-white);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s;
}
.service-cta:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* === REVIEWS === */
.reviews { background: var(--warm-white); }
.reviews-section { padding: 4rem 2rem; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-family: var(--font-heading); font-size: 2.5rem; color: var(--primary); margin-bottom: 0.5rem; }
.section-header p { color: var(--text-light); font-size: 1rem; }
.cta-section { background: var(--blush); padding: 4rem 2rem; text-align: center; }
.cta-section h2 { font-family: var(--font-heading); font-size: 2.2rem; color: var(--primary); margin-bottom: 1rem; }
.cta-section p { color: var(--text); margin-bottom: 2rem; font-size: 1.05rem; }
.btn-gold { display: inline-block; background: var(--accent); color: var(--charcoal); padding: 1rem 2.5rem; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.05em; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 2rem; }
.review-card {
    background: var(--cream);
    padding: 2.2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,0,0,0.08); }
.review-stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.review-text { font-size: 0.95rem; line-height: 1.8; color: var(--text); margin-bottom: 1.5rem; font-style: italic; }
.review-author { font-size: 0.85rem; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: 0.08em; }

/* === ABOUT === */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}
.about-content p { color: var(--text); margin-bottom: 1.2rem; line-height: 1.8; }
.about-image img { width: 100%; border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.1); }

/* === CONTACT === */
.contact { background: var(--warm-white); }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem; max-width: 1000px; margin: 0 auto; }
.contact-item { text-align: center; padding: 2rem; background: var(--cream); border-radius: 12px; }
.contact-item .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.contact-item h3 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--primary); margin-bottom: 0.8rem; }
.contact-item p { color: var(--text); line-height: 1.8; }
.contact-item a { color: var(--primary); text-decoration: none; font-weight: 600; }

/* === FOOTER === */
footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.8);
    padding: 3rem 2rem;
    text-align: center;
}
.footer-logo { font-family: var(--font-heading); font-size: 1.8rem; color: var(--accent); margin-bottom: 1.5rem; }
.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 2rem; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* === STICKY CTA === */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}
.sticky-cta a {
    display: block;
    background: var(--accent);
    color: var(--charcoal);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(212,175,55,0.4);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.sticky-cta a:hover { transform: translateY(-3px); }

/* === PAGE HERO === */
.page-hero {
    position: relative;
    height: 45vh;
    min-height: 300px;
    max-height: 450px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    background: rgba(0,0,0,0.4);
    border-radius: 16px;
}
.page-hero-content h1 { color: #fff; font-size: 2.5rem; margin-bottom: 0.5rem; }
.page-hero-content p { color: rgba(255,255,255,0.9); font-size: 1.1rem; }
.review-service {
    display: inline-block;
    background: var(--cream);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(139,41,66,0.2);
}
.trust-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.trust-link:hover { color: #fff; }

/* === MOBILE === */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: block; }
    .nav-links.active { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--warm-white); padding: 1.5rem; box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
    .hero { grid-template-columns: 1fr; }
    .hero-image { height: 50vh; }
    .page-hero { height: 35vh; min-height: 220px; max-height: 300px; }
    .page-hero-content { padding: 1.5rem; }
    .page-hero-content h1 { font-size: 1.8rem; }
    .page-hero-content p { font-size: 0.95rem; }
    .hero-content { padding: 2.5rem 1.5rem; }
    .hero-content h1 { font-size: 2.8rem; }
    
    .trust-bar { 
        flex-direction: column; 
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .info-bar {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
        text-align: center;
    }
    
    .info-divider { display: none; }
    
    .trust-item .number { font-size: 1.8rem; }
    section { padding: 3.5rem 1.5rem; }
    section h2 { font-size: 2.2rem; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 0.8rem; }
    .gallery-grid img { height: 180px; }
    .services-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .reviews-section { padding: 3rem 1.5rem; }
    .section-header h2 { font-size: 2rem; }
    .cta-section { padding: 3rem 1.5rem; }
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-form { padding: 2rem 1.5rem; }
    .footer-links { flex-direction: column; gap: 1rem; }
    .sticky-cta { bottom: 1rem; right: 1rem; }
    .sticky-cta a { padding: 0.8rem 1.6rem; font-size: 0.75rem; }
}

/* === PAGE LOAD ANIMATION === */
html { opacity: 0; animation: fadeInPage 0.6s ease-out forwards; }
@keyframes fadeInPage { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
nav { animation: slideDownNav 0.5s ease-out 0.2s forwards; opacity: 0; }
@keyframes slideDownNav { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
.hero { animation: fadeInUp 0.7s ease-out 0.3s forwards; opacity: 0; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
section { animation: fadeInUp 0.6s ease-out 0.4s forwards; opacity: 0; }

/* Lightbox: constrain image + visible close button */
.lightbox img, .lightbox-img {
    max-width: 95vw !important;
    max-height: 95vh !important;
    object-fit: contain;
}
.lightbox-close {
    z-index: 1000000 !important;
    color: white !important;
    opacity: 1 !important;
}
