:root {
    --black: #000000;
    --dark-gray: #121212;
    --medium-gray: #1e1e1e;
    --light-gray: #2d2d2d;
    --text-gray: #a0a0a0;
    --white: #ffffff;
    --red: #C90629;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--white);
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Navigation */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo h2 {
    font-size: 1.2em;
    line-height: 1.1;
}

.logo .subtitle {
    font-size: 14.3px;
    font-weight: 400;
    /*text-transform: uppercase;*/
    color: var(--text-gray);
}

.nav-items {
    display: flex;
    align-items: center;

    gap: 40px;
}

.nav-items a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.nav-items a:hover,
.nav-items a.active {
    color: var(--white);
}

.cta-button {
    background-color: var(--white);
    color: var(--black);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-items .cta-button {
    background: var(--red);
    color: var(--white);

}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 280px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 24px;
}

.hero-title {
    font-size: clamp(3.5rem, 5vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    padding: 0 2em;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
}

section:nth-child(odd) {
    background-color: var(--black);
}

section:nth-child(even) {
    background-color: var(--dark-gray);
}

.section-label {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: 16px;
    display: block;
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 28px;
    text-align: center;
    position: relative;
    display: inline-block;
    padding-bottom: 28px;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3);
}

.section-intro {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
    color: var(--text-gray);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 80px;
}


.about-text {
    /*font-size: 1.1rem;*/
    font-size: 1.2rem;
    /*text-align: justify;*/
}

.about-text p {
    margin-bottom: 24px;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    display: block;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.feature {
    text-align: center;
    padding: 32px;
    background-color: var(--medium-gray);
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-8px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    font-weight: 300;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Instructor Section */
.instructor {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.instructor-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.instructor-image img {
    width: 100%;
    display: block;
}

.instructor-bio h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.1;
}

.instructor-bio h4 {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 32px;
    font-weight: 500;
}

.instructor-bio p {
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.quote {
    font-style: italic;
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    padding-left: 24px;
    margin: 32px 0;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.tag {
    background-color: var(--light-gray);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
}

/* Modules Section */
.modules {
    counter-reset: module-counter;
}

.module {
    position: relative;
    padding: 32px;
    background-color: var(--medium-gray);
    border-radius: 16px;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.module:hover {
    transform: translateY(-5px);
}

.module::before {
    counter-increment: module-counter;
    content: counter(module-counter);
    position: absolute;
    top: 24px;
    left: -16px;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.module-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.module ul {
    list-style-type: none;
    margin-top: 16px;
}

.module ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
}

.module ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--text-gray);
}

/* Location Section */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.location-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
    height: 500px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.gallery-item:first-child {
    grid-column: 1 / 3;
    grid-row: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.gallery-item video {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover video {
    transform: scale(1.05);
}

.location-info h3 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.location-info p {
    margin-bottom: 24px;
}

.location-info ul {
    list-style-type: none;
    margin: 24px 0;
}

.location-info ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
}

.location-info ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-gray);
}

/* Dates Section */
.dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.date-card {
    background-color: var(--medium-gray);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.date-card:hover {
    transform: translateY(-8px);
}

.date-card.sold-out {
    opacity: 0.7;
}

.date-header {
    height: 200px;
    position: relative;
}

.date-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.date-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--white);
    color: var(--black);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sold-out-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sold-out-label {
    background-color: var(--black);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.date-content {
    padding: 32px;
}

.date-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.date-content p {
    margin-bottom: 24px;
    color: var(--text-gray);
}

.date-content ul {
    list-style-type: none;
    margin: 24px 0;
}

.date-content ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
}

.date-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--text-gray);
}

.date-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

.availability {
    font-size: 14px;
    font-weight: 600;
}

.date-card.sold-out .availability {
    color: var(--text-gray);
}

/* Benefits Section */
.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.benefit {
    background-color: var(--medium-gray);
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.benefit p {
    color: var(--text-gray);
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial {
    background-color: var(--medium-gray);
    border-radius: 16px;
    padding: 32px;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

.testimonial-content {
    position: relative;
    font-style: italic;
    margin-top: 12px;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-weight: 600;
}

.author-info p {
    font-size: 14px;
    color: var(--text-gray);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 120px 0;
    background-color: var(--black);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(30, 30, 30, 0.8) 0%, rgba(0, 0, 0, 1) 70%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 24px;
}

.cta-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-gray);
}

.cta-button-large {
    font-size: 1.1rem;
    padding: 16px 32px;
}

/* Footer */
footer {
    background-color: var(--black);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-gray);
    margin-bottom: 24px;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-links {
    list-style-type: none;
}

.footer-links li {
    margin-bottom: 12px;
}

footer a {
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    font-size: 14px;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--dark-gray);
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    padding: 48px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 24px;
    cursor: pointer;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--medium-gray);
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    color: var(--white);
    font-size: 16px;
}

.form-input:focus {
    outline: none;
    border-color: var(--white);
}

