/* =============================================
   Aesthetic Alliance Group - Main Stylesheet
   Colors: Navy Blue (#1e3a5f) + Cream/White
   Fonts: Cormorant Garamond + DM Sans
   ============================================= */

:root {
    --color-navy: #1e3a5f;
    --color-navy-dark: #152a45;
    --color-navy-light: #2a4a73;
    --color-white: #ffffff;
    --color-cream: #FAF9F7;
    --color-light-gray: #f5f5f5;
    --color-gray: #6b7280;
    --color-dark-gray: #374151;
    --color-charcoal: #1f2937;
    --color-gold: #c9a962;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--color-charcoal); background: var(--color-white); overflow-x: hidden; }

h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; color: var(--color-charcoal); }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.125rem, 2vw, 1.375rem); font-weight: 600; }
p { color: var(--color-gray); line-height: 1.7; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-label { font-family: var(--font-body); font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--color-navy); margin-bottom: 1rem; }

/* Buttons - White text, no animation */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.875rem 1.75rem; font-family: var(--font-body); font-size: 0.9375rem; font-weight: 500; border-radius: 6px; cursor: pointer; border: 2px solid transparent; text-decoration: none; }
.btn-primary { background: var(--color-navy); color: #ffffff !important; border-color: var(--color-navy); }
.btn-primary:hover { background: var(--color-navy-dark); border-color: var(--color-navy-dark); }
.btn-secondary { background: transparent; color: var(--color-navy); border-color: var(--color-navy); }
.btn-secondary:hover { background: var(--color-navy); color: #ffffff; }
.btn-outline { background: transparent; color: var(--color-navy); border: 1.5px solid var(--color-navy); }
.btn-outline:hover { background: var(--color-navy); color: #ffffff; }
.btn-small { padding: 0.625rem 1.25rem; font-size: 0.8125rem; }

/* Navigation - LARGER LOGO */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--color-white); transition: var(--transition); }
.nav.scrolled { box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; }
.nav-logo img { height: 200px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.9375rem; font-weight: 500; color: var(--color-charcoal); }
.nav-links a:hover, .nav-links a.active { color: var(--color-navy); }
.nav-links .btn { margin-left: 0.5rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { width: 24px; height: 2px; background: var(--color-charcoal); transition: var(--transition); }

/* Mobile Menu */
.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--color-white); z-index: 999; flex-direction: column; justify-content: center; align-items: center; gap: 2rem; padding: 2rem; }
.mobile-menu.active { display: flex; }
.mobile-menu a { font-family: var(--font-display); font-size: 1.75rem; color: var(--color-charcoal); }
.mobile-menu a:hover { color: var(--color-navy); }

/* Hero with Background Image */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 240px; background-image: url('images/hero-bg.png'); background-size: cover; background-position: center; position: relative; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(255, 255, 255, 0.88); z-index: 1; }
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 700px; }
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--color-navy); }
.hero p { font-size: 1.125rem; margin-bottom: 2rem; max-width: 600px; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Mission - Reduced gap */
.mission { background: var(--color-white); text-align: center; padding: 2rem 0 3rem; }
.mission-content { max-width: 800px; margin: 0 auto; }
.mission .section-label { margin-bottom: 0.5rem; }
.mission h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 500; }

/* Problem Section */
.problem { background: var(--color-navy); color: var(--color-white); text-align: center; }
.problem h2 { color: var(--color-white); margin-bottom: 1.5rem; }
.problem p { color: rgba(255, 255, 255, 0.85); max-width: 900px; margin: 0 auto 2rem; font-size: 1.0625rem; }
.problem .btn-primary { background: var(--color-white); color: var(--color-navy) !important; border-color: var(--color-white); }
.problem .btn-primary:hover { background: var(--color-cream); border-color: var(--color-cream); }

/* Features */
.features { background: var(--color-cream); }
.features-header { text-align: center; margin-bottom: 3rem; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.feature-card { background: var(--color-white); padding: 2rem; border-radius: 12px; transition: var(--transition); }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); }
.feature-icon { margin-bottom: 1rem; }
.feature-icon img { width: 40px; height: 40px; }
.feature-card h4 { margin-bottom: 0.75rem; color: var(--color-charcoal); }
.feature-card p { font-size: 0.9375rem; }
.features-cta { text-align: center; margin-top: 3rem; }

