   * {
  -webkit-tap-highlight-color: transparent; /* handy touch */
      margin: 0;
      padding: 0;
      box-sizing: border-box;

}
html, body {
  overflow-x: hidden;
}


     :root {
      --bg: #000000;
      --text: #ffff;
      --accent: #ae956e;
      --nav-height: 64px;
      --grey:#1f1f1f;
      --tool:#f57900;
    }

   body {
      font-family: 'Roboto', sans-serif;
      background: var(--bg);
      color:var(--text);
      }

@font-face {
  font-family: 'BebasNeue-Regular';
  src: url('fonts/BebasNeue-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  }

@font-face {
  font-family: 'Roboto';
  src: url('fonts/Roboto.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'lucida';
  src: url('fonts/lucida.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


/* Icon NUR bei echten externen Links */
a[href^="http"]:not(.button-kontakt)
                :not([href*="freundeskreis.online"])
                :not([href^="mailto:"])
                :not([href^="tel:"])
                :not([href*="wa.me"])
                :not([href*="google.com/maps"])
                :after {
  content: url('images/link.webp');
  vertical-align: text-top;
  padding-left: 4px;
}

  /* ---------------- ANFRAGE ---------------- */


.btn:link,
.btn:visited {
    text-decoration: none;
    padding: 5px 20px;
    display: block;
    border-radius:5px;
    border:4px solid white;
    transition: all .2s;
    position: absolute;
    top:13vh;
    right: 15vh;
    font-family: 'BebasNeue-Regular';
    font-size: 30px;
    cursor: pointer;
    
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.btn-white {
    background: var(--tool);
    color: white;
}
.btn-white a:link {
    text-decoration: none;
}

.btn::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .4s;
}

.btn-white::after {
    background-color:var(--tool);
}

.btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}

.btn-animated {
    animation: moveInBottom 5s ease-out;
    animation-fill-mode: backwards;
}

@keyframes moveInBottom {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}  

  /* ---------------- NAVIGATION ---------------- */


nav {
  position: fixed;
  height: var(--nav-height);
  width: 100%;
  background: rgba(34, 33, 34, 0.8);
  display: flex;
  justify-content: center;
  margin: 0 auto;
  gap: 1.8rem;
  padding: 1.2em 1.5rem;
  z-index: 100;
  border-bottom: 1px solid #4f515a;
}

nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  backdrop-filter: blur(6px);
  z-index: -1;
}

nav a {
  font-family: 'BebasNeue-Regular';
  text-decoration: none;
  color: white;
  font-size: 1.6rem;
  position: relative;
  margin-right: 15px;
  transition: transform 0.25s ease, color 0.25s ease;
}

/* Unterstrich */
nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--accent);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}
/* Basiszustand für aktive Links */
.desktop-nav a.active {
  transform: scale(1);
  color: var(--accent);
}

/* Scroll-Effekt */
.desktop-nav.scrolled a.active {
  transform: scale(1.4);
  color: var(--accent);
}

/* Hover – immer stärker */
.desktop-nav a:hover {
  transform: scale(1.4);
  color: var(--accent);
}



 
    /* ---------------- HAMBURGER ---------------- */
.hamburger {
  width: 40px;
  height: 40px;
  display: none; /* wird nur mobil sichtbar */
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 15px;
  z-index: 10001;
  background: none;
  border:none;
}

/* Container für die 3 Linien */
.hamburger-lines {
  width: 26px;        /* etwas breiter für kräftigere Optik */
  height: 20px;       /* mehr Abstand zwischen den Linien */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Die drei Linien */
.hamburger-lines span {
  height: 4px;        /* kräftiger */
  width: 100%;
  background: white;  /* direkt weiß, unabhängig von var(--text) */
  border-radius: 4px; /* leicht rund, aber nicht zu weich */
  transition: transform 0.32s cubic-bezier(.2, 1.4, .4, 1),
              opacity 0.2s ease;
}

/* --- Hamburger Animation --- */
.hamburger.active .hamburger-lines span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .hamburger-lines span:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-lines span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- Mobile Navigation Overlay --- */
.mobile-nav {
   font-family: 'BebasNeue-Regular';
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background:  var(--accent);
  padding: 80px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  transition: right 0.35s cubic-bezier(.2, 1.4, .4, 1);
  z-index: 10000;
}

.mobile-nav a {
  font-size: 1.6rem;
  text-decoration: none;
  color: var(--bg);
}

/* --- Mobile Nav sichtbar --- */
.mobile-nav.open {
  right: 0;
}

/* --- Mobile Breakpoint --- */
@media (max-width: 880px) {
  .desktop-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
    /* ---------------- SECTIONS ---------------- */

    main {
      padding-top: var(--nav-height);
    }
    
  #scrollTopBtn {
  position: fixed;
  bottom: 60px;
  right: 60px;
  top: auto;
  width: 50px;
  height: 50px;
  display: none; /* Anfangs versteckt */
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background:var(--accent);
  color: white;
  border:none;
 box-shadow: 0 0 5px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3); 
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  z-index: 999;
  transition: opacity 0.3s ease;
}
#scrollTopBtn::before { 
display: none;
 }

