/* Template 31 - Minimalist Bauhaus / Geometric Modern */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Familjen+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bauhaus-white: #fafafa;
  --bauhaus-cream: #f5f5f0;
  --bauhaus-black: #1a1a1a;
  --bauhaus-gray: #666666;
  --bauhaus-light-gray: #e5e5e5;
  --bauhaus-red: #e63946;
  --bauhaus-blue: #457b9d;
  --bauhaus-yellow: #f4a261;
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  line-height: 1.7;
  color: var(--bauhaus-black);
  background: var(--bauhaus-white);
  font-weight: 400;
  font-size: 17px;
}

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

/* Header - Geometric Bauhaus */
.site-header {
  background: var(--bauhaus-white);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--bauhaus-light-gray);
}

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

.site-logo a {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bauhaus-black);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.site-logo a::before {
  content: '';
  width: 24px;
  height: 24px;
  background: var(--bauhaus-red);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.site-logo a:hover::before {
  background: var(--bauhaus-blue);
  transform: scale(1.1);
}

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

.site-nav a {
  color: var(--bauhaus-gray);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--bauhaus-red);
  transition: width 0.3s ease;
}

.site-nav a:hover {
  color: var(--bauhaus-black);
}

.site-nav a:hover::after {
  width: 100%;
}

/* Hero Section */
.section.head {
  padding: 8rem 0 6rem;
  text-align: left;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 60vh;
}

.section.head::before {
  content: '';
  position: absolute;
  top: 4rem;
  right: 5%;
  width: 300px;
  height: 300px;
  background: var(--bauhaus-yellow);
  border-radius: 50%;
  opacity: 0.15;
  z-index: -1;
}

.section.head::after {
  content: '';
  position: absolute;
  bottom: 2rem;
  right: 15%;
  width: 150px;
  height: 150px;
  background: var(--bauhaus-blue);
  z-index: -1;
  opacity: 0.1;
}

.section.head h1 {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--bauhaus-black);
  line-height: 1.1;
  max-width: 800px;
}

.section.head h1 span {
  color: var(--bauhaus-red);
}

.section.head p {
  font-size: 1.2rem;
  color: var(--bauhaus-gray);
  max-width: 550px;
  line-height: 1.8;
}

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

.section header {
  text-align: left;
  margin-bottom: 3rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.section header::before {
  content: '';
  width: 40px;
  height: 40px;
  background: var(--bauhaus-blue);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.section header h2 {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--bauhaus-black);
  line-height: 1.2;
}

.section header p {
  font-size: 1.1rem;
  color: var(--bauhaus-gray);
  max-width: 500px;
}

body:not(.faq) h3,
:not(section.faq) h3 {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--bauhaus-black);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

body:not(.faq) h3::before,
:not(section.faq) h3::before {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--bauhaus-red);
}

/* Footer */
.footer {
  background: var(--bauhaus-black);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
  color: var(--bauhaus-white);
}

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

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

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--bauhaus-red);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  color: var(--bauhaus-white);
}

.footer-links a:hover::before {
  opacity: 1;
}

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

.footer-bottom::after {
  content: '';
  display: flex;
  gap: 8px;
}

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

/* Geometric decorations */
.footer::before {
  content: '';
  display: block;
  width: 60px;
  height: 60px;
  background: var(--bauhaus-yellow);
  position: absolute;
  right: 10%;
  margin-top: -30px;
}

/* Animations */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  opacity: 0;
  animation: slideIn 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;
}
