/*Style für alle Seiten außer index. Texte linke Spalte werden bei kleinen Seiten im footer angezeigt*/
/*Allgemein*/
* {
  box-sizing: border-box;
}
/*geändert 2026-02-10
body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  margin-left: 15px; /*geändert von 0 2026-02-06
  margin-right: 10px; /*ergänzt 2026-02-06
}*/
/*blauer Hintergrund H2*/
body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.6;              /* bessere Lesbarkeit wichtiger Ranking- & UX-Faktor (Lesbarkeit, Verweildauer)*/
  margin: 0 10px 0 15px;         /* kompakter & übersichtlicher */
  color: #222;                   /* angenehmer Kontrast augenschonender als reines Schwarz*/
  background-color: #fff;        /* saubere Basis verhindert Darstellungsprobleme bei Dark-Mode-Overrides oder eingebetteten Seiten*/
}
/* Überschriften */
h1 {
  /*background-color: #B0E0E6;*/
  font-size: 1.2rem;
}
h2 {
  background-color: #B0E0E6;
  font-size: 1.2rem;
}
/*grauer Hintergrund H3*/
.h3grau{
  background-color: #f1f1f1;
}
/*Schrift fett, als Ersatz für <b>*/
.fett{
  /*text-align: center;*/
  font-weight: bold;
}
/*Hinweis Übersetzung fr+es Top der mainbereiches*/
.schriftRot{
  color: red;
}

/********************** Header/logo/Title */
    .header {
      z-index: 1; /*neu für atex damit Head im Vordergrund und nicht grid beim scrollen*/
      /* position: -webkit-fixed; /*Neu* später angeblihc gibt es nicht/
        position: sticky;/*neu*/
        top: 0;/*neu*/
        padding: 0px;/*Geänd von 20*/
        /*height: 180px;neu nicht  übernommen*/
        text-align: center;
      /*background: #1abc9c;*//*entfernt*/
      color: white;
      background-image: url("bilder/welle.jpg");/*neu*/
      background-size: contain; /* neu hinzugefügt damit Hintergrundbild responsive, kann event wieder weg*/
    }
  /* Header Festlegung Schrift */
    .headerH1 {
      font-size: 25px; /*geändert*/
      color: white; text-shadow: 2px 2px 2px black, 0 0 25px blue, 0 0 5px darkblue; /*neu*/
    }
    .headerH2 {
      font-size: 18px;
      color: white; text-shadow: 2px 2px 2px black, 0 0 25px blue, 0 0 5px darkblue;
      }
  /*Position Logo im head*/
    .imlogo {
        /*position:relative;*/
        float: left;
        right: 4px;
        top: 4px;
    }
/*Such Button imm head*/
    .search-box {
      float: right;
    }
    .search-container {
      float: right;
    }
    #result {
      margin-top:1px;  
      display: none;
        background-color: white;
        text-align: left;
      }
/*Ende Such Button im head*/

  /***** Grundlegendes Navbar-Styling */
    .navbar {
      background-color: #333;
      opacity: 0.7;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      margin: 5px;
    }
    .navbar a.active {
      background-color: #717070;
      color: white;
      border: lightgray 3px solid;
      box-shadow: inset 2px 2px 5px rgba(238, 237, 237, 0.2); /* Neu Innere Schattierung */
    transform: translateY(4px); /* Neu Leichte Verschiebung nach unten */
    }
    .navbar a, .dropbtn {
      background-color:black;
      color: white;
      text-align: center;
      padding: 14px 16px;
      text-decoration: none;
    }
    .navbar a:hover, .dropdown:hover .dropbtn {
      background-color: #ddd;
      color: black;
    }
    /* Dropdown-Container auf die rechte Seite ausrichten */
    .dropdown {
      margin-left: auto;
      position: relative;
    }    
    /* Dropdown-Inhalt (standardmäßig versteckt) */
    .dropdown-content {
      display: none;
      position: absolute;
      background-color: #333;
      min-width: 160px;
      box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
      z-index: 1000;
      left: 0;  /*Ausrichten des dropdownmenü links am Menüpunkt*/
      top: 100%;
    }
    /* Dropdown-Links */
    .dropdown-content a {
      color: white;
      padding: 12px 16px;
      text-decoration: none;
      display: block;
      text-align: left;
    }
    .dropdown-content a:hover {
      background-color: #ddd;
      color: black;
    }
    /* Anzeige des Dropdown-Inhalts beim Hover */
    .dropdown:hover .dropdown-content {
      display: block;
    }
    /* Styling für den Pfeil */
    .arrow.down {
      border: solid white;
      border-width: 0 3px 3px 0;
      display: inline-block;
      padding: 3px;
      margin-left: 5px;
      transform: rotate(45deg);
    }
    /*Menübutton links*/
      /* Dropdown-Container direkt an den vorherigen Menüpunkt anhängen */
      .dropdownLi {
        display: inline-block; /* Stellt sicher, dass das Dropdown inline mit dem vorherigen Element ist */
        position: relative; /* Ermöglicht die Positionierung des Dropdown-Inhalts relativ zu diesem Container */
        margin-left: 0; /* Entfernt unnötige Abstände, um das Anhängen zu ermöglichen */
      }
      /* Anzeige des Dropdown-Inhalts beim Hover */
      .dropdownLi:hover .dropdown-content {
        display: block;
      }
    /*Ende Menübutton links*/
    /*Ende navbar*/

