/* ---------- Farben ---------- */

a {
    text-decoration: none;
}

.color1 {
    color: #0ea5e9;
}

.color2 {
    color: #38bdf8;
}

.color3 {
    color: #0284c7;
}

.color4 {
    color: #3b82f6;
}

.color5 {
    color: #2563eb;
}

.color6 {
    color: #1e40af;
}

.bg-lighti {
    background-color: #eef2f7;
}

.bg-accent {
    background-color: #f0f8fe;
}

.bg-darki {
    background-color: #18181b;
}

.bg-yellow {
    background-color: #0ea5e9 !important;
}

.bg-grey {
    background-color: #6b7280;
}

.bg1 {
    color: white;
    background-color: #0ea5e9;
}

.bg2 {
    color: white;
    background-color: #38bdf8;
}

.bg3 {
    color: white;
    background-color: #0284c7;
}

.bg4 {
    color: white;
    background-color: #3b82f6;
}

.bg5 {
    color: white;
    background-color: #2563eb;
}

.bg6 {
    color: white;
    background-color: #2563eb;
}

.bg9 {
    color: white;
    background-color: #27272a;
}

.bg10 {
    color: white;
    background-color: #27272a;
}

.dark-mode-background {
    background-color: #1a1a1a;
}

/* ---------- Fonts ---------- */
.font1 {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
}

