/* DM Sans Regular */
@font-face {
    font-family: 'DM Sans';
    src: url('/fonts/static/DMSans-Regular.ttf') format('woff2'),
        url('/fonts/static/DMSans-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* DM Sans Bold */
@font-face {
    font-family: 'DM Sans';
    src: url('/fonts/static/DMSans-Bold.ttf') format('woff2'),
        url('/fonts/static/DMSans-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

* {
    background-color: #000;
    color: #fff;
    padding: 0;
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    box-sizing: border-box;
}

header {
    margin-top: 2%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 5.5rem;
    position: sticky;
    top: 0;
    background-color: #000;
    z-index: 1000;
}

.logo {
    width: 12rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    background-color: transparent;
    border: none;
    cursor: pointer;
    gap: 0.5rem;
    padding: 1rem;
}

.hamburger span {
    width: 2rem;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(0.8rem, 0.8rem);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0.6rem, -0.6rem);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    list-style: none;
}

nav ul li a {
    cursor: pointer;
    text-decoration: none;
    font-size: 1.2rem;
    position: relative;
    transition: color 0.3s ease;
    background-color: transparent;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff0000;
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: #ff0000;
}

nav ul li a:hover::after {
    width: 100%;
}

section {
    margin-top: 2%;
    width: 100%;
}

.hello {
    height: 100vh;
    display: flex;
    background-color: #000;
}

.hook {
    margin-top: 10%;
    margin-left: 10%;
    text-align: center;
}

.hook h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hook h1 mark {
    color: #ff0000;
    background: none;
    position: relative;
    display: inline-block;
}

.hook h1 mark::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background-color: #ff0000;
    transform: scaleX(0);
    /* Start: unsichtbar */
    transform-origin: left;
    animation: underline 0.6s ease 0.5s forwards;
    /* Animation beim Laden */
}

@keyframes underline {
    to {
        transform: scaleX(1);
        /* Endzustand: sichtbar */
    }
}

.hook h3 {
    font-size: 1.5rem;
    margin-top: 10px;
}

#scroll-down {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 3rem;
    font-size: 16px;
    opacity: 1;
    transition: all 0.5s ease;
    border-radius: 50%;
    border: #ff0000 solid 2px;
    text-align: center;
    background-color: transparent;
    color: #ff0000;
    cursor: pointer;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

#scroll-down:hover {
    background-color: #ff0000;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

#scroll-down:hover i {
    background-color: transparent;
}

#scroll-down.hidden {
    opacity: 0;
    pointer-events: none;
}

#short-about{
    background-color: #1c1a1a;
    text-align: center;
    width: 100%;
    padding-top: 4%;
    padding-bottom: 4%;
    border-bottom: 2px solid rgba(255, 0, 0, 0.3);
}

#short-about h2, p, b {
    background-color: transparent;
}

#short-about h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

#short-about p, #short-about b {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ddd;
}

#services {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 2rem;
    background-color: #000;
}

.image-placeholder img {
    width: 25rem;
    height: auto;
    border-radius: 10px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.1);
}

.image-placeholder img:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 0, 0, 0.3);
}

.element {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-basis: 30%;
    width: 100%;
    transition: transform 0.3s ease;
}

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

.text h3, .text p {
    background-color: transparent;
}

.text {
    width: 100%;
}

.text h3 {
    font-size: 1.5rem;
    color: #ff0000;
    margin-bottom: 0.5rem;
}

.text p {
    line-height: 1.7;
    color: #ccc;
}

.text b {
    background-color: transparent;
    color: #ff0000;
    font-weight: 700;
}

i {
    background-color: transparent;
}

#service-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    padding: 2rem;
    background-color: #1c1a1a;
    max-width: 1200px;
    margin: 0 auto;
}

#about {
    background-color: #000;
    text-align: center;
    width: 100%;
    padding-top: 4%;
    padding-bottom: 4%;
    margin-top: 4%;
}

#about h2, #about h1{
    background-color: transparent;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #fff;
}

