/* Allgemein */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f5f6fa;
  display: flex;
  min-height: 100vh;
}

a { text-decoration: none; color: inherit; }
h1, h2 { color: #333; }

/* Sidebar */
.sidebar {
  width: 200px;
  padding: 30px 15px;
  background: #eef1f6;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sidebar img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 25px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  width: 100%;
}

.sidebar li {
  margin: 15px 0;
}

.sidebar a {
  display: block;
  padding: 8px 10px;
  font-size: 1.1rem;
  border-radius: 6px;
  transition: background .3s;
}

.sidebar a:hover,
.sidebar a.active {
  background: #2a6df9;
  color: #fff;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  padding: 10px;
  background: #eef1f6;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu .logo {
  height: 50px;
}

.mobile-menu .menu-btn {
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: #eef1f6;
  padding: 10px;
}

.mobile-nav a {
  padding: 10px;
  font-size: 1.1rem;
  border-bottom: 1px solid #ddd;
}

.mobile-nav a.active,
.mobile-nav a:hover {
  background: #2a6df9;
  color: #fff;
}

/* Hauptinhalt */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Header / Hero */
header {
  background: url('assets/OutlookCalendar.png') center/cover no-repeat;
  height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: rgba(255,255,255,0.85);
  padding: 40px 30px;
  border-radius: 12px;
  max-width: 600px;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.hero-card h1 {
  margin-bottom: 15px;
  font-size: 2.2rem;
}

.hero-card p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.cta {
  display: inline-block;
  background: #2a6df9;
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: background .3s, transform .3s;
}

.cta:hover {
  background: #1e52c1;
  transform: translateY(-2px);
}

/* Inhalt */
.content-card {
  background: white;
  max-width: 800px;
  margin: 40px auto;
  padding: 30px 20px;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
  text-align: center;
}

.content-card h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.content-card ul {
  list-style: none;
  padding: 0;
}

.content-card ul li {
  margin: 10px 0;
  font-size: 1.1rem;
  padding: 8px;
  border-radius: 6px;
  transition: background .2s;
}

.content-card ul li:hover {
  background: #f4f6ff;
}

/* Zitat */
.quote-section {
  font-style: italic;
  color: #444;
}

.quote-section blockquote {
  margin: 0;
  font-size: 1.1rem;
}

.quote-author {
  margin-top: 15px;
  font-style: normal;
  text-align: right;
  font-weight: 600;
}

/* Screenshots */
.screenshot-grid {
  display: flex;
  justify-content: center;
}

.screenshot-grid img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

/* Kontakt */
.contact-section .form-group {
  margin-bottom: 15px;
}
.contact-section label {
  display: block;
  font-weight: 500;
}
.contact-section input,
.contact-section textarea {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.contact-section button {
  margin-top: 15px;
}

/* Animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Mobile Styles */
@media (max-width: 768px) {
  body {
    flex-direction: column;
  }

  .sidebar {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .main-content {
    margin: 0 10px;
  }

  .hero-card {
    padding: 20px;
  }

  .hero-card h1 {
    font-size: 1.5rem;
  }

  .cta {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .content-card {
    margin: 20px auto;
    padding: 20px;
  }

  .quote-section blockquote {
    font-size: 1rem;
  }

  .screenshot-grid {
    flex-direction: column;
    align-items: center;
  }
}

.contact-section form {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.contact-section .form-group {
  margin-bottom: 20px;
}

.contact-section label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 1.05rem;
}

.contact-section input,
.contact-section textarea {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
  background: #fdfdfd;
  transition: border 0.2s;
}

.contact-section input:focus,
.contact-section textarea:focus {
  border-color: #2a6df9;
  outline: none;
  background-color: #fff;
}

.contact-section button {
  display: block;
  width: 100%;
  background: #2a6df9;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background .3s, box-shadow .3s;
}

.contact-section button:hover {
  background: #1e52c1;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

/* Neuer moderner Hero-Header */
.hero-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background-color: #f0f4ff;
  gap: 30px;
  text-align: left;
}

.hero-text {
  flex: 1 1 300px;
  max-width: 500px;
}

.hero-overlay {
  background: rgba(255, 255, 255, 0.85); /* Weiß mit leichter Transparenz */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.hero-image {
  flex: 1 1 300px;
  max-width: 500px;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .hero-header {
    flex-direction: column;
    text-align: center;
    padding: 30px 10px;
  }

  .hero-text h1 {
    font-size: 1.6rem;
  }

  .hero-text p {
    font-size: 1rem;
  }
}