#scrollTopBtn :hover{
transform: scale(1.25); 
}

section {
  height: auto;
  width: 100%;
  padding: 10vh 0 20vh 0;
  background-image: url("images/mauer.png"), url("images/wall3.png");
  background-size: 30%, 10%;
  background-repeat: no-repeat, repeat;
  background-position: left top, center;
}

    h1, h2, h3 {
       font-family: 'BebasNeue-Regular';
       
   }

     h2 {
       font-size:380%;
       text-align:left;
       text-decoration-line: overline underline;
       padding: 15vh;
       color:var(--accent);
       text-shadow: 2px 2px 2px var(--bg);
 
       }

     h3{
     font-size:280%;
     text-decoration-line: overline underline;
     padding-left:50vh;
     padding-bottom:50px;
     }
  
    p {
      line-height: 1.6;
      text-align:center;
    }

   

 /*-- ---------------- CONTENT ---------------- -- */
 
#home {
width:100%;
height:100%;
background:black;
}

.image-wrapper{
position:absolute;
top:5vh;
left: 0vw;
width:40vw;
z-index:1;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.content {
margin-top:100px;
 }
 
 .banner{
  position:relative; 
   background: var(--accent);
    background-image: url("images/wall3.png");
    background-size: 10%;
    text-align:center; 
    width:100%;
}
  .logo {
      max-width: 380px;
      width:100%;
      height: auto;
      border: 1px solid #d6be98;
    box-shadow: 0px 1px 5px 3px rgba(0,0,0,0.53);
-webkit-box-shadow: 0px 1px 5px 3px rgba(0,0,0,0.53);
-moz-box-shadow: 0px 1px 5px 3px rgba(0,0,0,0.53);
margin-top:3px;
    }
#gruss-start {
  position:relative;
  font-family: 'BebasNeue-Regular', sans-serif;
  font-size: 350%;
  font-weight: bolder;
  color:var(--accent);
  text-align:center;
margin:10px 0px 50px 0px;
z-index:2;
 text-shadow: 2px 2px 2px var(--bg);

}

#home h1 {
  position:relative;
  font-size: 200%;
  color:var(--accent);
  text-align:center;
  /* SICHTBARER Startzustand */
  opacity: 1;
  transform: scale(0.15) rotateY(-120deg);
  filter: blur(10px);
  transform-origin: center center;
  animation: cinematicIn 4.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1s;
z-index:2;
 text-shadow: 2px 2px 2px var(--bg);
margin-top: -50px;
}

@keyframes cinematicIn {
  0% {
    opacity: 0.6;
    transform: scale(0.15) rotateY(-120deg);
    filter: blur(10px);
  }
  40% {
    opacity: 1;
    transform: scale(1.25) rotateY(20deg);
    filter: blur(2px);
  }
  75% {
    transform: scale(0.97) rotateY(-5deg);
    filter: blur(0px);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
    filter: blur(0px);
  }
}
/* ---------------- ABOUT SECTION ---------------- */
#about h2 {
  font-size: 380%;
  text-align: left;
  background-image: url("images/person-icon1.png");
  background-repeat: no-repeat;
  background-size: 20vh;
  background-position: center;
  position: relative;
  z-index: 1;
}