/**************Spalten container */
    .row{
  display:flex;
  flex-wrap:nowrap;     /* GANZ WICHTIG */
  width:100%;
}

.side{
  width:3000px;          /* feste linke Spalte */
  min-width:300px;
  max-width:300px;
  padding:20px;
}

.main{
  flex:1;               /* Restbreite */
  min-width:0;
  padding:20px;
}

    /*Überschrift Seite ähnlich h2 */
    .eigenH2 { 
      background-color: #B0E0E6;
      display: block;
      font-size: 1.5em;
      margin-top: 0.83em;
      margin-bottom: 0.83em;
      margin-left: 0;
      margin-right: 0;
      font-weight: bold;
}
    
   
    /*******************/
/* ****************linke Spalte*/
      .liefLogo {
        width: 300px; /*alt 100%*/
       /* height: 60px; */
      }
    /* Gelber Block Anfrage Logo-Veröffentlichung */
      .anfrageVerLogo {
        background-color: rgb(254, 250, 6);
        /*padding: 20px;*/
        height: 120px;
      }
      /*neu*/
      .anfrageVerLogo a {
        text-decoration: none;
        color:black
      }
      /*neu*/
      .anfrageVerLogo a:hover {
        background-color:  #ddd;
          color: black;
          font-size: 17px;
      }
    /*Ende gelber Blocj*/
    /*links zu Lieferanten*/          
           .lieferant ul li a{
            text-decoration: none;
            color:black; 
          }
          .lieferant a.active {
            background-color: rgb(121, 120, 120);
            color: white;
          }
          /*neu*/
          .lieferant a:hover {
            background-color: #ddd;
            color: black;
          }
    /*Ende links zu Lieferanten*/
/****************Ende linke Spalte*/

/*************** Main Spalte*/
    .imgleft{
      /* background-color: #aaa;*/
      width: 33%;
      padding:  1px;
      float: left;
      box-sizing: border-box;
    }
    .clear{
      clear: both;
      /*background-color: rgb(10, 10, 10);*/
      height: 40px;
      margin: 15px;
    }
    /*Seite genauigkeit*/
   .imgcenter{
      max-width: 100%;
      height: 250px;         /*alt auto 2026-02-26*/
      padding:  1px;
      box-sizing: border-box;
    }
/*Bild wird bei mouse over vergrößert*/
.imgcenterHover{
      max-width: 100%;
      height: auto;  /*alt: auto250px*/
      padding:  1px;
      box-sizing: border-box;
    }
.imgcenterHover {
  transition: transform 0.3s ease;   /* weiche Animation */
  cursor: zoom-in;                   /* Mauszeiger ändern */
}

.imgcenterHover:hover {
  transform: scale(2.8);             /* Vergrößerung 1.8*/
  z-index: 10;
}
/*Ende: Bild wird bei mouse over vergrößert*/

    .zenfet{
      text-align: center;
      font-weight: bold;
    }
    /*Ende Seite genauigkeit*/
    /*Seite Varianten*/
    /* Bildunterschrift*/
      .gallery {
        margin: 30px;
        border: 1px solid #ccc;
        float: left;
        width: 180px;
      }
      .desc {
        padding: 15px;
        text-align: center;
      }
      .gallery:hover {
        border: 1px solid #777;
      }      
      .gallery img {
        width: 100%;
        height: auto;
      }
    /*Ende Seite Varianten*/
    /*Seite index 3 Bilder in main */
    .image-container {
  display: flex;
  justify-content: space-between; /* Abstand zwischen den Bildern */
  gap: 10px; /* optionaler Zwischenraum */
  max-width: 100%;
}

.image-container > div {
  flex: 1; /* alle gleich breit */
}

.image-container img {
  width: 100%;
  height: auto;
  max-height: 200px; /* Höhe begrenzen */
  object-fit: contain;
}
/* Ende index */ 
/*geändert MArkierung*/
 /*Grid bei Messe*/
  .gridcontainer5Sp{
    display:grid;
    grid-template-columns: 80px auto auto auto auto; 
    grid-template-rows: auto auto auto auto auto auto auto auto auto auto auto ;
    max-width: auto; 
    border: black 1px solid;
  }
      /*Überschrift GRID Gitter*/
        .headlineGrid{
          font-weight: bold;
          border: black 1px solid;
          text-align: center;  
          background-color: #B0E0E6;
          max-width:auto;
        }
        .gridHead{
          font-weight:bold;
          border: black 1px solid;
          text-align: center;  
        }
      /*Ende Überschrift*/
      .gridAusr{
        align-items: center;
        border: black 1px solid;
        text-align: center;  
      }
      .gridAusr img /*Bild im Container nicht größer als Container*/
      {
        max-width: 100%;
        /*height: auto;*/
      }
 /*Ende Grid bei Messe*/
 /*Liste Marktplatz*/
