:root {
    --mycolor: #2b2b2b; /* Hauptfarbe dunkelgrau */
    --bs-blue: #2b2b2b;
    --bs-indigo: #444444;
    --bs-purple: #555555;
    --bs-pink: #666666;
    --bs-red: #888888;
    --bs-orange: #999999;
    --bs-yellow: #bbbbbb;
    --bs-green: #777777;
    --bs-teal: #666666;
    --bs-cyan: #aaaaaa;
    --bs-white: #ffffff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #212121;
    --bs-primary: #2b2b2b;
    --bs-secondary: #6c757d;
    --bs-success: #777777;
    --bs-info: #aaaaaa;
    --bs-warning: #cccccc;
    --bs-danger: #999999;
    --bs-light: #f5f5f5;
    --komd-blue: #3a3a3a; /* ersetzt blau durch grau */
}

@font-face {
    font-family: 'ShadowsIntoLightTwo';
    src: url('../fonts/ShadowsIntoLightTwo-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

.body {
    padding-top: 130px;
    background-color: #ffffff;
    color: #2b2b2b;
}

.logo_nav {
    width: 200px;
}

.navbar {
    min-height: 130px;
}

.bg-dark {
    background-color: var(--mycolor) !important;
}

.hero {
    position: relative;
    height: calc(100vh - 130px);
    overflow-x: hidden;
}

header img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hero-title{
    position: absolute;
    top: 70%;
    left: 10%;
    color: white;
    font-size: 2rem;
    margin: 0;
}

.hero-cta {
    position: absolute;
    top: 80%;
    left: 10%;
    margin: 0;
}

.btn-primary {
    background-color: var(--mycolor);
    border-color: var(--mycolor);
    color: white;
    transition: 0.3s;
    border: none;
}

.btn-primary:hover {
    background-color: white;
    border: 2px solid var(--mycolor);
    color: var(--mycolor);
    transform: scale(1.05);
}

h1, h2{
    font-family: 'ShadowsIntoLightTwo', cursive;
}

.portrait-klein {
    max-width: 280px;
    width: 100%;
}

.produkt-img {
    max-width: 220px;
    width: 100%;
    display: block;
    margin: 0 auto;
}

.produkt-img1 {
    max-width: 50px;
    width: 100%;
    display: block;
    margin: 0 auto;
}

a {
    color: #2b2b2b; /* dunkelgrau */
    text-decoration: none;
}

a:hover {
    color: #555555; /* etwas heller beim Hover */
}

.btn-link {
    color: #2b2b2b;
}

.btn-link:hover {
    color: #555555;
}


/* Skills Kreise Anfang */

/* Wrapper */
.skills-wrapper {
    position: relative;
    gap: 40px;
}

/* Verbindungslinie */
.skills-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background-color: var(--komd-blue);
    z-index: 0;
}

/* Kreise */
.skill-circle {
    width: 100px;
    height: 100px;
    background-color: var(--komd-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

/* Hover Effekt */
.skill-circle:hover {
    transform: scale(1.1);
    background-color: #1a1a1a;
}

/* Skills Kreise Ende */


/* Flip card Anfang*/
section .folder{
    background-color: var(--komd-blue) !important;
}

.flip-card{
  perspective: 1000px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  position: relative;
}

.flip-card-inner{
  position: absolute;
  inset: 0;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner{
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back{
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
}

.flip-card-front img,
.flip-card-back img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flip-card-back{
  transform: rotateY(180deg);
}
/* Flip card Ende*/

.progress {
    background-color: #e0e0e0;
    border-radius: 20px;
}

.progress-bar {
    background-color: #2b2b2b !important;
    border-radius: 20px;
}