body, h1, h2, h3, h4, h5, h6 {
  font-family: "Lato", sans-serif;
}

body, html {
  height: 100%;
  color: #777;
  line-height: 1.8;
}

.bgimg-1, .bgimg-2, .bgimg-3 {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bgimg-1 {
  background-image: url("/images/229A4165.jpg");
  min-height: 100%;
}

.bgimg-2 {
  background-image: url("/images/229A0628.jpg");
  min-height: 600px;
}

.bgimg-3 {
  background-image: url("/images/229A5064.jpeg");
  min-height: 600px;
}

/* Portfolio Section */
.portfolio-section {
  text-align: center;
  padding: 64px 0;
}

.portfolio-section h3 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.portfolio-section p {
  color: #777;
  font-style: italic;
  margin-bottom: 40px;
}

.portfolio-image {
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 4px;
  cursor: pointer;
}

.portfolio-image:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.portfolio-load-button {
  margin-top: 40px;
  border: none;
  background: #f1f1f1;
  cursor: pointer;
}

.portfolio-load-button:hover {
  background: #ccc;
}

.service-card {
  border: 1px solid #ddd;
  padding: 20px;
}

.price {
  font-size: 1.5rem;
  margin: 10px 0;
}

@media only screen and (max-device-width: 1600px) {
  .bgimg-1, .bgimg-2, .bgimg-3 {
    background-attachment: scroll;
    min-height: 300px;
  }
}

:root { --nav-h: 64px; }        /* Höhe der Leiste */
html,body { margin:0; }         /* sonst gibt es links/rechts/oben Lücken */

.w3-top{ 
  position: fixed; 
  top: 0; left: 0; right: 0; 
  z-index: 1000;
}

#myNavbar{
  width:100%;
  background:#777;              /* Farbe = durchgehender Streifen */
  color:#fff;
  display:flex;
  align-items:center;
  gap:8px;
  box-shadow: 0 2px 10px rgba(0,0,0,.2); /* optional: Schatten */
}

#myNavbar .w3-bar-item{ 
  color:#fff !important; 
  padding:14px 20px; 
}

#myNavbar .w3-bar-item:hover{
  background:rgba(255,255,255,.08);
}

/* Abstand oben für den Seiteninhalt */
.nav-spacer{ height: var(--nav-h); }

/* Mobile: Items untereinander und klickbar über ganze Breite */
@media (max-width: 768px){
  #myNavbar{ flex-wrap: wrap; }
  #myNavbar .w3-bar-item{ flex: 1 1 100%; text-align:left; }
}

