/* Template 48 - Luxury Champagne Gold */
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300&display=swap");

:root {
  --gold: #d4af37;
  --champagne: #f7e7ce;
  --dark-brown: #2c1810;
  --cream: #faf8f3;
  --bronze: #cd7f32;
  --text-primary: #1a1106;
  --text-secondary: #4a3c2a;
}

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

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

body {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.9;
  color: var(--text-primary);
  background: var(--champagne);
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 80px,
    rgba(212, 175, 55, 0.02) 80px,
    rgba(212, 175, 55, 0.02) 160px
  );
  pointer-events: none;
  z-index: -1;
}

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

.site-header {
  background: linear-gradient(135deg, var(--cream) 0%, var(--champagne) 100%);
  border-bottom: 3px solid var(--gold);
  padding: 2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
}

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

.site-logo a {
  font-family: "Cinzel", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 3px;
  transition: all 0.4s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.site-logo a:hover {
  color: var(--bronze);
  letter-spacing: 5px;
}

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

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  transition: all 0.4s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.3rem;
}

.site-nav a:hover {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}

.section.head {
  padding: 10rem 0;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, var(--champagne) 0%, var(--cream) 100%);
}

.section.head h1 {
  font-family: "Cinzel", serif;
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  color: var(--gold);
  letter-spacing: 6px;
  text-transform: uppercase;
  animation: shimmer 4s ease-in-out infinite;
}

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

.section.head p {
  font-size: 1.6rem;
  color: var(--text-secondary);
  max-width: 1000px;
  margin: 0 auto;
  font-style: italic;
}

.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(--dark-brown);
  letter-spacing: 4px;
}

.section header p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
}

.footer {
  background: linear-gradient(135deg, var(--dark-brown) 0%, #1a1106 100%);
  padding: 4rem 0 1.5rem;
  border-top: 3px solid var(--gold);
  margin-top: 5rem;
  color: var(--champagne);
}

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

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

.footer-tagline {
  color: var(--champagne);
  line-height: 1.9;
  font-size: 1.2rem;
}

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

.footer-links a {
  color: var(--gold);
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  font-style: italic;
}

.footer-links a:hover {
  color: var(--champagne);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--gold);
}

.copyright a {
  color: var(--gold);
  font-size: 1rem;
}

@keyframes luxury-fade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: luxury-fade 1s ease forwards;
}

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

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(--gold);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-family: "Cinzel", serif;
}
