/* Template 68 - Tangerine Sunset Retro */
@import url("https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Rubik:wght@300;400;500;600;700&display=swap");

:root {
  --bg-primary: #fff5e6;
  --bg-secondary: #ffe4c4;
  --accent-1: #ff6b35;
  --accent-2: #f7931e;
  --accent-3: #fdc830;
  --text-primary: #2d2424;
  --text-secondary: #6b4423;
  --text-muted: #9c7a5e;
}

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

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

body {
  font-family: "Rubik", 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;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(255, 107, 53, 0.15) 0%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}

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

.site-header {
  background: var(--accent-1);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 6px 0 var(--accent-2), 0 8px 20px rgba(255, 107, 53, 0.3);
}

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

.site-logo a {
  font-family: "Alfa Slab One", cursive;
  font-size: 2.2rem;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  transform: skew(-5deg);
  display: inline-block;
}

.site-logo a:hover {
  transform: skew(-5deg) scale(1.05);
  text-shadow: 6px 6px 0 rgba(0, 0, 0, 0.25);
}

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

.site-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.15);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.site-nav a:hover {
  background: var(--accent-3);
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.section.head {
  padding: 8rem 0;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, var(--accent-3) 0%, var(--accent-2) 50%, var(--accent-1) 100%);
  margin: 0 -100vw;
  padding-left: 100vw;
  padding-right: 100vw;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.section.head h1 {
  font-family: "Alfa Slab One", cursive;
  font-size: 5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: #fff;
  text-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2), 8px 8px 20px rgba(0, 0, 0, 0.15);
  animation: bounceRetro 1.5s ease;
  transform: skew(-3deg);
}

@keyframes bounceRetro {
  0% {
    transform: skew(-3deg) scale(0.8) translateY(50px);
    opacity: 0;
  }
  60% {
    transform: skew(-3deg) scale(1.05);
  }
  100% {
    transform: skew(-3deg) scale(1) translateY(0);
    opacity: 1;
  }
}

.section.head p {
  font-size: 1.35rem;
  color: #fff;
  max-width: 850px;
  margin: 0 auto;
  font-weight: 500;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.section {
  padding: 5rem 0;
}

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

.section header h2 {
  font-family: "Alfa Slab One", cursive;
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--accent-1);
  text-shadow: 3px 3px 0 rgba(255, 107, 53, 0.2);
  transform: skew(-2deg);
}

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

.footer {
  background: var(--accent-2);
  padding: 4rem 0 1.5rem;
  margin-top: 5rem;
  box-shadow: 0 -6px 0 var(--accent-1);
}

.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: #fff;
  line-height: 1.9;
  font-size: 1.05rem;
  font-weight: 500;
}

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

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links a:hover {
  color: var(--accent-3);
  transform: translateY(-2px);
}

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

.copyright a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(40px) rotate(2deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

.fade-in {
  opacity: 0;
  animation: floatIn 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.9rem;
  color: var(--accent-1);
  margin-top: 18px;
  margin-bottom: 12px;
  text-align: left;
  font-family: "Alfa Slab One", cursive;
  transform: skew(-1deg);
}
