/* Template 44 - Deep Emerald Luxury */
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Lato:wght@300;400;700&display=swap");

:root {
  --emerald-dark: #0d3d2f;
  --emerald-medium: #1a5c45;
  --emerald-light: #2d8a65;
  --gold: #d4af37;
  --gold-light: #f5d98b;
  --cream: #f8f5f0;
  --text-light: #ffffff;
  --text-dark: #1a1a1a;
  --text-muted: #8a8a8a;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Lato", sans-serif;
  line-height: 1.8;
  color: var(--text-dark);
  background: var(--cream);
  font-weight: 400;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header - Luxurious */
.site-header {
  background: var(--emerald-dark);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(13, 61, 47, 0.3);
  border-bottom: 2px solid var(--gold);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo a {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.site-logo a:hover {
  color: var(--gold-light);
  transform: scale(1.05);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.site-nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 5px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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

.site-nav a:hover::after {
  width: 100%;
}

/* Hero Section */
.section.head {
  padding: 8rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald-medium) 100%);
  color: var(--text-light);
}

.section.head h1 {
  font-family: "Cinzel", serif;
  font-size: 5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  color: var(--gold);
  line-height: 1.1;
  letter-spacing: 3px;
  text-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    text-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  }
  50% {
    text-shadow: 0 4px 30px rgba(212, 175, 55, 0.7);
  }
}

.section.head p {
  font-size: 1.25rem;
  color: var(--cream);
  max-width: 750px;
  margin: 0 auto;
}

/* Section Styling */
.section {
  padding: 6rem 0;
}

.section header {
  text-align: center;
  margin-bottom: 4rem;
}

.section header h2 {
  font-family: "Cinzel", serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--emerald-dark);
  letter-spacing: 2px;
}

.section header p {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* Footer */
.footer {
  background: var(--emerald-dark);
  color: var(--text-light);
  padding: 4rem 0 2rem;
  border-top: 3px solid var(--gold);
  margin-top: 5rem;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.footer-about {
  flex: 1;
  max-width: 400px;
}

.footer-tagline {
  color: var(--cream);
  line-height: 1.8;
  opacity: 0.9;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  opacity: 0.8;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.copyright a {
  color: var(--cream);
  font-size: 0.95rem;
  opacity: 0.7;
}

/* Animations */
@keyframes luxuryFade {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fade-in {
  opacity: 0;
  animation: luxuryFade 0.9s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}
.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.3s;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

body:not(.faq) h3,
:not(section.faq) h3 {
  font-size: 1.9rem;
  color: var(--emerald-dark);
  margin-top: 25px;
  margin-bottom: 15px;
  text-align: left;
  font-weight: 600;
  font-family: "Cinzel", serif;
}