#about p {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 4%;
    background-color: transparent;
    line-height: 1.8;
    color: #ccc;
    font-size: 1rem;
}

.team {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
    background-color: transparent;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.person {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    border: 2px solid #ff0000;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05) 0%, rgba(255, 0, 0, 0.02) 100%);
    padding: 2rem;
    border-radius: 10px;
    flex-basis: 25%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.1);
    max-width: 280px;
}

.person:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #ff0000;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(255, 0, 0, 0.05) 100%);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.2);
}

.person h4, .person p, .person i {
    background-color: transparent;
    text-align: center;
}

.person i {
    font-size: 2rem;
    color: #ff0000;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ff0000;
    border-radius: 50%;
}

.person h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-top: 0.5rem;
}

.person p {
    color: #ccc;
    font-size: 0.9rem;
}

#service-list {
    background-color: #000;
}

.service-divs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    margin-top: 2%;
}

.service-div {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    border: 2px solid #ff0000;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05) 0%, rgba(255, 0, 0, 0.02) 100%);
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.1);
    width: 85%;
    max-width: 900px;
}

.service-div:hover {
    border-color: #ff0000;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(255, 0, 0, 0.05) 100%);
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.2);
}

.service-div h3, .service-div i {
    background-color: transparent;
}

.service-div h3 {
    color: #fff;
    font-size: 1.1rem;
}

.service-div i {
    color: #ff0000;
    font-size: 1.3rem;
    min-width: 30px;
    text-align: center;
}

#impressions {
    text-align: center;
    width: 100%;
    padding-top: 4%;
    padding-bottom: 4%;
    margin-top: 2%;
    background-color: #000;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

#impressions h1 {
    background-color: transparent;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.impressions-gallery {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.impressions-gallery img {
    width: 12rem;
    height: 12rem;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.1);
    border: 2px solid rgba(255, 0, 0, 0.3);
}

.impressions-gallery img:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 20px 50px rgba(255, 0, 0, 0.3);
    border-color: #ff0000;
}

header {
    position: sticky;
    top: 0;
}

footer {
    padding: 3rem 2rem;
    background-color: #000;
    margin-top: 4%;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
    border-top: 2px solid #ff0000;
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
}

.contact-info, .links, .social {
    flex-basis: 25%;
    background: transparent;
    transition: transform 0.3s ease;
}

.contact-info:hover, .links:hover, .social:hover {
    transform: translateY(-5px);
}