.form-select {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--medium-gray);
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    color: var(--white);
    font-size: 16px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23a0a0a0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-submit {
    width: 100%;
    padding: 14px;
    background-color: var(--white);
    color: var(--black);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.form-note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-gray);
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .nav-items {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .instructor,
    .about-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }

    .location-gallery {
        height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item:first-child {
        grid-column: 1;
    }

    .modal-content {
        padding: 32px;
    }

    .dates-grid {
        grid-template-columns: 1fr;
    }

    .date-card {
        width: 100%;
    }

    .date-footer {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .instructor,
    .about-grid,
    .location-grid {
        gap: 32px;
    }

    .module {
        padding: 24px;
    }

    .feature {
        padding: 24px;
    }
}



@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }

    .hero-content {
        padding: 0 16px;
    }

    .hero-title {
        padding: 0 0.5em;
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 0.5em;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .instructor-bio li {
        margin-left: 20px;
    }

    .module-title {
        margin-left: 40px;
    }

    .modules div::before {
        margin-left: 30px;
    }


}



/* Awards als Hintergrund mit repeat-x und Animation */
@keyframes slideBackground {
    from {
        background-position: 0 20px;
    }
    to {
        background-position: -1100px 20px;
    }
}

.awards-background {
    background: url('../funnel/awards.webp') repeat-x;
    border-left: 3px solid #fff4;
    border-right: 3px solid #fff4;
    background-size: 1100px auto;
    animation: slideBackground 20s linear infinite;
    height: 130px; /* Etwas größer */
    margin-top: 50px; /* Mehr Abstand zum oberen Inhalt */
}

/* Filmprojekte in einer Zeile, mit manuellem Scrollen und Chevron */
.film-gallery {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
    position: relative;
}

.film-gallery::-webkit-scrollbar {
    display: none;
}

.film-item {
    overflow: hidden;
    flex: 0 0 auto;
    border-radius: 12px;
    position: relative;
}

.film-item img {
    width: 100%;
    aspect-ratio: .7;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.film-item:hover img {
    transform: scale(1.05);
}

/* belwo 1024px always have 3 films in a row, below 768px 2 films in a row, above always 200 width */
@media (min-width: 1024px) {
    .film-item {
        width: 200px;
    }
}

@media (max-width: 1024px) {
    .film-item {
        width: calc(33.333% - 20px);
    }
}

@media (max-width: 768px) {
    .film-item {
        width: calc(50% - 20px);
    }
}


.film-info {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s;
    text-align: center;
    padding: 1em;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.film-info strong {
    font-size: 1.2em;
    font-weight: 700;
    text-transform: uppercase;
}

.film-item:hover .film-info {
    cursor: default;
    opacity: 1;
}

/* Chevron als Overlay rechts */
.chevron-right {
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    transition: .4s;
    font-size: 40px;
    color: white;
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0 40px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.0), #121212);
    opacity: 0.8;
    user-select: none;
    display: none;
}

.chevron-right:hover {
    opacity: 1;
}

/* Änderungen für die Filmgalerie */
.film-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
    position: relative;
    overflow-x: visible; /* horizontales Scrollen abschalten */
}

/* button */
.instructor-link {
    background: #fff2;
    /*border: 1px solid #fff4;*/
    color: var(--white);
    padding: 6px 36px;
    margin-right: 5px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.instructor-link:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.waiting-list {
    margin: 80px auto auto;
    max-width: 800px;
    text-align: center;
    padding: 50px;
    background-color: #fff1; /* Heller Hintergrund, anpassbar */
    border: 2px solid #fff1; /* Dezente Umrandung */
    border-radius: 24px;
}

.waiting-list h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.waiting-list p {
    font-size: 16px;
    color: #ccc;
    max-width: 600px;
    margin: auto;
    margin-bottom: 24px;
}

.waiting-list form {
    max-width: 400px;
    margin: 0 auto;
}

.waiting-list .form-group {
    margin-bottom: 16px;
}

.waiting-list .form-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #fff3;
    border-radius: 50px;
    font-size: 16px;
}

.waiting-list .cta-button {
    display: inline-block;
    padding: 12px 24px;
    width: 100%;
    border: none;
    border-radius: 50px;
    background-color: var(--red);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.waiting-list .cta-button:hover {
    background-color: #b0101a;
}

/* Partners Section */
.partners-section {
    background-color: #000;
    padding: 40px 0;
    text-align: center;
}

.partners-section .section-title {
    color: #fff;
    margin-bottom: 20px;
    font-size: 2em;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.partner-item {
    display: block;
    transition: transform 0.3s ease;
    padding: 10px;
}

/* Alle Logos erhalten eine einheitliche Maximalgröße */
.partner-item img {
    max-width: 250px; /* Bei Bedarf anpassen */
    max-height: 100px; /* Damit auch das querformatige Logo nicht zu dominant wird */
    object-fit: contain;
}

/* Hover-Effekt für einen „fancy“ Look */
.partner-item:hover {
    transform: scale(1.1);
}


.footer-legal {
}

.footer-legal-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    gap: 15px;
}

.footer-legal-links li {
    display: inline;
}

footer a {
    transition: color 0.3s;
}

footer a:hover {
    color: #fff;
    /*text-decoration: underline;*/
}

.footer-bottom a:hover {
    text-decoration: underline;
}
