.page-content {
  padding: 370px 20px 15px 20px; /* letzter Wert = unten */
}


/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: 'Montserrat', sans-serif;
}

body {
  background-color: #121212;
  color: #eee;
}

/* HEADER */
header {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(18,18,18,0.95);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

header .logo img {
  height: 120px; /* großes Logo */
  transition: transform 0.3s ease;
}

header .logo img:hover {
  transform: scale(1.05);
}

header .nav-links {
  display: flex;
  list-style: none;
}

header .nav-links li {
  margin-left: 20px;
}

header .nav-links a {
  color: #eee;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

header .nav-links a:hover,
header .nav-links a.active {
  background-color: #c62828;
  color: #fff;
}

#modeToggle {
  margin-left: 20px;
  background: none;
  border: none;
  color: #eee;
  font-size: 1.2rem;
  cursor: pointer;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -2;
  transition: transform 0.5s ease;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3rem;
  color: #c62828;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-buttons .btn {
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.red-btn {
  background-color: #c62828;
  color: #fff;
}

.red-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(198,40,40,0.6);
}

.outline-btn {
  border: 2px solid #c62828;
  color: #c62828;
}

.outline-btn:hover {
  background-color: #c62828;
  color: #fff;
  transform: scale(1.05);
}


.page-section {
  margin-bottom: 20px;
}

.page-section h1 {
  font-size: 2.5rem;
  color: #c62828;
  margin-bottom: 20px;
  text-align: center;
}

.page-section p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #eee;
  text-align: center;
  margin-bottom: 30px;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 0;
}

.feature {
  background-color: #1e1e1e;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature i {
  color: #c62828;
  margin-bottom: 15px;
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(198,40,40,0.5);
}

/* FOOTER */
footer {
  background-color: #1e1e1e;
  text-align: center;
  padding: 2rem;
  margin-top: 2rem;
}

footer a {
  color: #c62828;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
