/* Template 29 - Art Deco Gatsby / Roaring Twenties */
@import url('https://fonts.googleapis.com/css2?family=Poiret+One&family=Josefin+Sans:wght@300;400;500;600;700&family=Raleway:wght@300;400;500&display=swap');

:root {
  --deco-black: #1a1a1a;
  --deco-charcoal: #2d2d2d;
  --deco-gold: #d4af37;
  --deco-gold-light: #e8c547;
  --deco-cream: #f5f0e1;
  --deco-ivory: #fffef9;
  --deco-burgundy: #722f37;
  --deco-teal: #2a5f5f;
}

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

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

body {
  font-family: 'Josefin Sans', sans-serif;
  line-height: 1.7;
  color: var(--deco-black);
  background: var(--deco-ivory);
  font-weight: 400;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 100px,
      rgba(212, 175, 55, 0.03) 100px,
      rgba(212, 175, 55, 0.03) 101px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 100px,
      rgba(212, 175, 55, 0.03) 100px,
      rgba(212, 175, 55, 0.03) 101px
    );
  pointer-events: none;
  z-index: -1;
}

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

/* Header - Art Deco Style */
.site-header {
  background: var(--deco-black);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--deco-gold);
}

.site-header::before,
.site-header::after {
  content: '';
  position: absolute;
  bottom: -3px;
  width: 30px;
  height: 30px;
  border: 3px solid var(--deco-gold);
  background: var(--deco-black);
}

.site-header::before {
  left: 0;
  border-right: none;
  border-top: none;
}

.site-header::after {
  right: 0;
  border-left: none;
  border-top: none;
}

.header-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1.5rem 0;
}

.site-logo a {
  font-family: 'Poiret One', cursive;
  font-size: 3rem;
  color: var(--deco-gold);
  text-decoration: none;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
}

.site-logo a::before,
.site-logo a::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--deco-gold));
}

.site-logo a::before {
  right: calc(100% + 20px);
}

.site-logo a::after {
  left: calc(100% + 20px);
  background: linear-gradient(90deg, var(--deco-gold), transparent);
}

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

.site-nav {
  margin-top: 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding-top: 1rem;
}

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

.site-nav a {
  color: var(--deco-cream);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

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

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

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

/* Hero Section */
.section.head {
  padding: 8rem 0;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, var(--deco-cream) 0%, var(--deco-ivory) 100%);
}

.section.head::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 100px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 100'%3E%3Cpath fill='none' stroke='%23d4af37' stroke-width='2' d='M100,10 L130,40 L100,70 L70,40 Z M100,20 L120,40 L100,60 L80,40 Z'/%3E%3Cpath fill='none' stroke='%23d4af37' stroke-width='1' d='M50,50 L100,10 L150,50 M50,50 L100,90 L150,50'/%3E%3C/svg%3E") no-repeat center;
}

.section.head h1 {
  font-family: 'Poiret One', cursive;
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--deco-black);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4rem;
}

.section.head p {
  font-family: 'Raleway', sans-serif;
  font-size: 1.15rem;
  color: var(--deco-charcoal);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
  letter-spacing: 0.05em;
}

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

.section::before {
  content: '';
  display: block;
  width: 150px;
  height: 40px;
  margin: 0 auto 3rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 40'%3E%3Cpath fill='none' stroke='%23d4af37' stroke-width='1.5' d='M0,20 L40,20 M110,20 L150,20 M50,10 L75,20 L50,30 M100,10 L75,20 L100,30'/%3E%3Ccircle fill='%23d4af37' cx='75' cy='20' r='4'/%3E%3C/svg%3E") no-repeat center;
}

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

.section header h2 {
  font-family: 'Poiret One', cursive;
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--deco-black);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section header p {
  font-family: 'Raleway', sans-serif;
  font-size: 1.05rem;
  color: var(--deco-charcoal);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

body:not(.faq) h3,
:not(section.faq) h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--deco-burgundy);
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-align: left;
  letter-spacing: 0.1em;
}

/* Footer */
.footer {
  background: var(--deco-black);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
  border-top: 3px solid var(--deco-gold);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: var(--deco-ivory);
  border: 3px solid var(--deco-gold);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.footer::after {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--deco-gold);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.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(--deco-cream);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  line-height: 1.8;
}

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

.footer-links a {
  color: var(--deco-cream);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--deco-gold);
  transition: width 0.3s ease;
}

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

.footer-links a:hover::after {
  width: 100%;
}

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

.copyright a {
  color: rgba(245, 240, 225, 0.6);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

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

.fade-in {
  opacity: 0;
  animation: fadeInDeco 0.8s ease forwards;
}

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

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

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

main {
  flex: 1;
}
