/* Template 21 - Elegant Marble */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Lato:wght@300;400;700&display=swap");

:root {
  --bg-primary: #fafaf8;
  --bg-secondary: #f5f5f0;
  --bg-tertiary: #e8e8e0;
  --text-primary: #2b2b2b;
  --text-secondary: #5a5a5a;
  --text-muted: #8a8a8a;
  --accent-gold: #b8975a;
  --accent-darkgold: #8a6f3e;
  --accent-lightgold: #d4b88a;
}

* {
  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: 300;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(184, 151, 90, 0.03) 50%, transparent 100%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 35px,
      rgba(184, 151, 90, 0.02) 35px,
      rgba(184, 151, 90, 0.02) 70px
    );
  pointer-events: none;
  z-index: 1;
}

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

/* Header with Marble Style */
.site-header {
  background: linear-gradient(to bottom, var(--bg-primary), var(--bg-secondary));
  border-bottom: 1px solid var(--accent-lightgold);
  box-shadow: 0 1px 0 var(--accent-gold);
  padding: 2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.site-logo a {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--accent-darkgold);
  text-decoration: none;
  letter-spacing: 3px;
  transition: all 0.4s ease;
  position: relative;
}

.site-logo a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width 0.4s ease;
}

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

.site-logo a:hover {
  color: var(--accent-gold);
  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: 1rem;
  font-weight: 400;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  font-size: 0.9rem;
}

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

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

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

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

.section.head h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 5.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  letter-spacing: 4px;
  line-height: 1.2;
  animation: elegantFadeIn 1.5s ease;
}

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

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

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

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
}

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

.section header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
  letter-spacing: 3px;
}

.section header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.9;
}

/* Footer */
.footer {
  background: linear-gradient(to top, var(--bg-primary), var(--bg-secondary));
  padding: 4rem 0 1.5rem;
  border-top: 1px solid var(--accent-lightgold);
  box-shadow: 0 -1px 0 var(--accent-gold);
  margin-top: 6rem;
}

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

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

.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;
  font-weight: 400;
}

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

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

.copyright a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 300;
}

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

.fade-in {
  opacity: 0;
  animation: marbleFade 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: 2rem;
  color: var(--accent-darkgold);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: 2px;
}
