
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');


:root {
    --color-body: #b6cbce;
    --color-heading: #eef3db;
    --color-base: #033f47;
    --color-base2: #022a30;
    --color-brand: #00ed0c;
    --color-brand2: #b6cbce;
    --color-red: #ff0000;
    --sidbar-width: 240px;
    --font-base: "JetBrains Mono";
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-base2);
    color: var(--color-body);
    font-family: var(--font-base), sans-serif;
}

h1,h2,h3,h4,h5,h6 {
    color: var(--color-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: var(--color-body);
    transition: all 0.4s ease;
}

a:hover {
    color: var(--color-brand);
}

img {
    width: 100%;
}

.text-brand {
    color: var(--color-brand);
}

.bg-base {
    background-color: var(--color-base);
}

.full-height {
    min-height: 100vh;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 80px;
    border-bottom: 2px solid rgba(255,255,255, 0.1);
}

.shadow-effect {
    transition: all 0.5s;
}

.shadow-effect:hover {
    box-shadow: -6px 6px 0 0 var(--color-brand);
}

.iconbox {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background-color: var(--color-brand);
    color: var(--color-base);
}

/* NAVBAR */
.navbar {
    background-color: var(--color-base);
}

.navbar .nav-link {
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

.navbar .nav-link:hover {
    color: var(--color-brand);
}

.navbar .nav-link.active {
    color: var(--color-brand);
}

@media (min-width: 992px) {
    .navbar {
        min-height: 100vh;
        right: 0;
        left:auto;
        width: var(--sidbar-width);
        background: linear-gradient(rgba(3, 63, 71, 0.8), rgba(3, 63, 71, 0.8)), url(../images/alps.jpg);
        background-size: cover;
        background-position: center;
        display: block;
        }
    .nav-link {
        font-size: 25px;
    }
    .navbar-brand img {
        border: 8px solid var(--color-brand);
    }

    /* CONTENT WRAPPER*/ 
    #content-wrapper {
        padding-right: var(--sidbar-width);
    }
}

/* BTN */
.btn {
    padding: 12px 28px;
    font-weight: 700;
}

.btn-brand {
    background-color: var(--color-brand);
    border-color: var(--color-brand);
    color: var(--color-base);
}

.btn-brand:hover,
.btn-brand:focus {
    background-color: var(--color-brand2);
    color: var(--color-base);
    border-color: var(--color-brand2);
}

.link-custom {
    font-weight: 700;
    position: relative;
}

.link-custom::after {
    content: "";
    width: 0%;
    height: 2px;
    background-color: var(--color-brand);
    position: absolute;
    left: 0;
    top: 110%;
    transition: all 0.4s;
}

.link-custom:hover::after {
    width: 100%;
}

/* CARD */
.card-custom .card-custom-image {
    overflow: hidden;
}

.card-custom .card-custom-image img {
    transition: all 0.4s ease;
    width: 100%;
    height: 400px; /* Feste Höhe für die Bilder */
    object-fit: fill; /* Bild so skalieren, dass es den Container ausfüllt */
    border-radius: 4px; /* Gleiche Abrundung wie bei den Karten */
}

.card-custom:hover .card-custom-image img {
    transform: scale(1.05);
}

/* CONTACT */
#contact .form-control {
    background-color: var(--color-base);
    border-color: var(--color-base);
    color: var(--color-body);
}

#contact .form-control:focus {
    border-color: var(--color-brand);
    box-shadow: none;
}

#contact .form-control::placeholder {
    color: var(--color-body);
}

#contact input.form-control {
    height: 44px;
}

/* SOCIAL ICONS 
.social-icons {

}
*/
.social-icons {
    display: flex;
    justify-content: center;
    
    
}




.link-confidential {
    font-weight: 700;
    position: relative;
    color: var(--color-body);
    transition: color 0.4s ease;
    cursor: not-allowed; /* Cursor wird zu einem Verbotssymbol */
}

.link-confidential:hover {
    color: var(--color-red); /* Farbe auf Rot ändern beim Hover */
    text-decoration: none; /* Optional: Unterstreichen entfernen, um den nicht klickbaren Charakter zu betonen */
}

.link-confidential::after {
    content: "";
    width: 0%;
    height: 2px;
    background-color: var(--color-red);
    position: absolute;
    left: 0;
    top: 110%;
    transition: width 0.4s ease;
}

.link-confidential:hover::after {
    width: 100%;
}

/* Zusätzlich: Klick-Ereignisse verhindern */
.link-confidential {
    pointer-events: auto; /* Lassen Sie die Mausereignisse zu */
}

.link-confidential:active {
    pointer-events: none; /* Blockiert den Link beim Klicken */
}

.timeline-item {
    position: relative;
    padding-left: 22px; /* Abstand zur Linie */
    margin-bottom: 20px;
}

.timeline-line {
    position: absolute;
    left: 20px; /* Position der Linie */
    top: -10px;
    /*height: 130%;*/
    bottom: -37px;
    width: 4px;
    background-color: white;
    border-radius: 4px;
}

.timeline-content {
    position: relative;
    padding-top: 10px;
    padding-left: 35px;
}

.timeline-point {
    position: absolute;
    left: -10px; /* Zentriert zur Linie */
    top: 50%; /* Vertikale Zentrierung */
    transform: translateY(-50%); /* Exakte Zentrierung der Kugel */
    width: 20px;
    height: 20px;
    background-color: var(--color-brand); /* Grüne Kugel */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-year {
    position: absolute;
    left: 30px; /* Position des Texts relativ zur Kugel */
    top: 50%; /* Vertikale Zentrierung des Texts */
    transform: translateY(-50%); /* Exakte Zentrierung des Texts */
    font-size: 14px;
    color: white;
    white-space: normal; /* Ermöglicht den Umbruch des Textes auf mehrere Zeilen */
    word-wrap: break-word; /* Bricht Wörter, die zu lang sind */
    max-width: 60px; /* Maximale Breite des Textbereichs */
}

.bg-base {
    margin-left: 60px; /* Sicherstellen, dass die Kachel nicht die Kugel überlappt */
}