/* Memberships Table - No $000/mo */
.memberships { background: var(--color-white); padding: 5rem 0; }
.memberships-header { text-align: center; margin-bottom: 3rem; }
.memberships-header h2 { font-weight: 700; margin-bottom: 0.5rem; }
.memberships-header h3 { font-weight: 700; }
.comparison-table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.comparison-table { width: 100%; min-width: 800px; border-collapse: collapse; font-size: 0.875rem; }
.comparison-table thead th { vertical-align: top; padding: 1.25rem 0.75rem; text-align: center; border-bottom: 2px solid var(--color-light-gray); }
.comparison-table .services-header { text-align: left; background: var(--color-cream); width: 160px; }
.services-title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; color: var(--color-charcoal); }
.services-subtitle { font-family: var(--font-display); font-size: 0.9375rem; font-weight: 600; color: var(--color-charcoal); margin-bottom: 0.5rem; }
.compare-text { font-size: 0.6875rem; color: var(--color-gray); }
.plan-header { background: var(--color-light-gray); min-width: 140px; }
.plan-header.featured { background: var(--color-navy); color: var(--color-white); }
.plan-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; line-height: 1.2; }
.plan-header.featured .plan-name { color: var(--color-white); }
.plan-desc { font-size: 0.625rem; color: var(--color-gray); margin-bottom: 0.75rem; line-height: 1.3; }
.plan-header.featured .plan-desc { color: rgba(255, 255, 255, 0.8); }
.plan-price { font-family: var(--font-display); font-size: 0.9375rem; font-weight: 700; color: var(--color-charcoal); margin-bottom: 0.75rem; }
.plan-header.featured .plan-price { color: var(--color-white); }
.comparison-table tbody td { padding: 0.625rem 0.5rem; text-align: center; border-bottom: 1px solid var(--color-light-gray); font-size: 0.8125rem; }
.comparison-table tbody tr:hover { background: var(--color-cream); }
.service-name { text-align: left !important; font-weight: 500; color: var(--color-charcoal); }
.check { color: var(--color-navy); font-size: 1.125rem; font-weight: bold; }
.dash { color: #ccc; font-size: 1.125rem; }

/* Mobile Membership Cards */
.mobile-memberships { display: none; }
.membership-card { background: var(--color-white); border-radius: 16px; padding: 2rem; margin-bottom: 1.5rem; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); }
.membership-card.featured { background: var(--color-navy); color: var(--color-white); }
.membership-card h3 { font-size: 1.5rem; margin-bottom: 0.25rem; }
.membership-card.featured h3 { color: var(--color-white); }
.membership-card .card-subtitle { font-size: 0.875rem; color: var(--color-gray); margin-bottom: 1rem; }
.membership-card.featured .card-subtitle { color: rgba(255, 255, 255, 0.8); }
.membership-card .card-price { font-family: var(--font-display); font-size: 2rem; font-weight: 700; margin-bottom: 1.5rem; }
.membership-card.featured .card-price { color: var(--color-white); }
.membership-card .card-price span { font-size: 1rem; font-weight: 400; }
.membership-card ul { list-style: none; margin-bottom: 1.5rem; }
.membership-card li { padding: 0.5rem 0; font-size: 0.9rem; color: var(--color-gray); border-bottom: 1px solid var(--color-light-gray); }
.membership-card.featured li { color: rgba(255, 255, 255, 0.85); border-color: rgba(255, 255, 255, 0.2); }
.membership-card .btn { width: 100%; }

