@font-face {
  font-family: 'Urbanist';
  src: url('fonts/Urbanist-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Urbanist';
  src: url('fonts/Urbanist-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Standard-Schrift */
body {
  font-family: 'Urbanist', Inter, system-ui, sans-serif;
}

/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Urbanist", "Inter", system-ui, -apple-system, sans-serif;
  background-color: #000000;
  color: #ededed;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

p {
  color: #ededed;
  margin-bottom: 1rem;
}

a {
  color: #9b5cff;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #b47fff;
}

a:focus {
  outline: 2px solid #9b5cff;
  outline-offset: 2px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  text-decoration: none;
}

.btn:focus {
  outline: 2px solid #9b5cff;
  outline-offset: 2px;
}

.btn-primary {
  background-color: #9b5cff;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #b47fff;
  box-shadow: 0 0 20px rgba(155, 92, 255, 0.4);
  color: #ffffff;
}

/* Removed secondary button styles as not needed for minimal design */

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid #1a1a1a;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand .brand-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ededed;
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: #ededed;
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #9b5cff;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #9b5cff;
}

/* Updated hero section for minimal centered design with responsive title */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 6rem 0;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(48px, 14vw, 160px);
  font-weight: 700;
  color: #ededed;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Removed hero background graphics for minimal design */

/* Section Spacing */
section {
  padding: 5rem 0;
}

/* Removed product section styles as not needed */

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #ededed;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  background-color: #1a1a1a;
  border: 1px solid #333333;
  border-radius: 0.5rem;
  padding: 0.875rem;
  color: #ededed;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #9b5cff;
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  color: #ededed;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #333333;
  border-radius: 0.25rem;
  background-color: transparent;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.checkbox-label input[type="checkbox"]:checked {
  background-color: #9b5cff;
  border-color: #9b5cff;
}

.checkbox-label input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 0.875rem;
  font-weight: bold;
}

.error-message {
  color: #ff6b6b;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
}

.error-message.show {
  display: block;
}

.contact-info p {
  margin-bottom: 0.5rem;
  color: #ededed;
}

/* Imprint & Privacy Sections */
.imprint,
.privacy {
  background-color: #0a0a0a;
}

.imprint-content,
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.imprint-section,
.privacy-section {
  margin-bottom: 2.5rem;
}

.imprint-section h3,
.privacy-section h3 {
  color: #ededed;
  margin-bottom: 1rem;
}

.imprint-section address {
  font-style: normal;
  color: #ededed;
  line-height: 1.6;
}

.privacy-section p {
  color: #ededed;
}

/* Footer */
.footer {
  background-color: #0a0a0a;
  border-top: 1px solid #1a1a1a;
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright p {
  color: #ededed;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: #ededed;
  font-size: 0.875rem;
}

/* Removed footer credit section for minimal design */

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .nav {
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-links {
    order: -1;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}