.contact-info h2, .links h2, .social h2 {
    background-color: transparent;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.contact-info p, .links p, .social p {
    background-color: transparent;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info a, .links a, .social a {
    background-color: transparent;
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    position: relative;
}

.contact-info a:hover, .links a:hover, .social a:hover {
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.contact-info i, .links i, .social i {
    background-color: transparent;
    margin-right: 0.5rem;
    color: #ff0000;
}

.social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 1rem;
    border: 2px solid #ff0000;
    border-radius: 50%;
    transition: all 0.3s ease;
    background-color: transparent;
}

.social a i {
    margin-right: 0;
    font-size: 1.2rem;
}

.social a:hover {
    background-color: #ff0000;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

.social a:hover i {
    color: #000;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet - 768px bis 1024px */
@media (max-width: 1024px) {
    .hook {
        margin-top: 15%;
        margin-left: 5%;
    }

    .hook h1 {
        font-size: 2.5rem;
    }

    .hook h3 {
        font-size: 1.2rem;
    }

    #services {
        flex-direction: column;
        gap: 3rem;
        padding: 2rem 1rem;
    }

    .element {
        flex-basis: 100%;
    }

    .image-placeholder img {
        width: 20rem;
    }

    .person {
        flex-basis: 45%;
    }

    .impressions-gallery img {
        width: 10rem;
        height: 10rem;
    }

    footer {
        flex-direction: row;
        gap: 2rem;
        text-align: center;
    }

    .contact-info, .links, .social {
        flex-basis: 100%;
    }
}

/* Mobile - unter 768px */
@media (max-width: 768px) {
    header {
        margin-top: 0;
        height: auto;
        padding: 1rem;
        justify-content: space-between;
    }

    .logo {
        width: 8rem;
    }

    .hamburger {
        display: flex;
    }

    nav {
        position: absolute;
        top: 5.5rem;
        left: 0;
        width: 100%;
        background-color: #1c1a1a;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 2px solid #ff0000;
    }

    nav.active {
        max-height: 300px;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }

    nav ul li {
        padding: 0.8rem 1.5rem;
        border-bottom: 1px solid rgba(255, 0, 0, 0.2);
    }

    nav ul li a {
        font-size: 1rem;
    }

    .hello {
        height: 80vh;
    }

    .hook {
        margin-top: 20%;
        margin-left: 2%;
        width: 95%;
    }

    .hook h1 {
        font-size: 1.8rem;
    }

    .hook h3 {
        font-size: 1rem;
    }

    #short-about h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    #short-about p, #short-about b {
        font-size: 0.95rem;
    }

    #services {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem 1rem;
        margin-top: 0;
    }

    .element {
        flex-basis: 100%;
        width: 100%;
    }

    .image-placeholder img {
        width: 100%;
        max-width: 20rem;
        height: auto;
    }

    .text h3 {
        font-size: 1.2rem;
    }

    .text p {
        font-size: 0.9rem;
    }

    #service-list {
        padding: 1.5rem 0.5rem;
    }

    .service-divs {
        gap: 1rem;
    }

    .service-div {
        width: 95%;
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .service-div h3 {
        font-size: 0.95rem;
    }

    .service-div i {
        font-size: 1.1rem;
    }

    .service-div:hover {
        transform: none;
    }

    #about {
        padding-top: 2%;
        padding-bottom: 2%;
        margin-top: 2%;
    }

    #about h1 {
        font-size: 1.8rem;
    }

    #about p {
        width: 90%;
        font-size: 0.9rem;
    }

    .team {
        flex-direction: column;
        gap: 1.5rem;
    }

    .person {
        flex-basis: 100%;
        width: 90%;
        padding: 1.5rem;
    }

    .person h4 {
        font-size: 1rem;
    }

    .person p {
        font-size: 0.8rem;
    }

    #impressions {
        padding-top: 2%;
        padding-bottom: 2%;
    }

    #impressions h1 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .impressions-gallery {
        gap: 1rem;
    }

    .impressions-gallery img {
        width: 9rem;
        height: 9rem;
    }

    footer {
        padding: 2rem 1rem;
        flex-direction: row;
        gap: 1.5rem;
        margin-top: 2%;
    }

    .contact-info, .links, .social {
        flex-basis: 100%;
    }

    .contact-info h2, .links h2, .social h2 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .contact-info p, .links p, .social p {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .social a {
        width: 2rem;
        height: 2rem;
        margin-right: 0.5rem;
    }

    .social a i {
        font-size: 1rem;
    }
}

/* Small Mobile - unter 480px */
@media (max-width: 480px) {
    .logo {
        width: 6rem;
    }

    .hook h1 {
        font-size: 1.5rem;
    }

    .hook h3 {
        font-size: 0.9rem;
    }

    #short-about h2 {
        font-size: 1.5rem;
    }

    #about h1 {
        font-size: 1.5rem;
    }

    #impressions h1 {
        font-size: 1.5rem;
    }

    .impressions-gallery img {
        width: 8rem;
        height: 8rem;
    }

    footer {
        padding: 1.5rem 0.5rem;
        flex-direction: row;
        gap: 0.8rem;
        justify-content: space-around;
    }

    .contact-info h2, .links h2, .social h2 {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        letter-spacing: 0;
    }

    .contact-info p, .links p, .social p {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }

    .social a {
        width: 1.6rem;
        height: 1.6rem;
        margin-right: 0.3rem;
    }

    .social a i {
        font-size: 0.8rem;
    }
}