/* Template 29 - Burgundy Wine / Sophisticated */
@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, #8b1538 0%, #5a0a1f 100%);
  --gradient-2: linear-gradient(135deg, #a01d48 0%, #6b1230 100%);
  --gradient-3: linear-gradient(135deg, #c72c5a 0%, #8b1538 100%);
  --gradient-4: linear-gradient(135deg, #d4af37 0%, #aa8b2e 100%);
  --gradient-5: linear-gradient(135deg, #8b1538 0%, #d4af37 100%);

  --bg-primary: #1a0a0f;
  --bg-secondary: #2a1520;
  --glass-bg: rgba(139, 21, 56, 0.1);
  --glass-border: rgba(212, 175, 55, 0.2);

  --text-primary: #f5e6d3;
  --text-secondary: #d4c5b0;
  --text-muted: #a89580;
}

* {
  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.7;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-weight: 300;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 15% 25%, rgba(139, 21, 56, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

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

/* Header - Luxurious */
.site-header {
  background: rgba(26, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  padding: 2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.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;
  transition: all 0.4s ease;
  letter-spacing: 3px;
  text-transform: uppercase;
}

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

.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;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.site-nav a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: #d4af37;
  transition: width 0.3s ease;
}

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

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

/* Hero Section - Elegant */
.section.head {
  padding: 10rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section.head h1 {
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  color: #d4af37;
  letter-spacing: 2px;
  text-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  line-height: 1.2;
}

.section.head p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 1000px;
  margin: 0 auto;
  font-weight: 300;
  letter-spacing: 0.5px;
}

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

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

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

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

/* Footer - Rich */
.footer {
  background: rgba(26, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  padding: 4rem 0 1.5rem;
  border-top: 1px solid var(--glass-border);
  margin-top: 6rem;
}

.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(--text-secondary);
  line-height: 1.9;
  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;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: #d4af37;
}

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

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

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

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