.inhalt {
  background-color: white;
  background-image:
    radial-gradient(rgba(180, 150, 120, 0.10) 1px, transparent 1px),
    repeating-linear-gradient(
      to bottom,
      transparent 0px,
      transparent 30px,
      #d4cfc7 31px,
      #d4cfc7 32px
    );
  background-size: 4px 4px, auto;
  box-shadow: 13px 13px 3px -12px rgba(0, 1, 7, 1);
  font-family: 'lucida';
  width: 60%;
  min-height: 600px;
  margin-left: 10%;
  padding: 40px 40px 60px 40px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  transform: rotate(-4deg);
  position: relative;
  z-index: 2;
}

/* TEXT */
.text {
  position: relative;
  z-index: 100;

}

.text p {
  width:90%;
  margin-top: 12px;
  text-align: left;
  padding: 20px;
  line-height: 1.6;
color:black;
font-size: 120%;
}

/* PORTRAIT */

.portrait {
transform: rotate(12deg);
position:absolute;
  left:95%;
  top:-10vh;
 
}
.portrait img {
  width:30vw;
  height: auto;
  box-shadow: 13px 13px 3px -12px rgba(0, 1, 7, 1);
  z-index: 100;
}
.pin {
position:absolute;
top:-15vh;
left:85%;
width: 100%;
z-index:100;
 }

/* ---------------- LEISTUNGEN SECTION ---------------- */
#leistungen h2 {
       font-size:380%;
       text-align:left;
      background-image: url("images/icon.png");
      background-repeat: no-repeat;
      background-size:15vh;
      background-position:center;
   
}
.card-container {
  display: flex;
  flex-wrap: wrap; /* Make cards wrap on smaller screens */
  gap: 20px;
  justify-content: center;
margin-bottom:50px;
margin-top: 0px;
background: transparent;
}

.card {
  width: 300px;
  height: auto;
  position: relative;
  padding-top: 50px;
  padding:20px;
  font-size: 25px;
  background: var(--grey);
  background-image: url("images/wall2.png");
  border-radius:8px;
  text-align:center;

}

.card img{
position:relative;
width:100%;
  border-radius: 8px;
box-shadow:0 8px 16px 0 rgba(0,0,0,0.6);
}
.card-text {
  margin-top: 10px;
  text-align: left;
  z-index:100;
}
.card-text p {
  font-family: 'BebasNeue-Regular';
  font-size:110%;
  line-height: 1.5;
  color: white;
 text-shadow: 2px 2px 2px var(--bg);
}

.tooltip-icon {
  position: absolute;
  top: 5px;
  right:5px;
  width:4vh;
  cursor: pointer;
  z-index: 5;
}
.tooltip-icon img{
box-shadow:none;
}

.tooltiptext {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: -10px; 
  right: 0px;
  transform: translateY(-100%);
   background: var(--tool);
  color:var(--text);
  padding: 10px;
    border-radius: 8px;
  white-space: nowrap;
  font-size: 20px;
  transition: opacity 0.25s ease;
  z-index: 10;
  width: 290px;
  white-space: normal; /* Zeilenumbruch erlauben */ 
  text-align: left;
}

.tooltip-icon:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* ---------------- REFERENZEN SECTION ---------------- */

#referenzen h2 {
       font-size:380%;
       text-align:left;
       background-image: url("images/icon1.png");
      background-repeat: no-repeat;
      background-size:20vh;
      background-position:center;
   
}
#referenzen h3 {
padding-left: 43vh;
}
 /* ---------------- REFERENZEN LIGHTBOX ---------------- */

.inline-lightbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 10vh;
  padding-bottom: 10vh;
  padding-left: 5vh;
  margin:0 auto;
  background: var(--grey);
  background-image: url("images/wall2.png");
  width:60%;
  margin: 0 auto;
  border-radius: 8px;
  margin-bottom:100px;
 }

.viewer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
padding-top: 10vh;
 }

.viewer img {
  max-width: 80%;
  width:90vh;
  height:auto;
  border-radius: 8px;
box-shadow:0 8px 16px 0 rgba(0,0,0,0.6);

}

.prev-btn,
.next-btn {
  background: rgba(0,0,0,0.5);
  border: none;
  color: var(--text);
  font-size: 32px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 6px;
}

