/* Template 95 - Citrus Fresh / Vibrant Zesty */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Quicksand:wght@400;500;600;700&family=Nunito:wght@400;600&display=swap');

:root {
  --citrus-orange: #ff6b35;
  --citrus-tangerine: #f7931e;
  --citrus-lemon: #ffd23f;
  --citrus-lime: #a8d83f;
  --citrus-green: #7cb518;
  --citrus-grapefruit: #ff4f79;
  --citrus-cream: #fffef5;
  --citrus-white: #ffffff;
  --citrus-dark: #2d3436;
  --citrus-gray: #636e72;
}

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

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

body {
  font-family: 'Quicksand', sans-serif;
  line-height: 1.7;
  color: var(--citrus-dark);
  background: var(--citrus-cream);
  font-weight: 500;
  overflow-x: hidden;
}

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

/* Header - Fresh Squeeze */
.site-header {
  background: var(--citrus-white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, 
    var(--citrus-grapefruit) 0%, 
    var(--citrus-orange) 25%, 
    var(--citrus-lemon) 50%, 
    var(--citrus-lime) 75%, 
    var(--citrus-green) 100%
  );
}

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

.site-logo a {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--citrus-orange);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-logo a::before {
  content: '🍊';
  font-size: 1.5rem;
}

.site-logo a:hover {
  color: var(--citrus-tangerine);
  transform: scale(1.05);
}

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

.site-nav a {
  color: var(--citrus-dark);
  text-decoration: none;
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.6rem 1.25rem;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.site-nav li:nth-child(1) a:hover { background: var(--citrus-grapefruit); color: white; }
.site-nav li:nth-child(2) a:hover { background: var(--citrus-orange); color: white; }
.site-nav li:nth-child(3) a:hover { background: var(--citrus-lemon); color: var(--citrus-dark); }
.site-nav li:nth-child(4) a:hover { background: var(--citrus-lime); color: var(--citrus-dark); }
.site-nav li:nth-child(5) a:hover { background: var(--citrus-green); color: white; }

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

.section.head::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 10%;
  width: 100px;
  height: 100px;
  background: var(--citrus-lemon);
  border-radius: 50%;
  opacity: 0.3;
  animation: floatBubble 4s ease-in-out infinite;
}

.section.head::after {
  content: '';
  position: absolute;
  bottom: 20%;
  right: 15%;
  width: 60px;
  height: 60px;
  background: var(--citrus-lime);
  border-radius: 50%;
  opacity: 0.3;
  animation: floatBubble 5s ease-in-out infinite reverse;
}

@keyframes floatBubble {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.1); }
}

.section.head h1 {
  font-family: 'Fredoka', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--citrus-orange), var(--citrus-grapefruit));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.section.head p {
  font-size: 1.2rem;
  color: var(--citrus-gray);
  max-width: 700px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  background: var(--citrus-white);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
  position: relative;
  z-index: 1;
}

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

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

.section header h2 {
  font-family: 'Fredoka', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--citrus-dark);
  margin-bottom: 1rem;
}

.section header h2::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--citrus-orange), var(--citrus-lemon));
  margin: 1rem auto 0;
  border-radius: 2px;
}

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

/* Footer */
.footer {
  background: var(--citrus-dark);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, 
    var(--citrus-green) 0%, 
    var(--citrus-lime) 25%, 
    var(--citrus-lemon) 50%, 
    var(--citrus-orange) 75%, 
    var(--citrus-grapefruit) 100%
  );
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

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

.footer-links a {
  color: var(--citrus-white);
  text-decoration: none;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  background: var(--citrus-orange);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
}

.footer-bottom::before {
  content: '🍋';
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

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

/* Animations */
.fade-in {
  opacity: 0;
  animation: popIn 0.5s ease forwards;
}

@keyframes popIn {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}

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: 'Fredoka', sans-serif;
  font-size: 1.5rem;
  color: var(--citrus-orange);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
}