/* Services Included */
.services-included { background: var(--color-cream); }
.services-included-header { text-align: center; margin-bottom: 3rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.service-card { background: var(--color-white); padding: 2rem; border-radius: 12px; }
.service-card h4 { margin-bottom: 1rem; color: var(--color-navy); }
.service-card p { font-size: 0.9375rem; }
.service-card.highlight { background: var(--color-navy); }
.service-card.highlight h4, .service-card.highlight p { color: var(--color-white); }
.benefit-highlight { font-family: var(--font-display); font-size: 1.5rem !important; font-weight: 600; margin-top: 1rem; }
.services-cta { text-align: center; margin-top: 3rem; }

/* Testimonials */
.testimonials { background: var(--color-white); }
.testimonials-header { text-align: center; margin-bottom: 3rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.testimonial-card { display: flex; gap: 1.5rem; align-items: flex-start; }
.testimonial-image img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; }
.testimonial-content { flex: 1; }
.quote-icon img { width: 30px; opacity: 0.5; margin-bottom: 1rem; }
.testimonial-content p { font-size: 0.9375rem; font-style: italic; margin-bottom: 1rem; line-height: 1.7; }
.testimonial-content strong { font-family: var(--font-display); font-size: 1rem; color: var(--color-charcoal); }

/* Partners - Scrolling Marquee with Larger Logos */
.partners { background: var(--color-cream); padding: 4rem 0; overflow: hidden; }
.partners-header { text-align: center; margin-bottom: 2rem; }
.partners-header h3 { color: var(--color-gray); font-weight: 400; }
.partners-marquee { display: flex; width: max-content; animation: marquee 35s linear infinite; }
.partners-marquee:hover { animation-play-state: paused; }
.partners-track { display: flex; align-items: center; gap: 4rem; padding: 0 2rem; }
.partner-logo { flex-shrink: 0; opacity: 0.85; transition: var(--transition); }
.partner-logo:hover { opacity: 1; transform: scale(1.08); }
.partner-logo img { height: 90px; max-width: 180px; object-fit: contain; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* FAQ */
.faq { background: var(--color-white); }
.faq-header { text-align: center; margin-bottom: 3rem; }
.faq-grid { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-light-gray); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; cursor: pointer; font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; color: var(--color-charcoal); }
.faq-toggle { font-size: 1.5rem; font-weight: 300; color: var(--color-navy); transition: var(--transition); }
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer p { padding-bottom: 1.5rem; }

/* Footer - Text based */
.footer { background: var(--color-charcoal); padding: 3rem 0 1.5rem; }
.footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.footer-brand { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--color-white); letter-spacing: 1px; text-transform: uppercase; }
.footer-contact { display: flex; gap: 2rem; }
.footer-contact a { color: rgba(255, 255, 255, 0.8); font-size: 0.9375rem; }
.footer-contact a:hover { color: var(--color-white); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: rgba(255, 255, 255, 0.8); font-size: 0.9375rem; }
.footer-links a:hover { color: var(--color-white); }
.footer-bottom { padding-top: 1.5rem; text-align: center; }
.footer-bottom p { color: rgba(255, 255, 255, 0.5); font-size: 0.875rem; }

/* About Page */
.about-hero { padding-top: 260px; padding-bottom: 4rem; background: var(--color-cream); }
.about-hero h1 { text-align: center; margin-bottom: 1rem; }
.about-hero p { text-align: center; max-width: 800px; margin: 0 auto; font-size: 1.125rem; }
.founder-section { background: var(--color-white); }
.founder-grid { display: grid; grid-template-columns: 400px 1fr; gap: 4rem; align-items: start; }
.founder-image img { width: 100%; border-radius: 12px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); }
.founder-content h2 { margin-bottom: 0.5rem; }
.founder-title { font-size: 1.125rem; color: var(--color-navy); font-weight: 500; margin-bottom: 1.5rem; }
.founder-content p { margin-bottom: 1rem; }

/* Contact Page */
.contact-hero { padding-top: 260px; padding-bottom: 3rem; background: var(--color-cream); text-align: center; }
.contact-hero h1 { margin-bottom: 1rem; }
.contact-hero p { max-width: 600px; margin: 0 auto 2rem; }

/* Responsive */
@media (max-width: 1024px) {
    .features-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
    .founder-grid { grid-template-columns: 1fr; gap: 2rem; }
    .founder-image { max-width: 400px; margin: 0 auto; }
    .partner-logo img { height: 75px; max-width: 150px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .nav-logo img { height: 140px; }
    .hero { padding-top: 180px; text-align: center; }
    .hero p { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .features-grid, .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-card { flex-direction: column; text-align: center; }
    .comparison-table-wrapper { display: none; }
    .mobile-memberships { display: block; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-contact, .footer-links { flex-direction: column; gap: 0.75rem; }
    .about-hero, .contact-hero { padding-top: 180px; }
    .partner-logo img { height: 65px; max-width: 130px; }
    .partners-track { gap: 2.5rem; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; }
    .nav-logo img { height: 120px; }
    .partner-logo img { height: 55px; max-width: 110px; }
}
