@charset "UTF-8";

/*############################################################################*/
/* inter-100 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  src: url('../font/inter-v20-latin-100.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-200 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  src: url('../font/inter-v20-latin-200.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-300 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  src: url('../font/inter-v20-latin-300.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../font/inter-v20-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-500 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('../font/inter-v20-latin-500.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-600 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('../font/inter-v20-latin-600.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('../font/inter-v20-latin-700.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-800 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  src: url('../font/inter-v20-latin-800.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-900 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  src: url('../font/inter-v20-latin-900.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


*,
*::before,
*::after {
  box-sizing: border-box;
  scroll-behavior: smooth;
  text-decoration: none;
}

html {
  overflow-x: hidden;
  scroll-padding-top: 8rem;
}

body {
  font-family: "Inter";
  margin: 0;
  padding: 0;
  background: var(--hintergrund);
  color: var(--text);
}

img,
video {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

h2 {
  font-size: 2.3rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.3rem;
}

h6 {
  font-size: 1.15rem;
}

p {
  font-size: 1rem;
  line-height: 1.7;
}

li {
  list-style: none;
}

a {
  color: var(--text);
}


/*############################################################################*/
/* Farben */
/*############################################################################*/
:root {
  --hintergrund: rgb(25, 25, 25, 1.0);
  --zweite_hintergrund: rgba(16, 16, 16, 1.0);
  --dritte_hintergrund: rgba(0, 0, 0, 0.3);
  --text: rgba(229, 229, 229, 1.0);
  --main: rgba(51, 51, 51, 1.0);
  --dark_slate_gray: rgba(76, 76, 76, 1.0);
  --dim_gray: rgba(102, 102, 102, 1.0);
  --medium_gray: rgba(127, 127, 127, 1.0);
  --silver_gray: rgba(153, 153, 153, 1.0);
  --light_silver: rgba(178, 178, 178, 1.0);
  --light_gray: rgba(204, 204, 204, 1.0);
}

/*############################################################################*/
/* Header Angaben */
/*############################################################################*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 3rem 0;
  background: var(--dritte_hintergrund);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  cursor: pointer;
  transition: 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: 2.5rem;
  width: auto;
  display: block;
}

.logo:hover {
  transform: scale(1.1);
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: var(--light_gray);
}

.navbar a {
  display: inline-block;
  font-size: calc(1.3rem - 0.1vw);
  font-weight: 500;
  margin-left: 2rem;
  transition: 0.3s ease-in-out;
  border-bottom: 3px solid transparent;
}

.navbar a:hover,
.sidebar a:hover {
  transform: scale(1.15);
  border-bottom: 3px solid var(--light_gray);
}

/*
.gradient_btn {
  font-size: calc(1.3rem - 0.1vw);
  font-weight: 500;
  padding: 1rem 2rem;
  border-radius: 3rem;
  background: linear-gradient(270deg,
      rgba(51, 51, 51, 1.0) 10%,
      rgba(51, 51, 51, 1.0) 100%);
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  color: var(--text);
  border: none;
  text-wrap: nowrap;
}

.gradient_btn:hover {
  transform: scale(1.05);
}
.gradient_btn_resposive {
  display: none;
}
*/


/*############################################################################*/
/* Popup Angaben */
/*############################################################################*/
/*
.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.popup.show {
  display: flex;
}

.popup_content {
  background: var(--zweite_hintergrund);
  padding: 1rem;
  border-radius: 2rem;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border: 2px solid var(--main);
  position: relative;
}

.popup_close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--light_gray);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
}

.popup_close:hover {
  color: var(--text);
  transform: scale(1.2) rotate(90deg);
}

.popup_content h3 {
  margin-bottom: 1rem;
}

.popup_content p {
  margin-bottom: 1.5rem;
}

.popup_content form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form .input_box input,
form .input_group2 input,
form textarea {
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 2rem;
  border: none;
  background: var(--dritte_hintergrund);
  color: var(--text);
  border-bottom: 1px solid var(--main);
  margin-bottom: 2.5rem;
  margin-top: 0.5rem;
  resize: none;
}

form .input_box input:hover,
form .input_group2 input:hover,
form textarea:hover {
  background: var(--dark_slate_gray);
  color: var(--text);
}

form .input_group2 input:nth-of-type(2) {
  width: 50%;
  align-items: flex-end;
  cursor: pointer;
  border: 2px solid var(--main);
}

form .input_group2 button {
  font-size: 1rem;
}
*/

/*############################################################################*/
/* Section Home Angaben */
/*############################################################################*/
section {
  min-height: 100vh;
  padding: 6rem 0;
}

