/* Plouton Life - Brand Styles */
/* Colors: #cbb26a (gold), #d8c690 (light gold), #be9e44 (dark gold), #090909 (near black), #FFFDFD (near white) */
/* Fonts: BlackEcho (headings) → using Playfair Display as web stand-in, Open Sans (body) */

:root {
  --gold: #cbb26a;
  --gold-light: #d8c690;
  --gold-dark: #be9e44;
  --black: #090909;
  --white: #FFFDFD;
  --gray-900: #1a1a1a;
  --gray-700: #3d3d3d;
  --gray-500: #6b6b6b;
  --gray-300: #b0b0b0;
  --gray-100: #f0ede8;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Heading font - replace with BlackEcho @font-face in WordPress */
h1, h2, h3, h4, .heading-font {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

/* Gold gradient text */
.text-gold-gradient {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gold gradient background */
.bg-gold-gradient {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
}

/* Buttons */
.btn-gold {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(203, 178, 106, 0.4);
}

.btn-outline {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--gold);
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid var(--gold);
  border-radius: 4px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-dark {
  display: inline-block;
  padding: 14px 32px;
  background: var(--black);
  color: var(--gold);
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid var(--gold);
  border-radius: 4px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

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

/* Sections */
.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-light {
  background: var(--white);
  color: var(--gray-900);
}

.section-warm {
  background: var(--gray-100);
  color: var(--gray-900);
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(9, 9, 9, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(203, 178, 106, 0.15);
  transition: all 0.3s ease;
}

.nav-scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--gray-300);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
  letter-spacing: 0.3px;
}

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

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(9, 9, 9, 0.98);
  border: 1px solid rgba(203, 178, 106, 0.2);
  border-radius: 8px;
  padding: 12px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 12px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 4px;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--gray-300);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover {
  color: var(--gold);
  background: rgba(203, 178, 106, 0.08);
}

/* Mobile menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  margin: 5px 0;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.98);
  padding: 32px 24px;
  overflow-y: auto;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 16px 0;
  color: var(--gray-300);
  text-decoration: none;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(203, 178, 106, 0.1);
  transition: color 0.2s ease;
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-menu .sub-link {
  padding-left: 20px;
  font-size: 0.95rem;
}

/* Gold divider */
.divider-gold {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  margin: 20px 0;
}

.divider-gold-center {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  margin: 20px auto;
}

/* Gold quote marks */
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.6;
}

/* Card styles */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 40px 32px;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--gold);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--gray-900);
}

.service-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Stat items */
.stat-item {
  text-align: center;
  padding: 0 24px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Testimonial */
.testimonial-card {
  background: rgba(203, 178, 106, 0.05);
  border: 1px solid rgba(203, 178, 106, 0.15);
  border-radius: 8px;
  padding: 40px;
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--gray-300);
  margin-bottom: 20px;
}

.testimonial-name {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(203, 178, 106, 0.15);
  color: var(--gray-300);
  padding: 64px 24px 32px;
}

.footer a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(203, 178, 106, 0.1);
  margin-top: 48px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* Scroll animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta-desktop { display: none; }
  .mobile-toggle { display: block; }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons a {
    text-align: center;
    width: 100%;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
