 
    /* Inter Fonts */
    @font-face {
        font-family: 'Inter';
        src: url('storage/fonts/Inter/static/Inter_18pt-Regular.ttf') format('truetype');
        font-weight: 400;
        font-style: normal;
    }
    @font-face {
        font-family: 'Inter';
        src: url('storage/fonts/Inter/static/Inter_18pt-Bold.ttf') format('truetype');
        font-weight: 700;
        font-style: normal;
    }
    @font-face {
        font-family: 'Inter';
        src: url('storage/fonts/Inter/static/Inter_18pt-Italic.ttf') format('truetype');
        font-weight: 400;
        font-style: italic;
    }

    :root{
      --accent:#69c350;
      --dark:#555555;
      --muted:#e4e4e4;
      --card:#ffffff;
      --bg:#f7fbfb;
      font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    }

    *{box-sizing:border-box}
    body{background-color:var(--muted); margin:0;color:var(--dark);line-height:1.5;font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;}
    .container{max-width:1100px;margin:0 auto;padding:32px}

    /* Header */
    header{display:flex;align-items:center;justify-content:space-between;padding:18px 0}
    .brand{display:flex;gap:14px;align-items:center}
    .logo{width:300px;height:300px;border-radius:12px;display:flex;align-items:center;justify-content:center;color:white;font-weight:700}
    .logo img{width:100%;height:100%;object-fit:contain;}
    nav ul{display:flex;gap:18px;list-style:none;margin:0;padding:0}
    nav a{color:var(--dark);text-decoration:none;font-weight:600}

    /* Hero */
    .hero-content {display:flex;flex-direction:column;gap:18px;}
    .eyebrow{display:inline-block;background:rgba(14,165,164,0.12);color:var(--accent);padding:6px 10px;border-radius:999px;font-weight:700;font-size:13px}
    h1{font-size:34px;margin:12px 0 8px}
    .lead{color:var(--dark);margin-bottom:18px}
    .btn{padding:12px 18px;border-radius:10px;border:0;font-weight:700;cursor:pointer}
    .btn-primary{background:var(--accent);color:white}
    .btn-ghost{background:transparent;border:2px solid rgba(15,23,42,0.06)}

    /* Cards */
    .card{background:var(--card);border-radius:14px;box-shadow:0 6px 20px rgba(15,23,42,0.06);padding:18px}
    .spec{display:flex;gap:14px;align-items:center}
    .spec svg{width:44px;height:44px}

    /* Hero-Row */
    .hero-row{display:flex;gap:12px;align-items:flex-start;margin-top:18px}
    .hero-specs{display:flex;flex-direction:column;gap:12px;flex:2}
    .hero-form{flex:1}

    /* Services */
    .services{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:28px;  margin-bottom:50px;}
    .service{padding:18px;border-radius:12px;background:linear-gradient(180deg,#ffffff,#fbffff);border:1px solid rgba(15,23,42,0.03)}
    .service h3{margin:8px 0 6px}
    .service p{color:var(--dark);font-size:14px}

.description{margin-top:20px;}

    /* Projects */
    .projects{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:22px; margin-bottom:50px;}
    .project{border-radius:10px;overflow:hidden;padding:14px}
    .project .thumb{height:140px;display:flex;align-items:center;justify-content:center;border-radius:8px;font-weight:700;color:var(--muted)}

    .project .thumb {
      height: 140px;
      border-radius: 12px;
      overflow: hidden;
      position: relative;
    }

    .project .thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .project .thumb .label {
      position: absolute;
      bottom: 10px;
      left: 12px;
      font-weight: 700;
      color: white;
      text-shadow: 0 2px 4px rgba(0,0,0,0.45);
    }
    

    /* Styling für die Projekte */
.projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
  margin-bottom: 50px;
}

.project-item {
  border-radius: 10px;
  overflow: hidden;
  padding: 14px;
  cursor: pointer;
}

.project-item .thumb {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 700;
  color: var(--muted);
}

.project-item .thumb {
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.project-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-item .thumb .label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45);
}

/* Modal Styling */
.modal-overlay {
  display: none; /* Modal initially hidden */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
  overflow: auto; /* Enable scrolling if the content is too tall */
}

.modal-container {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 1000px;
  max-height: 90%;
  overflow-y: auto; /* Allow vertical scrolling if content exceeds max-height */
  position: relative;
}

.close-modal {
  color: #aaa;
  font-size: 32px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Styling for images in the modal */
.modal-image {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* Galerie */
.modal-gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}



.gallery-main {
  display: flex;
  justify-content: center;   /* horizontal zentrieren */
  align-items: center;       /* vertikal (falls Höhe gesetzt) */
}

.gallery-main img {
  max-width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
}

/* Thumbnails */
.gallery-thumbs {
  display: flex;
  gap: 12px;
}

.gallery-thumbs img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.gallery-thumbs img:hover {
  opacity: 1;
}

.gallery-thumbs img.active {
  opacity: 1;
  border-color: var(--accent);
}

.moreinfo {text-align: right;
			color: var(--accent);}

    a { text-decoration: none; }
   

    /* About and Contact */
    .two-col{display:grid;grid-template-columns:1fr 360px;gap:18px;margin-top:22px}
    form label{display:block;font-size:14px;margin-top:12px}
    input,textarea,select{width:100%;padding:10px;border-radius:8px;border:1px solid #e6eef0;font-size:14px}
    textarea{min-height:112px}

    footer{margin-top:45px;padding:20px 0;color:var(--dark);font-size:14px;text-align:center}

    /* Responsive */
    @media (max-width:980px){
      .services,.projects{grid-template-columns:repeat(2,1fr)}
      .two-col{grid-template-columns:1fr}
      nav ul{display:none}
      .hero-row{flex-direction:column}
      .hero-specs,.hero-form{width:100%;max-width:420px;margin:0 auto}
    }
    @media (max-width:560px){
      .services,.projects{grid-template-columns:1fr}
      .logo{width:150px;height:150px}
      h1{font-size:26px}
    }
  