@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,700;1,9..40,400&display=swap');

:root {
  --primary: #6CA2EE;
  --primary-dark: #4a7ec4;
  --bauhaus-red: #E63946;
  --bauhaus-yellow: #FFD166;
  --bauhaus-black: #1a1a1a;
  --bauhaus-white: #f8f9fa;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --section-alt: #e8f0fc;
  --section-dark: #2d3748;
  --max-width: 1200px;
  --header-height: 72px;
  --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.1);
  --shadow-md: 0 4px 16px rgba(26, 26, 26, 0.14);
  --shadow-lg: 0 8px 28px rgba(26, 26, 26, 0.16);
  --shadow-bauhaus: 4px 4px 0 rgba(26, 26, 26, 0.12), 0 6px 20px rgba(26, 26, 26, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--bauhaus-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--bauhaus-red);
}

ul, ol {
  padding-left: 1.25rem;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.disclaimer-bar {
  background: var(--bauhaus-black);
  color: var(--text-light);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  line-height: 1.5;
}

.disclaimer-bar p {
  margin: 0;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.disclaimer-bar p + p {
  margin-top: 0.4rem;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.disclaimer-ai a {
  color: var(--primary);
  text-decoration: underline;
}

.disclaimer-ai a:hover {
  color: var(--bauhaus-yellow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bauhaus-white);
  box-shadow: var(--shadow-md);
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.logo-link img {
  width: 44px;
  height: 44px;
}

.logo-text {
  display: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  box-shadow: var(--shadow-sm);
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  color: var(--bauhaus-black);
  font-size: 1.4rem;
  line-height: 1;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  padding: 0;
}

.main-nav a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width 0.2s;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.75) 0%, rgba(108, 162, 238, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.25rem;
  max-width: 800px;
}

.hero-content h1 {
  font-size: clamp(1.75rem, 5vw, 3.25rem);
  color: var(--text-light);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-content p {
  color: var(--text-light);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-shape {
  position: absolute;
  z-index: 1;
}

.hero-shape.circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--bauhaus-yellow);
  top: 15%;
  right: 10%;
  opacity: 0.6;
}

.hero-shape.square {
  width: 80px;
  height: 80px;
  background: var(--bauhaus-red);
  bottom: 20%;
  left: 8%;
  opacity: 0.5;
  transform: rotate(15deg);
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  box-shadow: var(--shadow-bauhaus);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-light);
}

.btn-primary:hover {
  background: var(--bauhaus-black);
  color: var(--text-light);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.85), var(--shadow-sm);
}

.btn-outline:hover {
  background: var(--text-light);
  color: var(--bauhaus-black);
  box-shadow: var(--shadow-md);
}

.btn-dark {
  background: var(--bauhaus-black);
  color: var(--text-light);
}

.btn-dark:hover {
  background: var(--primary);
  color: var(--text-light);
  box-shadow: var(--shadow-lg);
}

section {
  padding: 4rem 0;
}

.section-light {
  background: var(--bauhaus-white);
  color: var(--text-dark);
}

.section-alt {
  background: var(--section-alt);
  color: var(--text-dark);
}

.section-dark {
  background: var(--section-dark);
  color: var(--text-light);
}

.section-primary {
  background: var(--primary);
  color: var(--text-light);
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.section-header .subtitle {
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 700px;
}

.section-dark .section-header h2,
.section-primary .section-header h2 {
  color: var(--text-light);
}

.section-dark a,
.section-primary a {
  color: var(--bauhaus-yellow);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.card {
  background: var(--bauhaus-white);
  border: none;
  box-shadow: var(--shadow-bauhaus);
  padding: 1.75rem;
  position: relative;
}

.section-dark .card,
.section-primary .card {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  color: var(--text-light);
}

.card-icon {
  font-size: 2rem;
  color: var(--bauhaus-red);
  margin-bottom: 1rem;
}

.section-dark .card-icon,
.section-primary .card-icon {
  color: var(--bauhaus-yellow);
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.image-block {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(108, 162, 238, 0.08);
  padding: 0.5rem;
  box-shadow: var(--shadow-bauhaus);
}

.image-block img {
  border: none;
  box-shadow: none;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.image-block.offset {
  position: relative;
}

.image-block.offset::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--bauhaus-yellow);
  bottom: -15px;
  right: -15px;
  z-index: -1;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.feature-list li i {
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.section-dark .feature-list li i,
.section-primary .feature-list li i {
  color: var(--bauhaus-yellow);
}

.numbered-list {
  counter-reset: item;
  list-style: none;
  padding: 0;
}

.numbered-list li {
  counter-increment: item;
  padding: 1.25rem 1.25rem 1.25rem 4rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary);
  background: rgba(108, 162, 238, 0.08);
  position: relative;
}

.numbered-list li::before {
  content: counter(item);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
  border: none;
  box-shadow: var(--shadow-bauhaus);
  background: var(--bauhaus-white);
}

.stat-item .number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.stat-item .label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.faq-item {
  border: none;
  box-shadow: var(--shadow-bauhaus);
  margin-bottom: 1rem;
  background: var(--bauhaus-white);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--text-dark);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
}

.faq-question i {
  color: var(--primary);
  transition: transform 0.2s;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
  color: var(--text-dark);
}

.faq-item.open .faq-answer {
  padding: 0 1.5rem 1.25rem;
  max-height: 600px;
}

.events-table {
  width: 100%;
  border-collapse: collapse;
  border: none;
  box-shadow: var(--shadow-bauhaus);
}

.events-table th,
.events-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(26, 26, 26, 0.12);
  color: var(--text-dark);
}

.events-table th {
  background: var(--bauhaus-black);
  color: var(--text-light);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.events-table tr:nth-child(even) {
  background: rgba(108, 162, 238, 0.1);
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--primary);
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cta-block {
  text-align: center;
  padding: 3rem 2rem;
  border: none;
  box-shadow: var(--shadow-bauhaus);
  background: var(--bauhaus-white);
  position: relative;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%;
  height: 100%;
  background: var(--bauhaus-yellow);
  z-index: -1;
}

.site-footer {
  background: var(--bauhaus-black);
  color: var(--text-light);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h4 {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--primary);
}

.footer-grid ul {
  list-style: none;
  padding: 0;
}

.footer-grid li {
  margin-bottom: 0.5rem;
}

.footer-grid a {
  color: var(--text-light);
  opacity: 0.85;
  font-size: 0.9rem;
}

.footer-grid a:hover {
  color: var(--primary);
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer-compliance {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.5;
  opacity: 0.85;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0.25rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bauhaus-black);
  color: var(--text-light);
  padding: 1.25rem;
  z-index: 9999;
  border-top: 3px solid var(--primary);
  transform: translateY(100%);
  transition: transform 0.3s;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-text a {
  color: var(--primary);
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-buttons .btn {
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
}

.cookie-settings-panel {
  display: none;
  width: 100%;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-settings-panel.open {
  display: block;
}

.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: 1rem;
}

.cookie-category label {
  font-size: 0.9rem;
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: #555;
  border-radius: 26px;
  cursor: pointer;
  transition: 0.2s;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.2s;
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--primary);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-form {
  max-width: 600px;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: none;
  box-shadow: var(--shadow-sm);
  font-family: inherit;
  font-size: 1rem;
  background: var(--bauhaus-white);
  color: var(--text-dark);
  transition: box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(108, 162, 238, 0.35), var(--shadow-md);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.form-check input {
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.form-check label {
  font-size: 0.9rem;
  line-height: 1.5;
}

.map-wrapper {
  border: none;
  box-shadow: var(--shadow-bauhaus);
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 450px;
  display: block;
}

.policy-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  text-transform: uppercase;
}

.policy-content h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.75rem;
}

.policy-content p,
.policy-content li {
  margin-bottom: 0.75rem;
}

.policy-content ul {
  margin-bottom: 1rem;
}

.success-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.25rem;
}

.success-page i {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.bauhaus-deco {
  position: absolute;
  pointer-events: none;
}

.inline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.page-hero {
  min-height: 50vh;
}

.content-notice {
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
  background: rgba(108, 162, 238, 0.12);
  border-left: 4px solid var(--primary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.section-dark .content-notice,
.section-primary .content-notice {
  background: rgba(255, 255, 255, 0.1);
  border-left-color: var(--bauhaus-yellow);
  color: var(--text-light);
}

.section-dark .content-notice a,
.section-primary .content-notice a {
  color: var(--bauhaus-yellow);
}

@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--bauhaus-white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 1.25rem;
    gap: 0;
  }

  .main-nav li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .main-nav a {
    display: block;
    padding: 1rem 0;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .logo-text {
    display: inline;
    font-size: 0.75rem;
  }

  .hero-shape {
    display: none;
  }

  section {
    padding: 3rem 0;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 0.75rem;
  }

  .header-inner {
    padding: 0 0.75rem;
  }

  .logo-link img {
    width: 36px;
    height: 36px;
  }

  .btn {
    padding: 0.7rem 1.25rem;
    font-size: 0.8rem;
    width: 100%;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-buttons .btn {
    width: 100%;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .events-table {
    font-size: 0.8rem;
  }

  .events-table th,
  .events-table td {
    padding: 0.5rem;
  }
}
