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

body {
  font-family: Arial, sans-serif;
  background-color: #1F2933;
  color: white;
}

.hero {
  display: flex;
  height: 100vh;
  width: 100%;
}

.hero-image {
  width: 50%;
  background: url('bilder/hafen2.png') no-repeat center center;
  background-size: cover;
  mask-image: linear-gradient(to right, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 70%, transparent 100%);
}

.hero-content {
  width: 50%;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #1F2933;
}

.hero-logo-wrapper {
  display: flex;
  justify-content: flex-end;
}

.hero-logo {
  width: 120px;
  margin-bottom: 40px;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #3B82F6;
}

.hero p {
  font-size: 1.25rem;
  color: #CBD5E1;
  margin-bottom: 30px;
}

.cta-buttons button {
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  margin-right: 20px;
  cursor: pointer;
}

.cta-primary {
  background-color: #3B82F6;
  color: #fff;
}

.cta-secondary {
  background-color: transparent;
  border: 2px solid #3B82F6;
  color: #3B82F6;
}

.cta-lead {
  background-color: #1F2933;
  padding: 100px 40px;
  text-align: center;
  color: white;
}

.cta-lead-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #3B82F6;
}

.cta-lead-text {
  font-size: 1.2rem;
  color: #CBD5E1;
  margin-bottom: 40px;
}

.cta-lead-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-lead-button {
  background-color: #3B82F6;
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s;
}
.cta-lead-button:hover {
  background-color: #1D4ED8;
}


.section {
  padding: 80px 60px;
  background: linear-gradient(to bottom, #1F2933 0%, #273746 100%);
}

.section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #3B82F6;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background-color: #32404d;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.card h3 {
  color: #3B82F6;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.card p {
  color: #E5E7EB;
  font-size: 1.05rem;
}


