

.logo {
    width: 200px;
    
}

:root {
    --mycolor: #5B53EF;
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
}


@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: #2E2C2C;
    color: white;
}

h1,
h2 {
    font-family: 'ShadowsIntoLightTwo';
}

.bg-dark {
    background-color: var(--mycolor) !important;
}

/* Navbar Höhe : min height damit es nicht springt*/

.navbar {
    min-height: 130px;
}

.hero {
    position: relative;
    /* Hero Höhe- Bildschirmhöhe minus navbar*/
    height: calc(100vh - 130px);
/*schneidet überstände sauber ab*/
overflow: hidden;
}

header img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* TEXT NACH OBEN INS BILD BRINGEN WICHTIGGGGG KOMMT BEI MATURA!!!*/ 
.hero-title{
    position: absolute;
    top: 70%;
    left: 10%;
    color: white;
    font-size: 2rem;
    margin: 0;
}

.hero-cta{
     position: absolute;
    top: 80%;
    left: 10%;
    color: white;
    font-size: 2rem;
    margin: 0; 
}
.btn{
    color:var(--mycolor);
    font-weight: 500;
    background-color: white;
    border: none;
    }
.btn:hover{
    background-color: var(--mycolor);
    color: white;
}
/***************SKILLS KREISE************/

:root {
    --komd-blue: #2b6cb0;
}

/* 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(--mycolor);

    z-index: 0;
}

/* Kreise */
.skill-circle {

    width: 100px;
    height: 100px;

    background-color: var(--mycolor);

    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: #353188;
}

/***************SKILLS KREISE ENDE************/


.bg-primary{
    background-color: var(--mycolor) !important;
}


.flip-card{
  perspective: 1000px;

  width: 100%;
  max-width: 900px;
  margin: 0 auto;

  aspect-ratio: 130 / 50;   /* Höhe ergibt sich automatisch */
  position: relative;
}

.flip-card-inner{
  position: absolute;
  inset: 0;               /* top/right/bottom/left = 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);
}

.progress-bar{
    background-color: var(--mycolor);
}

footer a{
    color: white;
}

footer :hover{
    color: var(--mycolor);
}