/* Template 8 - Retro Sunset / 80s Synthwave Light */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rubik:wght@300;400;500;600;700&display=swap');

:root {
  --sunset-cream: #fef6e4;
  --warm-peach: #fad2c9;
  --coral-pink: #f582ae;
  --electric-orange: #ff8e3c;
  --deep-plum: #5c2a5e;
  --midnight-purple: #2d1f3d;
  --soft-teal: #78c4c8;
}

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

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

body {
  font-family: 'Rubik', sans-serif;
  line-height: 1.7;
  color: var(--midnight-purple);
  background: var(--sunset-cream);
  font-weight: 400;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(180deg, var(--warm-peach) 0%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}

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

/* Header - Retro bar style */
.site-header {
  background: var(--midnight-purple);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 0 var(--coral-pink);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  min-height: 70px;
}

.site-logo {
  display: flex;
  align-items: center;
  background: var(--electric-orange);
  padding: 0 2rem;
  margin-left: -2rem;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 0 100%);
}

.site-logo a {
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  color: var(--sunset-cream);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: transform 0.3s ease;
}

.site-logo a:hover {
  transform: scale(1.05);
}

.site-nav {
  display: flex;
  align-items: center;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 0;
  align-items: stretch;
  height: 100%;
}

.site-nav li {
  display: flex;
  align-items: center;
}

.site-nav a {
  color: var(--sunset-cream);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  border-left: 1px solid rgba(254, 246, 228, 0.1);
}

.site-nav a:hover {
  background: var(--coral-pink);
  color: var(--midnight-purple);
}

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

.section.head::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--coral-pink) 0px,
    var(--coral-pink) 20px,
    var(--electric-orange) 20px,
    var(--electric-orange) 40px,
    var(--soft-teal) 40px,
    var(--soft-teal) 60px
  );
}

.section.head h1 {
  font-family: 'Bebas Neue', cursive;
  font-size: 5rem;
  font-weight: 400;
  color: var(--midnight-purple);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-shadow: 4px 4px 0 var(--coral-pink);
  animation: titlePulse 4s ease-in-out infinite;
}

@keyframes titlePulse {
  0%, 100% { text-shadow: 4px 4px 0 var(--coral-pink); }
  50% { text-shadow: 4px 4px 0 var(--electric-orange); }
}

.section.head p {
  font-size: 1.2rem;
  color: var(--deep-plum);
  max-width: 650px;
  margin: 0 auto;
}

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

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

.section header h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--midnight-purple);
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
  position: relative;
  display: inline-block;
}

.section header h2::before,
.section header h2::after {
  content: '★';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--coral-pink);
  font-size: 1.5rem;
}

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

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

.section header p {
  font-size: 1.1rem;
  color: var(--deep-plum);
  max-width: 550px;
  margin: 0 auto;
}

/* Footer - Layered retro style */
.footer {
  background: var(--midnight-purple);
  padding: 0;
  margin-top: 5rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: repeating-linear-gradient(
    -45deg,
    var(--coral-pink) 0px,
    var(--coral-pink) 10px,
    var(--electric-orange) 10px,
    var(--electric-orange) 20px
  );
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 0 2rem;
}

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

.footer-tagline {
  color: var(--warm-peach);
  line-height: 1.8;
}

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

.footer-links a {
  color: var(--sunset-cream);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  background: var(--deep-plum);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  background: var(--coral-pink);
  color: var(--midnight-purple);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  background: rgba(0,0,0,0.2);
}

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

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

.fade-in {
  opacity: 0;
  animation: slideUp 0.6s 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-family: 'Bebas Neue', cursive;
  font-size: 1.8rem;
  color: var(--midnight-purple);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  letter-spacing: 0.02em;
}