section#home {
  padding-top: 12rem !important;
}

.home .container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  gap: 1rem;
}

.home_content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

span {
  color: var(--dim_gray);
}


.home .home_img {
  flex: 1;
  display: flex;
  justify-content: end;
}

.home_img div {
  background: url(../img/IMG_3363.jpeg) no-repeat;
  background-position: center top;
  background-size: cover;
  width: 35vw;
  height: 55vh;
  border-radius: 10% 25%;
  box-shadow: 0 0 25px var(--main);
  transition: 0.4s ease-in-out;
}

.btn_group {
  display: flex;
  gap: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 1rem 3rem;
  background: var(--main);
  border-radius: 3rem;
  color: var(--text);
  border: 2px solid transparent;
  font-weight: 600;
  transition: 0.3s ease-in-out;
  width: 250px;
  text-align: center;
}

.btn:hover {
  transform: scale(1.05);
}

.btn_group a:nth-of-type(2) {
  background: var(--hintergrund);
  border: 2px solid var(--main);
}

.btn_group a:nth-of-type(2):hover {
  background: var(--main);
}


/*############################################################################*/
/* Section Kompetenzen Angaben */
/*############################################################################*/
section.kompetenzen {
  background: var(--zweite_hintergrund);
}

.heading {
  text-align: center;
  margin-bottom: 5rem;
  color: var(--text);
}

.kompetenzen_container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.kompetenzen_box {
  display: flex;
  justify-content: center;
  align-items: baseline;
  background: var(--main);
  min-height: 510px;
  border-radius: 2rem;
  cursor: pointer;
  border: 5px solid transparent;
  transition: 0.4s ease-in-out;
}

.kompetenzen_box:hover {
  transform: scale(1.03);
}

.kompetenzen_icon {
  display: block;
  margin: 0 auto;
  text-align: center;
}

.kompetenzen_icon img {
  width: 100px;
}

.kompetenzen_info {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 1rem;
}

.kompetenzen_info h3 {
  margin: 2rem 0;
  font-weight: 800;
}


/*############################################################################*/
/* Section Über Mich Angaben */
/*############################################################################*/
.uebermich h2 {
  text-align: center;
}

section.uebermich .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}

section.uebermich .container article:nth-of-type(2) div {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  align-items: baseline;
  background: var(--main);
  height: auto;
  border-radius: 2rem;
  cursor: pointer;
  border: 5px solid transparent;
  transition: 0.4s ease-in-out;
}

section.uebermich .container article:nth-of-type(2) div:hover {
  transform: scale(1.03);
}


section.uebermich .container article:nth-of-type(1) {
  display: flex;
  gap: 5rem;
  align-items: center;
}

section.uebermich .container article:nth-of-type(2) {
  display: flex;
  gap: 5rem;
}

.uebermich_img div {
  background: url(../img/IMG_3364.jpeg);
  width: 32vw;
  border-radius: 10% 25%;
  box-shadow: 0 0 25px var(--main);
  transition: 0.4s ease-in-out;
  background-size: cover;
  width: 25vw;
  height: 45vh;
}

.uebermich_content {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
}

.uebermich_content p {
  padding-right: 8rem;
}

.uebermich_content .btn {
  margin-top: 1rem;
}

::-webkit-scrollbar {
  width: 20px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--main);
}

::-webkit-scrollbar-track {
  background-color: var(--hintergrund);
}

/*############################################################################*/
/* Section Projekte Angaben */
/*############################################################################*/
section#projekte {
  background: var(--zweite_hintergrund);
}

#projekte h6 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text);
}

/* Geräte-Container */
.device-container {
  position: relative;
  perspective: 1000px;
  transition: all 0.5s ease;
  max-width: 1200px;
  margin: 0 auto;
  width: 1200px;
}

/* Monitor-Gehäuse */
.monitor {
  position: relative;
  width: 100%;
  height: auto;
  background: #1e1e1e;
  border-radius: 15px 15px 0 0;
  padding: 20px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid #333;
}