@media (max-width: 1024px) {
  .cards, .benefit-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    height: auto;
  }
  .hero-image {
    width: 100%;
    height: 375px;
    background-size: cover;
    background-position: center;
  }
  .hero-logo-wrapper {
    height: 150px;
    width: auto;
  }
  .hero-content {
    width: 100%;
    height: auto;
    padding: 40px 20px;
  }
  .hero- h1 {
    font-size: 1.8rem;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .mini-hero h1 {
    font-size: 1.8rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

.page-wrapper {
  background-color: #111827;
  padding: 80px 20px;
  color: #CBD5E1;
  min-height: 70vh;
}

.content-section {
  max-width: 800px;
  margin: 0 auto;
}

.content-container h1 {
  color: #3B82F6;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.content-container h2 {
  color: #60A5FA;
  margin-top: 40px;
  font-size: 1.5rem;
}

.content-container p,
.content-container li {
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-container ul {
  padding-left: 20px;
  list-style-type: disc;
}

.site-header {
  background-color: #0F172A;
  padding: 10px 24px;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  height: 28px;
}
.desktop-nav {
  display: flex;
  gap: 30px;
}
.desktop-nav a,
.mobile-nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}
.cta-button {
  background-color: #3B82F6;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.hamburger span {
  background: white;
  height: 3px;
  width: 25px;
  margin: 4px 0;
  display: block;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background-color: #1F2933;
  padding: 20px;
}
.mobile-nav a {
  margin: 10px 0;
}

.mini-hero {
  background-color: #1F2933;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.mini-hero h1 {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  color: #3B82F6;
  margin: 0;
}

.site-header nav a {
  position: relative;
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem; /* größer als vorher */
  line-height: 1;
  display: flex;
  align-items: center; /* vertikal zentrieren */
  height: 100%;
  transition: color 0.3s ease;
}

.site-header nav a:hover {
  color: #60A5FA;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #3B82F6;
  transition: width 0.3s ease;
}

.site-header nav a:hover::after {
  width: 100%;
}

.site-header nav a.active {
  color: #3B82F6;
  font-weight: 600;
}

.site-header nav a.active::after {
  width: 100%;
}

.mobile-nav a.active {
  color: #3B82F6;
  font-weight: 600;
  background-color: rgba(59, 130, 246, 0.1);
  border-radius: 6px;
  padding: 8px 12px;
}
.benefits {
  background: linear-gradient(to right, #1F2933, #111827);
  padding: 100px 60px;
  color: white;
}
.benefits-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #3B82F6;
}
.benefits-flex {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.benefits-img-col {
  flex: 1;
  min-width: 300px;
}
.benefits-img {
  width: 100%;
  max-width: 500px;
  height: 650px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.benefits-items {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.benefit-item {
  background-color: #222c36;
  border-radius: 12px;
  padding: 24px;
  color: #E5E7EB;
  box-shadow: 0 4px 15px rgba(0,0,0,0.10);
  border: 1px solid #32404d;
}
.benefit-item h3 {
  color: #60A5FA;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.benefit-item p {
  color: #CBD5E1;
  font-size: 1.1rem;
}


/* Pricing */
.pricing {
  background-color: #1F2933;
  padding: 100px 60px;
}
.pricing-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #3B82F6;
}
.pricing-flex {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.pricing-card {
  background-color: #1F2933;
  border-radius: 20px;
  padding: 50px 40px;
  width: 340px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #3B82F6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 40px;
  position: relative;
}
.pricing-card-popular {
  border: 2px solid #3B82F6;
}
.pricing-badge {
  position: absolute;
  top: -24px;
  background-color: #3B82F6;
  color: white;
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: bold;
}
.pricing-main {
  font-size: 2.2rem;
  color: #3B82F6;
  font-weight: bold;
  margin: 10px 0;
}
.pricing-per-month {
  font-size: 1rem;
  color: #CBD5E1;
}
.pricing-sub {
  color: #CBD5E1;
  font-size: 1rem;
  margin-bottom: 20px;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  color: #E5E7EB;
  font-size: 1rem;
}
.cta-link {
  background-color: #3B82F6;
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background 0.2s;
}
.cta-link:hover {
  background-color: #1D4ED8;
}

/* Testimonial */
.testimonial {
  background-color: #111827;
  padding: 100px 40px;
  color: white;
  text-align: center;
}
.testimonial-title {
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #3B82F6;
}

.testimonial blockquote {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

.testimonial .testimonial-author,
.testimonial p {
  margin-top: 20px;
  font-weight: bold;
  color: #60A5FA;
  font-size: 1rem;
}



@media (max-width: 600px) {
  .blog-image {
    max-width: 98%;
    margin: 16px auto 24px auto;
    border-radius: 12px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}


.pricing div[style*="flex-direction: column"]:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3) !important;
}


}

/* --- NEUE STILE (vorher inline) --- */

noscript img {
  border: 0;
}

footer {
  background: linear-gradient(to right, #3B82F6, #1D4ED8);
  padding: 60px 40px;
  color: white;
}

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

.footer-column {
  flex: 1;
  min-width: 200px;
  text-align: center;
  margin-top: 20px; /* Gilt für die mittleren und rechten Spalten */
}

/* Verhindert, dass die erste Spalte auf Mobilgeräten einen oberen Abstand hat */
.footer-column:first-child {
  margin-top: 0;
}


.footer-logo {
  max-height: 80px;
  margin-bottom: 10px;
}

.footer-brand {
  font-size: 1.1rem;
  font-weight: 500;
}

.footer-subtitle {
  font-size: 0.9rem;
  color: #DBEAFE;
}

.footer-legal-links {
  margin-bottom: 20px;
}

.footer-legal-links a {
  color: white;
  margin: 0 10px;
  text-decoration: underline;
}

.footer-social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.footer-social-icons a {
  color: white;
}

.footer-social-icons svg {
  height: 32px;
}

.footer-contact p {
  margin: 0;
}

.footer-contact a {
  color: #FCA5A5;
  text-decoration: none;
}
