@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Customer Red Palette */
  --color-primary: #b30931;
  --color-primary-light: #d61a45;
  --color-sand: #e8e1d7;
  --color-sand-light: #f5f2ed;
  --color-accent: #333333;
  --color-accent-hover: #1a1a1a;
  --color-text-dark: #222;
  --color-text-light: #fbfbfb;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --box-shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
  --box-shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);

  --radius-md: 12px;
  --radius-lg: 20px;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: var(--color-sand-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

/* Typography Utilities */
.text-gold {
  color: var(--color-accent);
}

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

.text-center {
  text-align: center;
}

/* Layout & Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section-title {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--color-primary);
  margin: 1rem auto 0;
  border-radius: 3px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: var(--transition-smooth);
  background: transparent;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: var(--box-shadow-soft);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text-light);
  transition: var(--transition-smooth);
}

.header.scrolled .logo {
  color: var(--color-primary);
}

.logo span {
  color: var(--color-gold);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-text-light);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: 8rem 0 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Neutral dark gradient overlay to ensure text is readable */
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: fadeUp 1s ease forwards;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 300;
  margin-bottom: 2.5rem;
  color: var(--color-sand);
  animation: fadeUp 1s ease forwards 0.2s;
  opacity: 0;
}

/* Form Styles for Contact */
.contact-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--box-shadow-soft);
  max-width: 500px;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form .form-control {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s;
}

.contact-form .form-control:focus {
  outline: none;
  border-color: var(--color-primary);
}

.contact-form textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Footer */
.footer {
  background-color: var(--color-primary);
  color: var(--color-sand);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-col h4 {
  color: var(--color-sand-light);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.footer-col p {
  margin-bottom: 0.8rem;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--color-sand-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(232, 225, 215, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Quote Section */
.quote-section {
  background-color: var(--color-primary);
  color: var(--color-sand);
  padding: 5rem 0;
  text-align: center;
}

.quote-text {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  font-style: italic;
}

.quote-author {
  font-size: 1.1rem;
  color: var(--color-sand);
}

/* Legal Content / Rechtliches */
.legal-content h2 {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin: 3.5rem 0 1.5rem;
  border-bottom: 2px solid var(--color-sand);
  padding-bottom: 0.5rem;
}

.legal-content h3 {
  font-size: 1.5rem;
  color: var(--color-accent);
  margin: 2rem 0 0.8rem;
}

.legal-content h4 {
  font-size: 1.2rem;
  color: var(--color-text-dark);
  margin: 1.5rem 0 0.5rem;
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: disc inside;
  margin-bottom: 1.5rem;
}

.legal-content ul li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--color-primary);
  text-decoration: underline;
  opacity: 0.9;
}

.legal-content a:hover {
  opacity: 1;
  color: var(--color-gold);
}

/* Standard Pages Background */
.page-header {
  height: 40vh;
  min-height: 300px;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  text-align: center;
  position: relative;
  margin-bottom: 4rem;
}

.page-title {
  font-size: 3rem;
  position: relative;
  z-index: 2;
  animation: fadeUp 0.8s ease forwards;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
}