@font-face {
    font-family: 'Gabriel';
    src: url('fonts/GABRWFFR.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
body {
    font-family: "Inter",Arial, Helvetica, sans-serif;
    font-size: 1.2em;
    color: #2c312d;
    
}
h1, h2, h3, h4, h5, h6, button {
    font-family: 'Gabriel', cursive;
    color: #00ff00;
    font-weight: 600; 
    letter-spacing: 2px;
}
h1, h2, h3, h4 {
    text-shadow: 2px 2px #267130;
}
h5, h6 {
    text-shadow: 1px 1px #267130;
}
.onblack {
    text-shadow: 2px 2px #020202;
}
strong {
    font-weight: 600;
}
a {
    color: #01871c;
    text-decoration: underline;
}
a:hover {
    text-decoration: none;
    color: #01871c;
}
a.btn:hover {
    text-decoration: none;
}
footer {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.scrolling-wrapper {
    overflow-x: auto;
    white-space: nowrap;
}
.scrolling-wrapper .card{
    margin-right: 15px; /* Space between cards */
}
.card {
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.box-green {
    background-image: url('images/Box_gruen.svg');
    background-repeat: no-repeat;
    border: 1px none;
}
.box-black {
    background-image: url('images/Box_schwarz.svg');
    background-repeat: no-repeat;
    border: 1px none;
}
.box-white {
    background-image: url('images/Box_weiss.svg');
    background-size: cover;
    background-repeat: no-repeat;
    border: 1px none;
}
.box-green:hover, .box-white:hover, .box-black:hover {
    box-shadow: none;
}
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
.nav-link.btn {
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.nav-link.btn:hover {
    color: #fff;
}
.logo-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center; 
}
.logo {
    position: absolute;
    width: 200px;
    height: auto;
    opacity: 0;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.7));
    transition: transform 0.2s ease, opacity 2s;
    will-change: transform;
}
.logo-you {
    animation: slideFromLeft 2s forwards;
}
.logo-are {
    animation: slideFromTop 2s forwards;
    animation-delay: 0.5s;
}
.logo-art {
    animation: slideFromRight 2s forwards;
    animation-delay: 1s;
}
@keyframes slideFromLeft {
    0% {
        transform: translateX(-100vw);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes slideFromTop {
    0% {
        transform: translateY(-100vh);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes slideFromRight {
    0% {
        transform: translateX(100vw);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
.circle {
    position: absolute;
    right: 20%;
    width: 150px;
    height: 150px;
    background-color:  #00ff00;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: fadeInRotate 1.5s forwards;
    animation-delay: 2s;
    font-family: 'Gabriel', cursive;
    padding: 5px;
    
}
.circle span {
    color: black;
    font-weight: bold;
    font-size: 1.1em;
    line-height: 1.3;
    transform: rotate(-15deg);
    line-height: 1em;
    font-weight: 100;
    letter-spacing: 2px;
}
@keyframes fadeInRotate {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}
/* Für bessere Browser-Kompatibilität können wir auch -webkit-filter hinzufügen */
@-webkit-keyframes dropShadowFade {
    0% {
        -webkit-filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0));
    }
    100% {
        -webkit-filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    }
}
.navbar {
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1rem;
    display: flex;
    justify-content: flex-end;
}
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 1001;
    color: #fff;
    background-color: #00ff00;
}
.navbar-toggler-icon {
    display: block;
    position: relative;
    transition: all 0.3s ease;
}
/*.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #00ff00;
    transition: all 0.3s ease;
}
.navbar-toggler-icon::before {
    transform: translateY(-8px);
}
.navbar-toggler-icon::after {
    transform: translateY(8px);
}*/
.navbar-collapse {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #00ff00;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar-collapse.show {
    display: block;
    opacity: 1;
}

.nav-list {
    height: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.nav-item {
    text-align: center;
}
.nav-link {
    text-decoration: none;
    color: black;
    font-size: 2.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    font-family: 'Gabriel', cursive;
}
.nav-link:hover {
    transform: scale(1.1);
}
/* Stil für den aktiven Burger-Button */
.navbar-toggler.active .navbar-toggler-icon {
    background-color: transparent;
}
.navbar-toggler.active .navbar-toggler-icon::before {
    transform: rotate(45deg);
}
.navbar-toggler.active .navbar-toggler-icon::after {
    transform: rotate(-45deg);
}
.sticky-image-container {
    position: relative;
    height: 200vh;
}

.sticky-wrapper {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.image-container {
    display: flex;
    width: 100%;
    height: auto;
    gap: 0;
}

.image-left, .image-right {
    width: 50%;
    height: auto;
    position: relative;
}

.image-left img, .image-right img {
    width: 100%;
    height: auto;
    /*max-height: 80vh;*/
}

.image-right {
    transform: translateX(100%);
    will-change: transform;
}

.image-right.visible {
    transform: translateX(0);
}

.sticky-title {
    position: absolute;
    left: 50%;
    top: 75%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #00ff00;
    opacity: 0;
    transition: all 0.5s ease-out;
    z-index: 10;
    background: rgba(0, 0, 0, 1);
    padding: 1rem 2rem;
    width: auto;
    white-space: nowrap;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.7));
}

.sticky-title.visible {
    opacity: 1;
}

/* Media Query für mobile Geräte */
@media (max-width: 768px) {
    .image-container {
        padding: 1rem;
    }

    .image-left img, .image-right img {
        max-height: 60vh;
    }

    .sticky-title {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
        width: 80%;
        white-space: normal;
    }
    .fade-title {
        font-size: 2.1rem;
    }
}
.fade-title {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: all 0.8s ease;
    margin: 3rem 0;
}

.fade-title.visible {
    opacity: 1;
    transform: translateY(0) scale(1.2);
}

.fade-title.past {
    opacity: 0;
    transform: translateY(-20px) scale(0.8);
}

.question-mark {
    position: fixed;
    font-size: 15rem;
    color: #00ff00;
    pointer-events: none;
    z-index: 1000;
    font-family: 'Gabriel', cursive;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.question-mark.active {
    animation: floatAround 3s linear forwards;
}

@keyframes floatAround {
    0% {
        opacity: 1;
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translate(var(--moveX), var(--moveY)) rotate(var(--rotation));
    }
}
.btn-primary {
    background-color: #00ff00;
    border-color: #00ff00;
    color: #000;
    letter-spacing: 0px;
    font-weight: 600;
    border: 5px solid #00ff00;
}
.btn-primary:hover {
    background-color: #00cc00;
    border-color: #009900;
    color: #000;
}
.btn-primary:focus, 
.btn-primary:active {
    background-color: #00b300 !important;
    border-color: #00b300 !important;
    color: #000 !important;
    box-shadow: 0 0 0 0.25rem rgba(0, 255, 0, 0.25) !important;
}
.btn-primary:disabled {
    background-color: #99ff99;
    border-color: #99ff99;
    color: #000;
}
.btn-xl {
    font-size: 1.5em;
}
.accordion-item {
    border-color: #333;
    margin-bottom: 0.5rem;
    background-color: transparent;
}

.accordion-button {
    background-color: #222;
    font-family: 'Gabriel', cursive;
    color: #00ff00;
    border: 1px solid #333;
}

.accordion-button:not(.collapsed) {
    background-color: #00ff00;
    color: #000000;
    box-shadow: inset 0 -1px 0 #00cc00;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 255, 0, 0.25);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300ff00'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background-color: #222;
    border-top: 1px solid rgba(0, 255, 0, 0.2);
    color: #fff;
}

.tiktok-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    background: #000;
}

.tiktok-media-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.tiktok-top-comment {
    position: absolute;
    top: 30px;
    left: 30px;
    transform: rotate(-5deg);
    font-family: 'Gabriel', cursive;
    color: #00ff00;
    font-weight: 600; 
    letter-spacing: 2px;
    text-shadow: 2px 2px #267130;
    font-size: 3em;
    font-weight: bold;
    max-width: 80%;
    z-index: 5;
    padding: 10px 10px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    backdrop-filter: blur(1px);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tiktok-wrapper {
    position: relative;
    padding-top: 177.78%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.tiktok-card-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tiktok-card {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: none;
}

.tiktok-card.active {
    opacity: 1;
    display: block;
}

.tiktok-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tiktok-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

.tiktok-username {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-family: 'Gabriel', cursive;
}

.tiktok-comment {
    font-size: 1rem;
    margin-bottom: 4px;
}

.tiktok-date {
    font-size: 0.8rem;
    opacity: 0.8;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    border: none;
    color: white;
    padding: 15px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
    border-radius: 50%;
}

.nav-button:hover {
    background: rgba(255,255,255,0.5);
}

.prev-button {
    left: 10px;
}

.next-button {
    right: 10px;
}

.tiktok-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    padding-bottom: 10px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
}

.indicator.active {
    background: #00ff00;
}

.sticky-slides-container {
    height: 200vh;
    position: relative;
}

.sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.sticky-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

#slide2 {
    opacity: 0;
    transition: opacity 0.1s ease;
    will-change: opacity;
}

.artwork-image-container {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

.artwork-image-container img {
    object-fit: contain;
    max-height: 100%;
    width: auto;
    max-width: 100%;
    height: auto;
    border-top-left-radius: var(--bs-card-inner-border-radius);
    border-top-right-radius: var(--bs-card-inner-border-radius);
}

/* Table of Contents Styles */
#toc-overlay {
    position: fixed;
    left: 0;
    top: 20%;
    transform: translateY(-50%);
    z-index: 999;
    transition: all 0.3s ease;
}

#toc-toggle {
    background-color: #00ff00;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 0 5px 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

#toc-container {
    position: absolute;
    left: -300px;
    top: 0;
    width: 280px;
    background-color: rgba(0, 0, 0, 0.85);
    border-radius: 0 5px 5px 0;
    padding: 15px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    transition: left 0.3s ease;
    max-height: 70vh;
    overflow-y: auto;
}

#toc-container.visible {
    left: 40px;
}

#toc-container h4 {
    color: #00ff00;
    margin-bottom: 15px;
    text-shadow: 1px 1px #020202;
    font-size: 1.2rem;
    border-bottom: 1px solid #00ff00;
    padding-bottom: 5px;
}

#toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#toc-list li {
    margin-bottom: 8px;
}

.toc-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: block;
    padding: 5px;
    border-radius: 3px;
}

.toc-link:hover {
    color: #00ff00;
    background-color: rgba(0, 255, 0, 0.1);
}

.artwork-scroll-row {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem; /* Mimics Bootstrap's g-4 gap */
    padding: 0.5rem 0 1.5rem 0; /* Add some padding, especially at the bottom for shadow/scrollbar space */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    scrollbar-width: none; /* Hide scrollbar on Firefox */
}

.artwork-scroll-row::-webkit-scrollbar {
    display: none; /* Hide scrollbar on Chrome, Safari, Opera */
}

.artwork-scroll-row .card {
    flex: 0 0 75vw; /* On small screens, card is 75% of viewport width */
    max-width: 280px; /* But no wider than 280px */
    width: 75vw;
}

/* On larger screens (tablets and desktops), give cards a fixed width */
@media (min-width: 576px) {
    .artwork-scroll-row .card {
        flex-basis: 250px;
        width: 250px;
    }
}