/* Template 7 - Elegant Luxury / Gold Accents */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Lato:wght@300;400;700&display=swap");

:root {
  --gradient-1: linear-gradient(135deg, #c9a961 0%, #8b7033 100%);
  --gradient-2: linear-gradient(135deg, #d4af37 0%, #aa8c2e 100%);
  --gradient-3: linear-gradient(135deg, #f4e5c2 0%, #d4af37 100%);
  --gradient-4: linear-gradient(135deg, #1a1613 0%, #2d2622 100%);
  --gradient-5: linear-gradient(135deg, #8b7033 0%, #c9a961 100%);

  --bg-primary: #0d0b09;
  --bg-secondary: #1a1613;
  --glass-bg: rgba(201, 169, 97, 0.08);
  --glass-border: rgba(212, 175, 55, 0.2);

  --text-primary: #f8f5ed;
  --text-secondary: #d4c5a9;
  --text-muted: #8b7d6b;
}

* {
  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-primary);
  background: var(--bg-primary);
  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(90deg, transparent, transparent 2px, rgba(212, 175, 55, 0.02) 2px, rgba(212, 175, 55, 0.02) 4px),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(212, 175, 55, 0.02) 2px, rgba(212, 175, 55, 0.02) 4px);
  pointer-events: none;
  z-index: -1;
}

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

/* Header - Sophisticated Luxury */
.site-header {
  background: linear-gradient(180deg, rgba(13, 11, 9, 0.98) 0%, rgba(26, 22, 19, 0.95) 100%);
  border-bottom: 2px solid var(--glass-border);
  padding: 2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(212, 175, 55, 0.1);
}

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

.site-logo a {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 900;
  color: #d4af37;
  text-decoration: none;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.site-logo a:hover {
  color: #f4e5c2;
  text-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
  letter-spacing: 4px;
}

.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: 0.95rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.4s ease;
  position: relative;
  padding: 0.5rem 0;
}

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

.site-nav a:hover {
  color: #d4af37;
}

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

/* Hero Section - Majestic */
.section.head {
  padding: 10rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

.section.head h1 {
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 5px;
  line-height: 1.2;
  text-shadow: 0 4px 30px rgba(212, 175, 55, 0.3);
  animation: luxuryGlow 4s ease-in-out infinite alternate;
}

@keyframes luxuryGlow {
  0% {
    text-shadow: 0 4px 30px rgba(212, 175, 55, 0.3);
  }
  100% {
    text-shadow: 0 4px 40px rgba(212, 175, 55, 0.6), 0 0 60px rgba(212, 175, 55, 0.2);
  }
}

.section.head p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 2;
  font-weight: 300;
}

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

.section header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.section header::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: var(--gradient-2);
}

.section header h2 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 4px;
}

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

/* Footer - Luxurious */
.footer {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 4rem 0 1.5rem;
  border-top: 2px solid var(--glass-border);
  margin-top: 6rem;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--glass-border);
}

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

.footer-tagline {
  color: var(--text-secondary);
  line-height: 2;
  font-weight: 300;
}

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.4s ease;
}

.footer-links a:hover {
  color: #d4af37;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
}

.copyright a {
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Animations */
@keyframes fadeInLuxury {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeInLuxury 1s 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.8rem;
  color: #d4af37;
  margin-top: 20px;
  margin-bottom: 15px;
  text-align: left;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
