/* Template 9 - Retro/Vintage */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Raleway:wght@300;400;500;600&display=swap");

:root {
  --vintage-red: #c1666b;
  --mustard-yellow: #d4a574;
  --olive-green: #8b9556;
  --cream: #f4e8d8;
  --burnt-orange: #d97642;

  --bg-primary: #faf7f2;
  --bg-secondary: #f4e8d8;
  --bg-accent: #e8d5c4;

  --text-primary: #3d3027;
  --text-secondary: #6b5d52;
  --text-muted: #9a8b7d;
}

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

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

body {
  font-family: "Raleway", sans-serif;
  line-height: 1.7;
  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-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(193, 102, 107, 0.03) 2px,
    rgba(193, 102, 107, 0.03) 4px
  );
  pointer-events: none;
  z-index: -1;
  opacity: 0.5;
}

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

/* Header - Retro Style */
.site-header {
  background: var(--bg-secondary);
  border-top: 4px solid var(--vintage-red);
  border-bottom: 4px solid var(--vintage-red);
  padding: 2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(61, 48, 39, 0.1);
}

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

.site-logo a {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--vintage-red);
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.site-logo a:hover {
  color: var(--burnt-orange);
  transform: scale(1.03);
}

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

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1.2rem;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.site-nav a:hover {
  color: var(--vintage-red);
  border: 2px solid var(--vintage-red);
  background: rgba(193, 102, 107, 0.05);
}

/* Hero Section */
.section.head {
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--bg-primary), var(--bg-secondary));
}

.section.head h1 {
  font-family: "Playfair Display", serif;
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--vintage-red);
  text-shadow: 3px 3px 0px rgba(212, 165, 116, 0.3);
  animation: vintageGlow 3s ease-in-out infinite;
}

@keyframes vintageGlow {
  0%,
  100% {
    text-shadow: 3px 3px 0px rgba(212, 165, 116, 0.3);
  }
  50% {
    text-shadow: 3px 3px 0px rgba(212, 165, 116, 0.5), 0 0 20px rgba(193, 102, 107, 0.2);
  }
}

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

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

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

.section header h2 {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--burnt-orange);
  position: relative;
  display: inline-block;
}

.section header h2::before,
.section header h2::after {
  content: "◆";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--mustard-yellow);
  font-size: 1.5rem;
}

.section header h2::before {
  left: -50px;
}

.section header h2::after {
  right: -50px;
}

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

/* Footer */
.footer {
  background: var(--bg-secondary);
  padding: 3.5rem 0 1.5rem;
  border-top: 4px solid var(--vintage-red);
  border-bottom: 4px solid var(--vintage-red);
  margin-top: 5rem;
}

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

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

.footer-tagline {
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
}

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid transparent;
}

.footer-links a:hover {
  color: var(--vintage-red);
  border-bottom: 2px solid var(--vintage-red);
}

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

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

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

.fade-in {
  opacity: 0;
  animation: fadeInVintage 0.9s 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.7rem;
  color: var(--burnt-orange);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
}
