/* Template 19 - Ice Arctic */
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Montserrat:wght@300;400;600;700;800&display=swap");

:root {
  --ice-blue: #a8dadc;
  --ice-cyan: #457b9d;
  --ice-white: #f1faee;
  --ice-frost: #e3f2fd;
  --ice-deep: #1d3557;

  --bg-primary: #f8fbff;
  --bg-secondary: #e8f4f8;
  --bg-card: #ffffff;

  --text-primary: #1d3557;
  --text-secondary: #457b9d;
  --text-muted: #6c8ea0;
}

* {
  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.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(168, 218, 220, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(69, 123, 157, 0.1) 0%, transparent 50%);
  animation: crystallize 15s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes crystallize {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(3%, 3%) scale(1.05);
  }
}

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

.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--ice-blue);
  box-shadow: 0 4px 20px rgba(168, 218, 220, 0.2);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.site-logo a {
  font-family: "Montserrat", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--ice-cyan);
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

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

.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: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.site-nav a:hover {
  color: var(--ice-deep);
  background: var(--ice-frost);
  box-shadow: 0 4px 12px rgba(168, 218, 220, 0.3);
}

.section.head {
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--ice-frost) 100%);
}

.section.head h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--ice-cyan);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    filter: brightness(1);
    text-shadow: 0 0 20px rgba(168, 218, 220, 0.3);
  }
  50% {
    filter: brightness(1.2);
    text-shadow: 0 0 30px rgba(168, 218, 220, 0.5);
  }
}

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

.section {
  padding: 5rem 0;
}

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

.section header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--ice-deep);
}

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

.footer {
  background: linear-gradient(180deg, var(--ice-cyan) 0%, var(--ice-deep) 100%);
  color: var(--ice-white);
  padding: 3rem 0 1rem;
  margin-top: 5rem;
}

.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(--ice-frost);
  line-height: 1.8;
}

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

.footer-links a {
  color: var(--ice-frost);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--ice-white);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(241, 250, 238, 0.2);
}

.copyright a {
  color: var(--ice-frost);
  font-size: 0.95rem;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fade-in {
  opacity: 0;
  animation: floatIn 0.8s 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(--ice-cyan);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
}