/* Monitor-Rahmen */
.monitor-frame {
  background: #111;
  border-radius: 10px;
  padding: 15px;
  box-shadow:
    inset 0 0 20px rgba(0, 0, 0, 0.8),
    0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Monitor-Fuß */
.monitor-stand {
  position: relative;
  width: 100%;
  height: 12vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stand-neck {
  width: 120px;
  height: 60px;
  background: linear-gradient(to bottom, #2c2c2c, #1a1a1a);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.stand-base {
  width: 300px;
  height: 20px;
  background: linear-gradient(to bottom, #333, #222);
  border-radius: 10px 10px 20px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
  margin-top: 10px;
}

.stand-foot {
  width: 350px;
  height: 15px;
  background: #111;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  margin-top: 5px;
}

/* ===== TABLET ===== */
.tablet-container {
  width: 600px;
  display: none;
}

.tablet {
  position: relative;
  width: 100%;
  background: #1a1a1a;
  border-radius: 25px;
  padding: 25px;
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid #333;
}

.tablet-frame {
  background: #111;
  border-radius: 15px;
  padding: 15px;
  box-shadow:
    inset 0 0 20px rgba(0, 0, 0, 0.8),
    0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Tablet-Kamera */
.tablet-camera {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #222;
  border-radius: 50%;
  border: 1px solid #333;
}

/* Tablet-Tasten */
.tablet-buttons {
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tablet-button {
  width: 5px;
  height: 40px;
  background: #333;
  border-radius: 0 3px 3px 0;
}

/* ===== HANDY (Mobile) ===== */
.phone-container {
  width: 320px;
  display: none;
}

.phone {
  position: relative;
  width: 100%;
  background: #1a1a1a;
  border-radius: 35px;
  padding: 20px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid #333;
}

.phone-frame {
  background: #111;
  border-radius: 25px;
  padding: 15px;
  box-shadow:
    inset 0 0 20px rgba(0, 0, 0, 0.8),
    0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Handy-Notch (Ausschnitt für Kamera) */
.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 25px;
  background: #111;
  border-radius: 0 0 15px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.phone-speaker {
  width: 40px;
  height: 5px;
  background: #333;
  border-radius: 3px;
}

.phone-camera {
  width: 10px;
  height: 10px;
  background: #222;
  border-radius: 50%;
  border: 1px solid #444;
}

/* Handy-Tasten */
.phone-buttons {
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phone-button {
  width: 4px;
  height: 30px;
  background: #333;
  border-radius: 3px 0 0 3px;
}

/* Gemeinsame Stile für alle Geräte */
.screen {
  width: 100%;
  background: #000;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  box-shadow:
    inset 0 0 30px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* Monitor-Bildschirm */
.monitor .screen {
  height: 500px;
}

/* Tablet-Bildschirm */
.tablet .screen {
  height: 400px;
}

/* Handy-Bildschirm */
.phone .screen {
  height: 450px;
}

/* Bildschirm-Glas-Effekt */
.screen:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0.05) 30%,
      transparent 100%);
  z-index: 2;
  pointer-events: none;
  border-radius: 5px 5px 0 0;
}

/* Power-LED für Monitor */
.power-led {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 12px;
  height: 12px;
  background: #2ecc71;
  border-radius: 50%;
  box-shadow: 0 0 10px #2ecc71;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }
}

/* Gerät-Logo */
.device-logo {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #666;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

/* Monitor-Logo */
.monitor .device-logo {
  content: "DISPLAY PRO 27\"";
}

/* Tablet-Logo */
.tablet .device-logo {
  content: "TABLET MAX";
}

/* Handy-Logo */
.phone .device-logo {
  content: "PHONE X";
}

/* Bildergalerie im Gerät */
.gallery-container {
  display: flex;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding: 10px;
  gap: 15px;
}

/* Scrollbar im Gerät */
.gallery-container::-webkit-scrollbar {
  height: 8px;
}

.gallery-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

.gallery-container::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #3498db, #2ecc71);
  border-radius: 4px;
}

/* Bild-Elemente */
.image-item {
  flex: 0 0 auto;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
  border: 2px solid transparent;
}

/* Unterschiedliche Bildbreiten je nach Gerät */
.monitor .image-item {
  max-width: 1200px;
}

.tablet .image-item {
  width: 250px;
}

.phone .image-item {
  width: 280px;
}

.image-item.selected {
  border-color: var(--dim_gray);
  box-shadow: 0 0 20px rgba(46, 204, 113, 0.5);
}

.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 12px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.image-item:hover .image-title {
  transform: translateY(0);
}

/* Geräte-Steuerung */
.device-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.control-btn {
  background: linear-gradient(to bottom, #333, #222);
  border: none;
  color: #ddd;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #444;
}

.control-btn:hover {
  background: linear-gradient(to bottom, #444, #333);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

.control-btn:active {
  transform: translateY(0);
}

.preview-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.85);
  padding: 20px;
  transform: translateY(0);
}

.preview-info h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #2ecc71;
}

.preview-info p {
  color: #ccc;
  line-height: 1.5;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/*############################################################################*/
/* Section Kontakt Angaben */
/*############################################################################*/
section.kontakt {
  min-height: auto;
}

section.kontakt h2 {
  text-align: center;
  margin-bottom: 4rem;
}

section.kontakt .container {
  display: flex;
  justify-content: space-between;
}

section.kontakt .container article {
  background: var(--dark_slate_gray);
  border-radius: 3rem;
  box-shadow: 0px 2px 4px 0 var(--light_silver);
  text-align: center;
  padding: 1.5rem;
  width: 30%;
  height: auto;
}

section.kontakt .container article a {
  font-size: 1.15rem;
  text-align: center;
}

section.kontakt .container article a:hover {
  color: var(--main);
  transform: scale(1.1);
}

.social_icons {
  display: flex;
  gap: 1rem;
  justify-content: center;

}

.social_icons a {
  display: inline-flex;
  font-size: 3rem;
  padding: 1rem;
  background: transparent;
  border: 2px solid var(--main);
  border-radius: 50%;
  transition: 0.3s ease-in-out;
}

.social_icons a:hover {
  background: var(--main);
  color: var(--text);
  transform: scale(1.2)translateY(-5px);
}

svg {
  color: var(--light_silver);
}

/*############################################################################*/
/* Footer Angaben */
/*############################################################################*/
footer {
  background: var(--zweite_hintergrund);
  color: var(--light_gray);
  padding: 50px 0;
  font-size: 1.2rem;
}

footer .container {
  display: flex;
  flex-direction: column;
}

footer .container>div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;

}

footer ul {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  text-align: center;
  gap: 1.5rem;
}

footer ul li {
  display: inline-block;
}

footer li a {
  border-bottom: 3px solid transparent;
  transition: 0.3s ease-in-out;
}

footer li a:hover {
  border-bottom: 3px solid var(--light_gray);
}

.rechts {
  display: flex;
  gap: 1.5rem;
}

footer .Copyright {
  text-align: center;
  margin-top: 1.5rem;
}


/*############################################################################*/
/* Responsive Design - Tablet */
/*############################################################################*/
@media only screen and (max-width: 1024px) {

  /* Header */
  header {
    padding: 1.5rem 2rem;
  }

  header .container {
    max-height: 10vh;
  }

  .logo {
    font-size: calc(2rem - 0.5rem);
  }

  .gradient_btn_resposive {
    display: block;
  }

  .gradient_btn_resposive_two {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .navbar {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--dritte_hintergrund);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    backdrop-filter: blur(10px);
  }

  .navbar.active {
    left: 0;
    display: flex;
    padding: 1rem;
  }

  .navbar.active a {
    font-size: 1rem;
    padding: 1rem;
  }

  .navbar a {
    font-size: 0.8rem;
    margin-left: 1rem;
  }

  .gradient_btn {
    font-size: 1rem;
    padding: 0.8rem 1rem;
  }

  /* Home Section */
  section {
    padding: 6rem 2rem;
  }

  section.home,
  section.uebermich,
  section#projekte {
    min-height: auto;
  }

  .home_content h1 {
    font-size: 2.2rem;
  }

  .home_content h3 {
    font-size: 1.3rem;
  }

  .home_content p {
    padding-left: 0;
    font-size: 0.9rem;
  }

  .social_icons a {
    font-size: 2rem;
    padding: 0.8rem;
  }

  .btn_group {
    gap: 1rem;
  }

  .btn {
    padding: 0.5rem 1.5rem;
    font-size: 1.2rem;
    border: 2px solid transparent;
    font-weight: 600;
    transition: 0.3s ease-in-out;
  }

  .home_img div {
    width: 100%;
    height: 30vh;
  }

  /* kompetenzens Section */
  .heading {
    font-size: 2rem;
    margin: 3rem 0;
  }

  .kompetenzen_container {
    gap: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .kompetenzen_box {
    height: 400px;
    width: 350px;
  }

  .kompetenzen_info {
    padding: 2rem;
  }

  .kompetenzen_info h4 {
    font-size: 1.5rem;
    margin: 1rem 0;
  }

  .kompetenzen_info p {
    font-size: 0.9rem;
  }

  /* Über Mich Section */
  section.uebermich .container {
    gap: 2.5rem;
    text-align: center;
  }

  .uebermich_img div {
    width: 30vw;
    height: 30vh;
  }

  .uebermich_content p {
    padding-right: 0;
    font-size: 0.9rem;
  }

  /* Projekte*/
  .monitor-container {
    display: none;
  }

  .tablet-container {
    display: block;
  }

  .phone-container {
    display: none;
  }

  .screen-content {
    height: 100%;
  }

  .tablet .image-item {
    width: 100%;
    align-self: flex-start;
  }

  .image-item img {
    width: 100%;
    object-fit: cover;

  }

  /* Kontakt */
  section.kontakt h2 {
    font-size: 2rem;
  }

  section.kontakt h3 {
    font-size: 1.5rem;
  }


  /* Footer */
  footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  footer .container {
    gap: 2rem;
  }

  footer .container>div {
    flex-direction: column;
    gap: 1rem;
  }

  footer ul {
    justify-content: space-evenly;
    gap: 0;
  }

  footer ul li {
    margin: 0.5rem 0.6rem;
  }

  .rechts {
    justify-content: center;
  }

  .agb_site,
  .daten_site,
  .impres_site {
    padding: 0 2rem;
  }
}


/*############################################################################*/
/* Responsive Design - Mobile */
/*############################################################################*/
@media only screen and (max-width: 768px) {

  /* Header */
  header {
    padding: 1.5rem 1rem;
    min-height: 10vh;
  }

  .logo img {
    height: 1.5rem;
  }

  .gradient_btn {
    font-size: 1rem;
  }

  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .navbar {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--dritte_hintergrund);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    backdrop-filter: blur(10px);
  }

  .navbar.active {
    left: 0;
    display: flex;
    padding: 1rem;
  }

  .navbar.active a {
    font-size: 1rem;
    padding: 1rem;
  }

  /* Popup */
  .popup {
    width: 90%;
  }

  /* Section */
  section {
    min-height: auto;
    padding: 5rem 1rem;
  }

  /* Home Section */
  .home {
    padding-top: 10rem;
  }

  .home .container {
    flex-direction: column;
    gap: 5rem;
  }

  .home_content {
    align-items: center;
    text-align: center;
  }

  .home_content h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .home_content h3 {
    font-size: 1.1rem;
  }

  .home_content p {
    padding-left: 0;
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .home_img div {
    width: 70vw;
    height: 30vh;
  }

  .btn_group {
    gap: 1rem;
  }

  .btn {
    font-size: 1rem;
  }

  /* kompetenzen Section */
  .heading {
    font-size: 2rem;
    margin: 2rem 0;
  }

  .kompetenzen_container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .kompetenzen_box {
    min-height: 300px;
  }

  .kompetenzen_info {
    padding: 1.5rem;
  }

  .kompetenzen_info h3 {
    font-size: 1.5rem;
    margin: 0.8rem 0;
  }

  .kompetenzen_info br {
    display: none;
  }

  .kompetenzen_info p {
    line-height: 1.5;
  }

  .kompetenzen_info svg {
    width: 60px;
  }

  /* Über Mich Section */
  .uebermich,
  .uebermich h2 {
    text-align: center;
  }

  .uebermich .container {
    flex-direction: column-reverse;
  }

  .uebermich_img div {
    width: 70vw;
    height: 30vh;
  }

  .uebermich_content p {
    font-size: 0.85rem;
  }

  .uebermich_content .btn {
    width: auto;
  }

  /* Projekte*/
  .monitor-container {
    display: none;
  }

  .tablet-container {
    display: none;
  }

  .phone-container {
    display: block;
    width: 280px;
  }

  .phone {
    padding: 15px;
    border-radius: 30px;
  }

  .phone-frame {
    padding: 12px;
    border-radius: 20px;
  }

  .phone .screen {
    height: 400px;
  }

  .device-controls {
    gap: 10px;
  }

  .phone .image-item {
    width: 240px;
  }

  .control-btn {
    padding: 8px 15px;
    font-size: 0.8rem;
  }



  /* Kontakt Section */
  .kontakt h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
  }

  .kontakt .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  section.kontakt .container article {
    width: 100%;
  }

  /* Footer */
  footer {
    padding: 2rem 1rem;
    font-size: 1rem;
  }

  footer .container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  footer .container>div {
    flex-direction: column;
  }

  footer ul {
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding-left: 0;
  }

  .rechts {
    gap: 1rem;
    justify-content: center;
  }

  footer ul li {
    display: block;
    margin: 0.6rem 0;
  }

  footer .Copyright {
    font-size: 0.9rem;
    margin-top: 1.4rem;
  }

  .agb_site,
  .daten_site,
  .impres_site {
    padding: 0 1rem;
  }
}


/*############################################################################*/
/* Impressum & Datenschutz Seiten */
/*############################################################################*/
.impressum_main,
.datenschutz_main {
  padding: 12rem 0;
}

.impressum_main h2,
.datenschutz_main h2,
.impressum_main h3,
.datenschutz_main h3 {
  margin-top: 4rem;
  margin-bottom: 1rem;
}

.impressum_main b,
.datenschutz_main b {
  font-size: 1.35rem;
}