.thumbs {
  display: flex;
  gap: 10px;
  justify-content:center;
  margin-left: -2vw;
}

.thumbs img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
box-shadow:0 8px 16px 0 rgba(0,0,0,0.6);

}

.thumbs img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.thumbs img.active {
  opacity: 1;
  outline: 3px solid #fff;
}
/* --- Tablet (max 900px) --- */
@media (max-width: 1440px){

.viewer {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
margin-top: -10vh;
}

  .viewer img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* wichtig! */
  border-radius: 8px;
}


  .prev-btn,
  .next-btn {
    font-size: 28px;
    padding: 8px 12px;
  }

  .thumbs img {
    width: 100px;
    height: 75px;
  }
}

/* --- Handy quer (max 600px) --- */
@media (max-width: 600px) {
  .inline-lightbox {
    gap: 15px;
  }

.viewer img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* wichtig! */
  border-radius: 8px;
}

  .prev-btn,
  .next-btn {
    font-size: 24px;
    padding: 6px 10px;
    position: static; /* Pfeile rÃƒÂ¼cken nÃƒÂ¤her ans Bild */
  }

 

  .thumbs {
    flex-wrap: wrap;
    gap: 8px;
   }

  .thumbs img {
    width: 90px;
    height: 65px;
  }
}

/* --- Handy hochkant (max 420px) --- */
@media (max-width: 420px) {
  .viewer img {
    max-width: 100%;
    max-height: 40vh;
  }

  .thumbs img {
    width: 75px;
    height: 55px;
  }

  .prev-btn,
  .next-btn {
    font-size: 20px;
    padding: 5px 8px;
  }
}

/* ---------------- KONTAKT SECTION ---------------- */
#kontakt {
padding-bottom:20vh;
}
#kontakt h2 {
       font-size:380%;
       text-align:left;
       background-image: url("images/contact-icon.png");
      background-repeat: no-repeat;
      background-size:15vh;
      background-position:center;
      width:100%;
}

#kontakt ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 40%;
  list-style-type: none;
  margin: 0 auto;
  padding: 0;
}

#kontakt ul li {
  width: 100%; /* wichtig, damit die 80% sich auf die UL beziehen */
}

.button-kontakt {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  gap: 12px;
  height: 100px;
  padding: 20px 20px;
    border-radius: 8px;
box-shadow: 0px 1px 5px 3px rgba(0,0,0,0.53);
-webkit-box-shadow: 0px 1px 5px 3px rgba(0,0,0,0.53);
-moz-box-shadow: 0px 1px 5px 3px rgba(0,0,0,0.53);
 font-size: 20px;
  background-color: var(--grey);
    background-image: url("images/wall2.png");
  color:var(--text);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease-in;
}

.button-kontakt .icon {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-kontakt .icon-handy {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}



.button-kontakt .icon img {
  width: 100%;
  height: auto;
  display: block;
}

.button-kontakt .text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: left;
  width: auto;   /* Beispielwert */
}

.button-kontakt .inner {
  text-align: left;
}

.button-kontakt a:link  {
text-decoration:none;
}
.button-kontakt a:visited  {
text-decoration:none;
}

.button-kontakt:hover {
  background: var(--accent);
  background-image: url("images/wall2.png");
  }



    /* ---------------- FOOTER ---------------- */

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  display: flex;
  justify-content: center;
  background: rgba(34, 33, 34, 0.8);
  color: white;
  z-index: 9999;
  overflow: hidden; /* wichtig */
  gap: 40px;
  border-top: 1px solid #4f515a;
  font-size: 15px;
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  backdrop-filter: blur(6px);
  z-index: -1;
}

footer a {
  color: white;
  display: inline-block; /* wichtig fÃ¼r transform */
  transition: transform 0.2s ease;
}

footer a:hover {
  transform: scale(1.25);
}

    /* ---------------- MODAL OVERLAYS ---------------- */
#overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#overlay::before {
  content: "";
  position: absolute;
  inset: -2px; /* Blur über den Rand hinaus */
  backdrop-filter: blur(6px);
}

#overlay.show {
  opacity: 1;
  pointer-events: auto; /* â† jetzt klickbar */
}

#modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background: #ffffff;
  color: var(--bg);
  padding: 30px 30px 30px 30px;
  max-width: 620px;
  width: 90%;
  border-radius: 10px;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#modal.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

#modal h2 {
background-image: url("images/logo.png");
      background-repeat: no-repeat;
      background-size:30vh;
      background-position:center-top;
text-shadow: 2px 2px 2px var(--bg);
  text-align:center;
 padding-top: 250px;
padding:bottom: 0px;
margin-bottom: -10vh;
color:var(--accent);
}
#modal h3 {
  font-size: 180%;
padding-left: 0vw;
margin-top:50px;
margin-bottom:-20px;
}

#modal p {
 text-align:left;
}

#modal a {
  color:black;
  text-decoration:underline;
  font-weight: bold;
}

/* Modal-Inhalt */
#modal-content {
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
}

#close-modal {
  position: fixed;
  top: 2.5rem;
  right: 3.0rem;
  font-size: 1.5rem;
  cursor: pointer;
  padding:  0px 5px;
  border-radius:50%;
 
 }


    /* ---------------- RESPONSIVE ---------------- */
   @media (max-width:1440px) {
    .image-wrapper{
top:20vh;
left: 0vw;
}
nav{
justify-content:space-evenly;
}
.image-wrapper{
width:85vh;
}
}

   @media (max-width:1280px) {
    .image-wrapper{
top:13vh;
width: 55vw;
}
}

    @media (max-width: 880px) {
.btn:link,
.btn:visited {
    top:2vh;
    right:2vh;
 }
   .content {
    margin-top:-20vh;
    }

    section {
    background-size:40%;
    padding-bottom:50px;
    height: auto;
      }

   .modal-box {
    padding: 1.5rem;
      }



h2 {
    padding: 0px 0px 200px 10px;
}
h3{
     padding:0px 0px 50px 10px;
     font-size:280%; 
     }

.inhalt {
 width: 80%;
 margin-top: 10vh;
 margin-left: 10px;
}
 .portrait {
  left:85%;
  top:-15vh;
 
}
 
.pin {
top:-10vh;
left:60%;
width: 60%;
 }

#referenzen h3 {
padding-left: 1vh;
}

.inline-lightbox {
width:98%
  }
.viewer {
 margin-left:-5vh;
 }

.thumbs {
  margin-left: -5vw;
}

    #kontakt ul {
    width:70%;
  }

   .button-kontakt .text {
  width: 80%;
    left:75%;
}

   }

@media (max-width: 768px) {
.content {
    margin-top:0px;
    }



 .image-wrapper{
top:28vh;
left: 70w;
width:65vh;
}
}
 

 @media (max-width: 480px) {
h2 {
     font-size:220% !important; 
     padding-bottom: 250px;
}
h3{
    font-size:180%; 
     }

section{
background-size:60%,50%;
}

.content {
    margin-top:-50px;
    }

.logo{
  width:80%;
}
.banner{
  background-size: 50%;
}
.image-wrapper{
top:35vh;
width:45vh;
left: -70px;
}

.inhalt {
 width: 90%;
 margin-top: 30vh;
 margin-left: 10px;
 padding: 0px 0px 60px 0px;
}

.text p {
font-size: 100%;
margin-top:30px;
padding:10px;
 line-height: 2.0;
}
.portrait {
  left:30%;
  top:-28vh;
}

.portrait img {
  width:68vw;
margin-top: -20px;
  z-index: 100;
}
.pin {
top:-16vh;
left:0%;
width: 50%;
 }
.card {
  width: 98%;
}
.tooltip-icon {
 width:6vh;
}
   .button-kontakt .text {
  width: 80%;
    left:65%;
}

footer{
margin-left: -20px;
font-size: 14px;
}


  #kontakt ul {
    width:90%;
  }

}

  @media (max-width: 380px) {

.image-wrapper{
top:35vh;
width: 90vw;
left:-15vw;
}

.portrait {
  left:30%;
  top:-30vh;
}

.pin {
top:-25vh;
left:-10%;
 }


   .button-kontakt{
     font-size: 16px;
 }

     .button-kontakt .text {
    left:70%;
    }

   }
