/*
 *
 *
 */

@font-face {
  font-family: ProstoOne;
  font-display: swap;
  src: url(ProstoOne-Regular.ttf);
}

body {
  font-family: ProstoOne;
  height: 100%;
  margin: 0;
  /* padding-top: 75px; */ 
}

.ls-blue {
	background-color: rgb(43, 46, 135);
}

.ls-textBlue, h1, h2, h3, h4 {
	color: rgb(43, 46, 135) !important;
}

.ls-darkBlue {
	background-color: rgb(37, 39, 85);
}

.ls-textDarkBlue {
	color: rgb(37, 39, 85) !important;
}

.ls-border {
	border: 2px solid rgb(43, 46, 135) !important;
}

.toppadding {
  padding-top: 110px;
}

.mainContent {
	padding-top: 80px;
	padding-bottom: 80px;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animated-down {
  animation: slideDown 1.5s ease-out;
}
.animated-up {
    animation: slideUp 1.5s ease-out;
}
.animated-fadein {
    animation: fadeIn 2s ;
}

.round-bottom {
  border-bottom-left-radius: 30%;
  border-bottom-right-radius: 30%;
}

.round-top {
  border-top-left-radius: 30%;
  border-top-right-radius: 30%;
}

.btn-kontakt {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    font-weight: bold;
}

.btn.btn-kontakt:hover {
    background-color: #ffffff !important;
    border-color: rgb(37, 39, 85) !important;
    color: rgb(37, 39, 85) !important;
}

@media (min-width: 992px) {
  .right-col {
    border-left: 3px solid rgb(37, 39, 85);
  }
  
  .btn-kontakt {
      padding: 0.25rem 0.5rem;
      font-size: 0.875rem;
  }
}

/* landing... */

/* Hero Section */
.hero {
   /* padding: 100px 0px; */
    padding-top: 150px; 
    padding-bottom: 75px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    text-align: center;
    background-image: url("/ressources/ruegenbruecke.webp");
    background-repeat:no-repeat;
    background-position: center center;
}

.hero-back {
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.478);
    padding: 15px;
    box-shadow: 5px 10px 50px grey;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    transition: background 0.3s;
}

.btn-primary:hover {
    background-color: #003d7a;
}

/* Services Section */
.services {
    padding: 150px 20px;
    margin: 0 auto;
}

.services-grid {
    margin-top: 50px;
}

.service-card {
    overflow-wrap: break-word;
    background: #ffffff; /* Reinweiß für den Kontrast */
    padding: 2rem; /* Etwas mehr Innenabstand */
    border-radius: 12px; /* Weichere Ecken */
    
    /* Ein sehr weicher, diffuser Schatten, der die Karte abhebt */
    box-shadow: 0 10px 30px rgba(37, 39, 85, 0.1); 
    
    /* Der farbige Akzent oben - wir nutzen das dunkle Blau */
    border-top: 5px solid rgb(37, 39, 85); 
    border-left: 1px solid rgb(37, 39, 85);
    border-right: 1px solid rgb(37, 39, 85);
    border-bottom: 1px solid rgb(37, 39, 85);
    
    /* Sanfter Übergang für den Hover-Effekt */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
    /* Wichtig für die gleichmäßige Höhe (aus dem vorherigen Schritt) */
    display: flex;
    flex-direction: column;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-8px); /* Die Karte hebt sich leicht an */
    
    /* Der Schatten wird dunkler und diffuser */
    box-shadow: 0 15px 40px rgba(37, 39, 85, 0.2); 
    
    /* Optional: Der obere Rand wird etwas heller beim Hover */
    border-top-color: rgb(43, 46, 135);
}

.service-card h3 {
    color: rgb(37, 39, 85); /* Dunkelblau */
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}
.service-card p {
    color: #555; /* Ein dunkles Grau für bessere Lesbarkeit */
    font-size: 1rem;
    line-height: 1.6;
}

/* Trust Section */
.trust-section {
    background-color: var(--bs-gray-200);
    padding: 80px 20px;
	max-width: 1500px;
	border-radius:30px;
	 margin: 0 auto;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}
.container-services {
    max-width: 1500px;
    margin: 0 auto;
}

.trust-grid {
    gap: 40px;
    margin-top: 30px;
}

.trust-item h4 {
    margin-bottom: 10px;
    color: var(--primary-blue);
}

/* CTA Section */
.cta-bottom {
    padding: 80px 20px;
    text-align: center;
}

.btn-secondary {
    color: var(--primary-blue);
    text-decoration: underline;
    margin-left: 20px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 1.8rem; }
}

