/* Mary Studio Beauty - Shared styles (shadcn-inspired + Tailwind-friendly) */
:root {
    --primary-gold: #D4AF37;
    --dark-gold: #B8941F;
    --light-gold: #FFD700;
    --beige-light: #F5F1E8;
    --brown-dark: #2D231A;
    --text-dark: #2D231A;
    --text-light: #5D4E37;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 50%, #f1f3f4 100%);
    min-height: 100vh;
    color: var(--text-dark);
    line-height: 1.6;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(212,175,55,0.08);
    z-index: 1000;
    border-bottom: 1px solid rgba(212,175,55,0.1);
}
.header.scrolled { box-shadow: 0 4px 40px rgba(212,175,55,0.15); }
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
}
.logo:hover { transform: scale(1.02); }
.logo img { width: 55px; height: 55px; object-fit: contain; }
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-gold);
}
.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}
.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}
.nav-link:hover { color: var(--primary-gold); }
.nav-cta {
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.nav-cta:hover {
    transform: translateY(-3px);
    color: rgba(255,255,255,0.95);
}
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}
.nav-menu.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 10px 40px rgba(212,175,55,0.15);
}
.section {
    padding: 100px 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.25;
}
.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}
.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}
.feature-item { display: flex; align-items: center; gap: 1rem; }
.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}
.feature-text h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}
.feature-text p { color: var(--text-light); font-size: 0.95rem; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(212,175,55,0.12);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212,175,55,0.2);
}
.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--primary-gold);
    margin-bottom: 0.75rem;
}
.service-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}
.service-cta:hover { gap: 12px; }
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212,175,55,0.45);
    color: #fff;
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1.25rem; }
.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-details h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}
.contact-details p, .contact-details a {
    color: var(--text-light);
    text-decoration: none;
}
.contact-details a:hover { color: var(--primary-gold); }
.map-container {
    width: 100%;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(212,175,55,0.2);
}
.map-container iframe { width: 100%; height: 100%; border: none; }
.footer {
    background: linear-gradient(135deg, #1a1510 0%, var(--brown-dark) 50%, #1a1510 100%);
    color: var(--white);
    padding: 3rem 2rem 1.5rem;
}
.footer-content { max-width: 1400px; margin: 0 auto; text-align: center; margin-bottom: 2rem; }
.footer-logo-section { max-width: 600px; margin: 0 auto; }
.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 1rem;
}
.footer-logo img { width: 50px; height: 50px; object-fit: contain; }
.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
}
.footer-section p, .footer-section a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}
.social-link {
    width: 45px;
    height: 45px;
    background: rgba(212,175,55,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}
.social-link:hover {
    background: var(--primary-gold);
    transform: translateY(-3px);
}
.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212,175,55,0.2);
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}
.whatsapp-float:hover { color: #fff; transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.whatsapp-float span { display: none; }
@media (min-width: 769px) {
    .whatsapp-float { width: auto; height: auto; padding: 14px 20px; border-radius: 30px; gap: 8px; font-size: 1rem; }
    .whatsapp-float span { display: inline; }
}
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.gallery-filters button {
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(212,175,55,0.4);
    background: transparent;
    color: var(--primary-gold);
    border-radius: var(--radius-lg);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
}
.gallery-filters button:hover,
.gallery-filters button.active {
    background: var(--primary-gold);
    color: var(--white);
    border-color: var(--primary-gold);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.gallery-item {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.06);
    background: var(--white);
}
.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}
.gallery-item figcaption {
    padding: 1rem;
    font-size: 0.95rem;
    color: var(--text-light);
    text-align: center;
}
.page-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}
.page-content h3 { font-size: 1.2rem; margin: 1.5rem 0 0.75rem; color: var(--text-dark); }
.page-content p { margin-bottom: 1rem; color: var(--text-light); line-height: 1.8; }
.page-content ul { margin: 1rem 0 1rem 1.5rem; color: var(--text-light); }
.page-content li { margin-bottom: 0.5rem; }
.faq-list { list-style: none; margin: 1.5rem 0; padding: 0; }
.faq-list li {
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.7);
    border-radius: 12px;
    border-left: 4px solid var(--primary-gold);
}
.faq-list strong { color: var(--primary-gold); display: block; margin-bottom: 0.5rem; }
@media (max-width: 768px) {
    body { font-size: 0.9375rem; }
    .nav-menu { display: none; }
    .nav-menu.mobile-active { display: flex; padding: 1rem; gap: 1rem; }
    .mobile-menu-toggle { display: block; z-index: 1001; font-size: 1.25rem; }
    .nav-container { padding: 0.75rem 1rem; }
    .logo img { width: 40px; height: 40px; }
    .logo-text { font-size: 1.1rem; }
    .nav-cta { padding: 0.5rem 1rem; font-size: 0.8125rem; }
    .section { padding: 72px 1rem 48px; }
    .section-title { font-size: 1.35rem; margin-bottom: 0.75rem; }
    .section-subtitle { font-size: 0.875rem; margin-bottom: 1.5rem; }
    .about-text { font-size: 0.875rem; }
    .about-features { grid-template-columns: 1fr; gap: 1rem; margin-top: 1.5rem; }
    .feature-icon { width: 42px; height: 42px; font-size: 1.2rem; }
    .feature-text h3 { font-size: 0.9375rem; }
    .feature-text p { font-size: 0.8125rem; }
    .services-grid { gap: 1.25rem; margin-top: 1.5rem; }
    .service-card { padding: 1.25rem; border-radius: var(--radius-lg); }
    .service-icon { width: 48px; height: 48px; font-size: 1.25rem; margin-bottom: 0.75rem; }
    .service-title { font-size: 1.1rem; margin-bottom: 0.5rem; }
    .service-description { font-size: 0.8125rem; margin-bottom: 0.75rem; }
    .service-cta { font-size: 0.8125rem; }
    .hero-cta { padding: 0.75rem 1.25rem; font-size: 0.875rem; }
    .contact-content { grid-template-columns: 1fr; gap: 1.25rem; margin-top: 1.25rem; }
    .contact-icon { width: 42px; height: 42px; font-size: 1rem; }
    .contact-details h3 { font-size: 0.9375rem; }
    .contact-details p, .contact-details a { font-size: 0.875rem; }
    .map-container { height: 260px; }
    .footer { padding: 2rem 1rem 1rem; }
    .footer-logo img { width: 42px; height: 42px; }
    .footer-logo-text { font-size: 1.25rem; }
    .footer-section p { font-size: 0.875rem; }
    .footer-bottom { font-size: 0.75rem; padding-top: 1rem; }
    .social-link { width: 38px; height: 38px; font-size: 1rem; }
    .page-content h2 { font-size: 1.15rem; margin: 1.5rem 0 0.75rem; }
    .page-content h3 { font-size: 1rem; margin: 1.25rem 0 0.5rem; }
    .page-content p, .page-content li { font-size: 0.875rem; }
    .faq-list li { padding: 0.75rem; font-size: 0.875rem; }
    .faq-list strong { font-size: 0.875rem; }
    .gallery-filters { gap: 0.5rem; margin-bottom: 1.25rem; }
    .gallery-filters button { padding: 0.5rem 0.875rem; font-size: 0.8125rem; }
    .gallery-item figcaption { padding: 0.75rem; font-size: 0.8125rem; }
    .gallery-item img { height: 220px; }
    .whatsapp-float { width: 52px; height: 52px; font-size: 1.5rem; bottom: 20px; right: 20px; }
}
@media (max-width: 480px) {
    body { font-size: 0.875rem; }
    .section-title { font-size: 1.2rem; }
    .section-subtitle { font-size: 0.8125rem; }
    .service-title { font-size: 1rem; }
    .service-description { font-size: 0.75rem; }
    .logo-text { font-size: 1rem; }
    .section { padding: 64px 0.75rem 40px; }
}
