:root {
  --theme-primary: #3b82f6;
  --theme-secondary: #1e40af;
  --theme-accent: #06b6d4;
}

[data-theme="blue"] {
  --theme-primary: #3b82f6;
  --theme-secondary: #1e40af;
  --theme-accent: #06b6d4;
}

[data-theme="green"] {
  --theme-primary: #10b981;
  --theme-secondary: #047857;
  --theme-accent: #34d399;
}

[data-theme="purple"] {
  --theme-primary: #8b5cf6;
  --theme-secondary: #7c3aed;
  --theme-accent: #a78bfa;
}

[data-theme="orange"] {
  --theme-primary: #f59e0b;
  --theme-secondary: #d97706;
  --theme-accent: #fbbf24;
}

[data-theme="brutalist"] {
  --theme-primary: #fbbf24;
  --theme-secondary: #f59e0b;
  --theme-accent: #22c55e;
  --brutalist-red: #ef4444;
  --brutalist-blue: #3b82f6;
  --brutalist-purple: #a855f7;
  --brutalist-green: #22c55e;
}

.theme-primary {
  color: var(--theme-primary);
}

.bg-theme-primary {
  background-color: var(--theme-primary);
}

.border-theme-primary {
  border-color: var(--theme-primary);
}

.hover\:bg-theme-primary:hover {
  background-color: var(--theme-primary);
}

.hero-section {
  background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
}

.quote-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-in-out;
}

.quote-fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

.section-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--theme-primary);
  color: white;
  margin: 0 auto 1rem;
}

.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.smooth-scroll {
  scroll-behavior: smooth;
}

/* Scale entire page by 90% (shrink by 10%) */
html {
  zoom: 0.9;
}

/* Banner styling - black and white by default, color on hover */
.banner-container {
  transition: all 0.4s ease;
}

.banner-image {
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}

.banner-container:hover .banner-image {
  filter: grayscale(0%);
}

/* Neo-Brutalism Theme Styles */
[data-theme="brutalist"] body {
  background: #fef3c7;
}

[data-theme="brutalist"] .section-icon {
  border-radius: 0;
  border: 5px solid #000;
  box-shadow: 6px 6px 0 #000;
}

[data-theme="brutalist"] nav {
  border: 5px solid #000 !important;
  box-shadow: 8px 8px 0 #000 !important;
  border-radius: 0 !important;
}

[data-theme="brutalist"] .card-hover {
  border: 5px solid #000 !important;
  box-shadow: 8px 8px 0 #000 !important;
  border-radius: 0 !important;
  transition: all 0.1s ease !important;
}

[data-theme="brutalist"] .card-hover:hover {
  transform: translate(4px, 4px) !important;
  box-shadow: 4px 4px 0 #000 !important;
}

[data-theme="brutalist"] .banner-container {
  border: 5px solid #000;
  box-shadow: 10px 10px 0 #000;
  border-radius: 0 !important;
}

[data-theme="brutalist"] .bg-white {
  background-color: #fbbf24 !important;
}

[data-theme="brutalist"] .bg-gray-50 {
  background-color: #fef3c7 !important;
}

[data-theme="brutalist"] h1,
[data-theme="brutalist"] h2,
[data-theme="brutalist"] h3 {
  font-weight: 900 !important;
  text-transform: uppercase;
  letter-spacing: -0.05em;
}

[data-theme="brutalist"] a,
[data-theme="brutalist"] button {
  font-weight: 700 !important;
}

/* Brutalist button style */
[data-theme="brutalist"] button,
[data-theme="brutalist"] .btn {
  border: 4px solid #000 !important;
  box-shadow: 5px 5px 0 #000 !important;
  border-radius: 0 !important;
  transition: all 0.1s ease !important;
}

[data-theme="brutalist"] button:hover,
[data-theme="brutalist"] .btn:hover {
  transform: translate(3px, 3px) !important;
  box-shadow: 2px 2px 0 #000 !important;
}

/* Colorful section icons for brutalist theme */
[data-theme="brutalist"] .card-hover:nth-child(1) .section-icon {
  background-color: #ef4444;
}

[data-theme="brutalist"] .card-hover:nth-child(2) .section-icon {
  background-color: #3b82f6;
}

[data-theme="brutalist"] .card-hover:nth-child(3) .section-icon {
  background-color: #22c55e;
}

[data-theme="brutalist"] .card-hover:nth-child(4) .section-icon {
  background-color: #a855f7;
}

[data-theme="brutalist"] .card-hover:nth-child(5) .section-icon {
  background-color: #f59e0b;
}

[data-theme="brutalist"] .card-hover:nth-child(6) .section-icon {
  background-color: #ec4899;
}

[data-theme="brutalist"] .card-hover:nth-child(7) .section-icon {
  background-color: #14b8a6;
}

[data-theme="brutalist"] .card-hover:nth-child(8) .section-icon {
  background-color: #f97316;
}

[data-theme="brutalist"] .card-hover:nth-child(9) .section-icon {
  background-color: #8b5cf6;
}

@media (prefers-reduced-motion: reduce) {
  .quote-fade-in,
  .card-hover {
    transition: none;
  }

  .smooth-scroll {
    scroll-behavior: auto;
  }
}