.font2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.font3 .titillium-web-semi-bold {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.font4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* ---------- Buttons ---------- */
.button-main {
    background-color: #0ea5e9;
    z-index: 10;
    min-width: 12rem;
    padding: 12px 16px;
    color: white;
    border: none;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
    transition: all 0.3s ease-in-out;
}

.button-main:hover {
    background-color: #1e3a8a;
    transform: translate(12px, -8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
}

.button-main-white {
    background-color: white;
    color: black;
    min-width: 12rem;
    padding: 12px 16px;
    border: none;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
    transition: all 0.3s ease-in-out;
}

.button-main-white:hover {
    background-color: #007bff;
    color: white;
    transform: translate(12px, -8px);
}

.icon-white {
    filter: brightness(0) invert(1);
}



/* ---------- Outline Button ---------- */
.btn-outline-color1 {
    background: transparent;
    border: 1px solid #0ea5e9;
    color: #0ea5e9;
    transition: all .3s ease-in-out;
}

.btn-outline-color1:hover {
    background-color: #0ea5e9;
    color: #1a1a1a !important;
}

/* ---------- Hero ---------- */
@media (max-width: 768px) {
    ._hero {
        background-image: none;
    }
}

@media (min-width: 769px) {
    ._hero {
        background-image: url(/index/backi.svg);
        background-size: cover;
        background-position: center;
        animation: AnimationName 40s ease infinite;
    }
}

/* ---------- Profile ---------- */
.profile-picture {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------- Product Card ---------- */
.product-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
}

.logo-partner {
    width: 150px;
    height: 150px;
    object-fit: contain;
    filter: grayscale(100%);
    background: transparent;
    transition: filter 0.3s ease-in-out;
    mix-blend-mode: multiply;
    background: none;


}

.logo-partner:hover {
    filter: grayscale(0%);
}


.product-card .product-title {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.product-card .product-description {
    margin-bottom: 20px;
}

.product-card .product-price {
    font-weight: bold;
}

/* ---------- Mobile Navigation ---------- */
.mobile-navigation {
    position: fixed;
    inset: 0;
    background: white;
    z-index: 1000;
    padding: 20px;
}

.mobile-navigation nav a {
    display: block;
    padding: 10px 0;
    color: black;
    text-decoration: none;
}

/* ---------- Utility ---------- */
.pointer {
    cursor: pointer;
}

.grey-hover {
    background: white;
    transition: background .2s ease-in-out;
}

.grey-hover:hover {
    background: rgba(128, 128, 128, .2);
}

/* ---------- CTA ---------- */
.cta-section {
    background: linear-gradient(90deg, #0ea5e9 41%, #00d4ff 100%);
    border-radius: 15px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.section-parallax {
    position: relative;
    width: 100%;
    min-height: 400px;
    background-image: url('../../public/bg2.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    will-change: transform;
}

.section-parallax::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.section-parallax>* {
    position: relative;
    z-index: 2;
}


.scrollspy-nav {
    position: sticky;
    top: 75px;
    display: none;
    flex-direction: row;
    gap: 25px;
    padding: 20px 20px 20px 100px;
    background-color: white;
    z-index: 2;
}

@media (min-width: 768px) {
    .scrollspy-nav {
        display: flex;
    }
}

.scrollspy-nav .item {
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    color: #888;
    transition: all .2s ease-in-out;
}

.scrollspy-nav .item:hover {
    color: black;
}

.scrollspy-nav .item.active {
    color: black;
    border-bottom: 3px solid #0ea5e9;
}

.ticket {
    position: relative;
    min-width: 300px;
    max-width: 330px;
    min-height: 400px;
    max-height: 400px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    margin: auto;
}

.ticket::before,
.ticket::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.ticket::before {
    left: -25px;
    top: calc(50% - 25px);
}

.ticket::after {
    right: -25px;
    top: calc(50% - 25px);
}

.ticket .content {
    padding: 20px;
    text-align: center;
}


.checkout-container .card-element-container {
    background-color: #f8f8f8;
    border: 1px solid #cfd7df;
    border-radius: 4px;
    padding: 1rem;
    width: 100%;
}

.checkout-container .StripeElement {
    width: 100%;
}

.checkout-button {
    background-color: #0ea5e9;
    border: none;
    border-radius: 10px;
    color: #2563eb;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    width: 100%;
    transition: background-color .4s ease-in-out;
}

.checkout-button:disabled {
    background-color: #bbb;
    cursor: not-allowed;
}

.header-section {
    position: relative;
    width: 100%;
    min-height: 70dvh;
    margin-top: 50px;
}

.header-section .header-image {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
    object-position: center top;
}

.header-section .header-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;
}

.header-section .header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    border-radius: 15px;
    z-index: 1;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.button {
    position: relative;
    padding: 10px 40px;
    background-color: #0ea5e9;
    color: white;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 15em;
    overflow: hidden;
}

.button-text {
    transition: transform .3s ease;
}

.hover-item {
    position: absolute;
    left: 20px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity .3s ease, transform .3s ease;
}

.button:hover .button-text {
    transform: translateX(20px);
}

.button:hover .hover-item {
    opacity: 1;
    transform: translateX(0);
}


/* ---------- PARALLAX ---------- */
.parallax {
    min-height: 100dvh;
    overflow: hidden;
    position: relative;
}

.parallax::before {
    content: "";
    background: url('../../public/bg2.webp') no-repeat center center;
    position: absolute;
    inset: 0;
    z-index: -1;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.parallax .header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    transition: background 0.4s ease-in-out;
}

.navbar.hide {
    background-color: white;
}

/* ---------- NAV ITEM & DROPDOWN ---------- */
.nav-item {
    position: relative;
    display: inline-block;
    padding: 12px 16px;
}

.nav-item:hover .dropdown-content {
    display: block;
}

.nav-item:hover .icon {
    animation: rotate-icon-180 0.3s ease-in-out forwards;
}

.nav-item:not(:hover) .icon {
    animation: rotate-icon-back 0.5s ease-in-out forwards;
}

.nav-item .icon {
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}

.nav-item .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    padding: 12px 0;
    transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.nav-item .dropdown-content span {
    padding: 12px 16px;
    cursor: pointer;
    display: block;
}

.nav-item .dropdown-content span:hover {
    background-color: #f1f1f1;
}


/* ---------- ICON MARQUEE ---------- */
.icon-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 50px;
    background-color: transparent;
}


.icon-track {
    display: flex;
    width: max-content;
    animation: scroll-left 60s linear infinite;
}

.icon-wrapper {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* SVG als Image */
.icon {
    width: 50px;
    height: 50px;
    margin: 0 100px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);

}

/* ---------- KEYFRAMES ---------- */

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* .icon-marquee:hover .icon-track {
    animation-play-state: paused;
} */

@media (prefers-reduced-motion: reduce) {
    .icon-track {
        animation: none;
    }
}




.hero {
    position: relative;
    min-height: 90vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* ---------- HERO IMAGE ---------- */
.hero .hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 88;
    filter: brightness(0.5);
}

@media (min-width: 768px) {
    .hero .hero__image {
        object-position: center top;
    }
}

/* ---------- HERO CONTENT ---------- */
.hero .hero__content {
    position: absolute;
    z-index: 99;
    color: white;
    padding: 1rem;
}

/* Desktop */
@media (min-width: 768px) {
    .hero .hero__content {
        top: 50%;
        left: 5%;
        transform: translateY(-50%);
        text-align: left;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hero .hero__content {
        position: static;
        text-align: center;
        margin: 50px auto 0;
    }
}

/* ---------- TEXT ---------- */
.hero .hero__content h1 {
    font-size: 2em;
    margin-bottom: 1rem;
    text-align: left;
}

@media (min-width: 768px) {
    .hero .hero__content h1 {
        font-size: 3rem;
    }
}

.hero .hero__content p {
    font-size: 1.5em;
    margin-bottom: 1.5rem;
    text-align: left;
}

@media (min-width: 768px) {
    .hero .hero__content p {
        font-size: 1.25rem;
    }
}