:root {
  --color-bg-primary: #f7fafc;
  --color-text-primary: #1a202c;
  --color-accent: #78a3e9;
  --color-border-default: #e2e8f0;
  --color-muted: #64748b;
  --color-text-secondary: #334155;
  --color-bg-secondary: #eaeceef5;
  --color-bg-header: rgba(255, 255, 255, 0.8);
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f7f9fc;
  color: #1a1a1a;
  line-height: 1.6;
}

.nav-link {
  position: relative;
}

.hero-section {
  background: linear-gradient(to bottom, var(--color-bg-primary), var(--color-bg-secondary));
  padding: 4rem 0;
}

.hero-content {
  text-align: center;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.hero-description {
  font-size: 2.25rem;
  color: #78a3e9;
}

.hover-fadein {
  transition: all 0.3s ease;
}

.hover-fadein:hover {
  transform: scale(1.03);
}

.hovernav {
  text-decoration: underline;
  font-weight: bolder;
}


/* Kontaktformular */
.kontaktformular {
  background: white;
  padding: 2rem;
  margin-top: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.kontaktformular h2 {
  text-align: center;
  color: #0e3a5b;
  margin-bottom: 1.5rem;
}
.kontaktformular form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.kontaktformular input,
.kontaktformular select,
.kontaktformular textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}
.kontaktformular .form-row {
  display: flex;
  gap: 1rem;
}
.kontaktformular button {
  padding: 0.75rem;
  background-color: #3b82f6;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}
.kontaktformular button:hover {
  background-color: #0c38c9;
}


.word-cloud {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  position: relative;
}

.word {
  font-size: calc(12px + 0.5vw);
  background-color: #e0f0ff;
  padding: 10px 15px;
  border-radius: 10px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
  transform: rotate(var(--angle));
  transition: transform 0.3s ease;
}

.word:hover {
  transform: scale(1.1) rotate(0deg);
  background-color: #cde7ff;
}