.prodHaupt{
  float: left;
  margin: 5px;
  width: 360px;
}
.prodHead {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px; 
  font-weight: bold;
	background-color: #B0E0E6;
	color: #333333; 
	width: 360px;
	border-top: #000000 1px solid; 
	padding-left: 4px;
	padding-right: 4px;
	padding-top: 4px;
	padding-bottom: 4px;
}
.prodText {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px; 
	color: #333333; 
	height: 150px;  /*alt:120*/
	padding-left: 4px;
	padding-bottom: 4px;
  width: 360px;
}
.prodBild{
  height: 170px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
 /*Ende Liste Marktplatz*/
 /***************Ende Main Spalte*/
 /*************** footer Spalte*/
    .footer {
      display:flex;
      justify-content: space-around;
      background: #B0E0E6;
      width: 100%;
    }
    .footboxRes       /*Side-text im fuß nur bei kleinem Bildschirm*/
    {display: none;
    }
    .footbox ul{
      list-style-type: none;
    }
    .footbox ul li a{
      text-decoration: none;
      color:black; 
      list-style-type: none;
    }
    .footbox a.active {
      background-color: rgb(121, 120, 120);
      color: white;
    }
    /*neu*/
    .footbox a:hover {
      background-color: #ddd;
      color: black;
    }
 /*************** Ende footer Spalte*/

/* =====================================================
   1. SMARTPHONE
   bis 600px
   ===================================================== */
@media screen and (max-width: 600px) {

  body{
    margin:0;
  }

  .row{
    flex-direction: column;
  }

  .side{
    display:none;
    padding:0;
  }

  .footboxRes       /*Side-text im fuß nur bei kleinem Bildschirm*/
    {display: block;
    }  

  .main{
    width:100%;
    flex:100%;
    padding:10px;
  }

  .imlogo{
    display:none;
  }

  .headerH2{
    display:none;
  }

  .footer{
    display:block;
  }

  .footboxRes{
    display:block;
  }

  .imgleft{
    float:none;
    width:100%;
  }

  .imgcenter{
    max-width:100%;
    height:auto;
  }

  .image-container{
    flex-direction:column;
  }

  .navbar{
    justify-content:center;
  }

  .navbar a,
  .dropbtn{
    padding:6px 8px;
    font-size:13px;
    border:1px solid lightgray;
    border-radius:8px;
  }




/* =====================================================
   2. TABLET
   601px bis 900px
   ===================================================== */
@media screen and (min-width: 601px) and (max-width: 900px) {

  body{
    margin:0 5px;
  }

  .row{
    flex-direction: column;
  }

  .side{
    display:none;
  }
   
  .footboxRes       /*Side-text im fuß nur bei kleinem Bildschirm*/
    {display: block;
    }  

  .main{
    width:100%;
    flex:100%;
    padding:15px;
  }

  .imlogo{
    display:none;
  }

  .headerH2{
    font-size:16px;
  }

  .footer{
    display:block;
  }

  .footboxRes{
    display:block;
  }

  .image-container{
    flex-direction:row;
    gap:8px;
  }

  .navbar a,
  .dropbtn{
    padding:10px 12px;
    font-size:14px;
  }

}


/* =====================================================
   3. LAPTOP
   901px bis 1200px
   HIER IMMER 2-SPALTIG
   ===================================================== */
@media screen and (min-width: 901px) and (max-width: 1200px) {

  body{
    margin:0 10px;
  }

  .row{
    flex-direction:row;
  }

  .side{
    display:block;
    flex:0 0 25%;
    max-width:25%;
    padding:15px;
    background-color: #f1f1f1;
  }

  .main{
    flex:0 0 75%;
    max-width:75%;
    padding:20px;
  }

  .footer{
    display:flex;
  }

  .footboxRes{
    display:none;
  }

}


/* =====================================================
   4. DESKTOP / GROSSE BILDSCHIRME
   ab 1201px
   ===================================================== */
@media screen and (min-width: 1201px) {

  body{
    margin:0 auto;
    max-width:1600px;
  }

  .row{
    flex-direction:row;
  }

  .side{
    display:block;
    flex:0 0 20%;
    max-width:20%;
    padding:20px;
  }

  .main{
    flex:0 0 80%;
    max-width:80%;
    padding:25px;
  }

  .footer{
    display:flex;
  }

  .footboxRes{
    display:none;
  }

}