/* ==========================================
   DANOMOTION PROJECT PAGE V5.4
========================================== */

:root{

    --project-width:1600px;
    --content-width:1200px;

}

/* ==========================================
   RESET
========================================== */

*{

    margin:0;
    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    background:#0f0f0f;

    color:#ffffff;

    font-family:'Manrope',sans-serif;

    overflow-x:hidden;

    opacity:0;

    transition:opacity .6s ease;

}

body.loaded{

    opacity:1;

}

img{

    display:block;

    max-width:100%;

}

a{

    color:inherit;

    text-decoration:none;

}

/* ==========================================
   NAVIGATION
========================================== */

.project-nav{

    position:fixed;

    top:0;
    left:0;
    right:0;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:28px 70px;

    z-index:1000;

    background:rgba(15,15,15,.75);

    backdrop-filter:blur(20px);

    transition:.3s ease;

}

.project-logo{

    width:220px;

    transition:.3s ease;

}

.project-menu{

    display:flex;

    align-items:center;

    gap:40px;

}

.project-menu a{

    position:relative;

    font-size:.92rem;

    letter-spacing:1px;

}

.project-menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:1px;

    background:var(--accent);

    transition:.3s ease;

}

.project-menu a:hover::after{

    width:100%;

}

.overview-link{

    color:var(--accent);

    margin-right:25px;

}

/* ==========================================
   HAMBURGER
========================================== */

.menu-toggle{

    display:none;

    width:35px;

    height:25px;

    background:none;

    border:none;

    cursor:pointer;

    z-index:1001;

}

.menu-toggle span{

    display:block;

    width:100%;

    height:2px;

    background:#ffffff;

    margin:7px 0;

    transition:.4s ease;

}

.menu-toggle.active span:nth-child(1){

    transform:
        rotate(45deg)
        translate(6px,7px);

}

.menu-toggle.active span:nth-child(2){

    opacity:0;

}

.menu-toggle.active span:nth-child(3){

    transform:
        rotate(-45deg)
        translate(6px,-7px);

}

/* ==========================================
   HERO
========================================== */

.project-hero{

    position:relative;

    width:100%;

    height:100vh;

    overflow:hidden;

}

.project-hero img{

    width:100%;
    height:100%;

    object-fit:cover;

}

.hero-overlay{

    position:absolute;

    inset:0;

    display:flex;

    align-items:flex-end;

    padding:0 6vw 80px;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,.15),
        transparent
    );

}

.hero-content{

    max-width:900px;

}

.hero-content h1{

    font-size:clamp(3rem,7vw,7rem);

    line-height:.95;

    font-weight:800;

    margin-bottom: 1.5rem;

}

.hero-scroll{

    margin-top:30px;

    font-size:2rem;

    cursor:pointer;

    opacity:.7;

    animation:
        heroArrow 2s infinite;

}

@keyframes heroArrow{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(10px);

    }

    100%{

        transform:translateY(0);

    }

}
/* ==========================================
   INTRO
========================================== */

.project-intro{

    width:min(92%,var(--content-width));

    margin:140px auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:120px;

}

.project-heading h2{

    font-size:clamp(2.5rem,5vw,5rem);

    line-height:1;

}

.project-description p{

    color:#cfcfcf;

    line-height:2;

    margin-bottom:25px;

}

/* ==========================================
   PROJEKTFAKTEN
========================================== */

.project-facts{

    width:min(92%,var(--content-width));

    margin:0 auto 180px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:40px;

}

.fact{

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:25px;

}

.fact span{

    display:block;

    color:#8f8f8f;

    font-size:.8rem;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:12px;

}

.fact strong{

    font-size:1.15rem;

    font-weight:700;

}

/* ==========================================
   KAPITEL NAVIGATION
========================================== */

.chapter-navigation{

    width:min(92%,var(--content-width));

    margin:0 auto 220px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

}

.chapter-navigation a{

    color:#9f9f9f;

    border-bottom:1px solid rgba(255,255,255,.08);

    padding-bottom:18px;

    transition:.3s ease;

}

.chapter-navigation a:hover{

    color:#ffffff;

    border-color:var(--accent);

}

.chapter-navigation a.active{

    color:#ffffff;

    border-color:var(--accent);

}

/* ==========================================
   KAPITEL
========================================== */

.chapter{

    width:min(92%,var(--content-width));

    margin:0 auto 220px;

    scroll-margin-top:120px;

}

.chapter-header{

    display:flex;

    align-items:flex-end;

    gap:30px;

    margin-bottom:30px;

}

.chapter-header span{

    font-size:6rem;

    font-weight:800;

    line-height:1;

    color:rgba(255,255,255,.08);

    transition:
        color .4s ease,
        transform .4s ease;

}

.chapter.active .chapter-header span{

    color:var(--accent);

    transform:translateY(-4px);

}

.chapter-header h2{

    font-size:clamp(2rem,4vw,3rem);

    line-height:1;

}

.chapter-text{

    max-width:700px;

    color:#cfcfcf;

    line-height:2;

    margin-bottom:60px;

}

.chapter-text{

    max-width:700px;

    color:#cfcfcf;

    line-height:2;

    margin-bottom:60px;

}

/* ==========================
   EVENT-SEITEN
========================== */

.story-section{

    width:min(92%,var(--content-width));

    margin:0 auto 180px;

}

.story-section .chapter-text{

    max-width:700px;

}

/* ==========================================
   BILDER
========================================== */

.image-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:24px;

    margin-bottom:25px;

}

.image-grid-three{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:24px;

    margin-bottom:25px;

}

.image-row img,
.image-grid-three img{

    width:100%;

    display:block;

    cursor:pointer;

}

/* ==========================================
   FEATURE IMAGE
========================================== */

.feature-image{

    margin:40px 0 25px;

}

.feature-image img{

    width:100%;

    height:70vh;

    object-fit:cover;

    display:block;

    cursor:pointer;

}

.feature-image-small img{

    width:100%;

    height:570px;

    object-fit:cover;

    display:block;

    margin-bottom:25px;

}

/* ==========================================
   EVENTBILDER
========================================== */

.narrow-feature{

    max-width:1000px;

    margin:60px auto;

}

.narrow-feature img{

    width:100%;

    height:auto !important;

    object-fit:contain !important;

}

.portrait-image{

    max-width:700px;

    margin:60px auto;

}

.portrait-image img{

    width:100%;

    height:auto !important;

    object-fit:contain !important;

}



/* ==========================================
   HIGHLIGHT MOMENT
========================================== */

.highlight-moment{

    width:min(94%,var(--project-width));

    margin:200px auto;

}

.highlight-moment img{

    width:100%;

    display:block;

    cursor:pointer;

}

.highlight-content{

    max-width:900px;

    margin:80px auto 0;

    text-align:center;

}

.highlight-content span{

    color:var(--accent);

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:.85rem;

}

.highlight-content h2{

    font-size:clamp(3rem,6vw,6rem);

    line-height:1;

    margin:25px 0 40px;

}

.highlight-content p{

    color:#d0d0d0;

    line-height:2;

    margin-bottom:10px;

}

/* ==========================================
   FADE ANIMATION
========================================== */

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:
        opacity .8s ease,
        transform .8s ease;

}

.fade-up.visible{

    opacity:1;

    transform:translateY(0);

}
/* ==========================================
   ARCHIV
========================================== */

.full-gallery{

    width:min(94%,var(--project-width));

    margin:220px auto;

}

.gallery-header{

    text-align:center;

    margin-bottom:80px;

}

.gallery-header span{

    color:var(--accent);

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:.85rem;

}

.gallery-header h2{

    font-size:clamp(2.5rem,5vw,5rem);

    margin:20px 0;

}

.gallery-header p{

    color:#9f9f9f;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

}

.gallery-grid img{

    width:100%;

    display:block;

    cursor:pointer;

    transition:
        transform .4s ease,
        opacity .4s ease;

}

.gallery-grid img:hover{

    transform:scale(1.02);

}

/* ==========================================
   WEITERE PROJEKTE
========================================== */

.next-projects{

    width:min(94%,var(--project-width));

    margin:220px auto;

}

.section-title{

    margin-bottom:60px;

}

.section-title span{

    color:var(--accent);

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:.85rem;

}

.section-title h2{

    font-size:clamp(2rem,4vw,4rem);

    margin-top:15px;

}

.next-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:24px;

}

.next-card{

    position:relative;

    overflow:hidden;

    min-height:420px;

    color:#ffffff;

}

.next-card img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:1s ease;

}

.next-card:hover img{

    transform:scale(1.05);

}

.next-content{

    position:absolute;

    inset:0;

    display:flex;

    align-items:flex-end;

    padding:30px;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.85),
        transparent
    );

}

.next-content h3{

    font-size:1.8rem;

    line-height:1.2;

}

/* =====================
   FOOTER
===================== */

footer{

    padding:0;

    border-top:1px solid rgba(255,255,255,.05);

}

.footer-bar{

    display:grid;

    grid-template-columns:1fr auto 1fr;

    align-items:center;

    color:#777;

}

.footer-left{

    justify-self:start;

}

.footer-center{

    justify-self:center;

}

.footer-right{

    justify-self:end;

    display:flex;

    gap:22px;

    align-items:center;

}

.footer-claim{

    margin-top:18px;

    text-align:center;

    color:#777;

}

.project-footer{

    border-top:1px solid rgba(255,255,255,.05);

    padding:90px 10%;

}

.project-footer p{

    max-width:900px;

    margin:auto;

    font-size:clamp(1.5rem,3vw,2.5rem);

    line-height:1.5;

    color:#d0d0d0;

}

.site-footer{

    border-top:1px solid rgba(255,255,255,.05);

    padding:45px 10% 60px;

}

.footer-content{

    width:min(92%, var(--content-width));

    margin:0 auto;

}


/* ==========================================
   LIGHTBOX
========================================== */

.lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.96);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.3s ease;

    z-index:9999;

}

.lightbox.active{

    opacity:1;

    visibility:visible;

}

.lightbox img{

    max-width:90vw;

    max-height:85vh;

    object-fit:contain;

}

.lightbox-close{

    position:absolute;

    top:30px;

    right:40px;

    background:none;

    border:none;

    color:#ffffff;

    font-size:3rem;

    cursor:pointer;

}

.lightbox-prev,
.lightbox-next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    background:none;

    border:none;

    color:#ffffff;

    font-size:3rem;

    cursor:pointer;

    padding:20px;

}

.lightbox-prev{

    left:30px;

}

.lightbox-next{

    right:30px;

}

/* ==========================================
   BACK TO TOP
========================================== */

.back-to-top{

    position:fixed;

    left:40px;

    bottom:40px;

    width:58px;

    height:58px;

    border:none;

    background:rgba(20,20,20,.92);

    backdrop-filter:blur(10px);

    color:var(--accent);

    font-size:1.5rem;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:.3s ease;

    z-index:999;

}

.back-to-top.visible{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.back-to-top:hover{

    transform:
        translateY(0)
        scale(1.05);

}
/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width:1100px){

    .project-intro{

        grid-template-columns:1fr;

        gap:50px;

    }

    .project-facts{

        grid-template-columns:1fr 1fr;

    }

    .chapter-navigation{

        grid-template-columns:1fr 1fr;

    }

    .gallery-grid{

        grid-template-columns:1fr 1fr;

    }

    .next-grid{

        grid-template-columns:1fr;

    }

}

/* ==========================================
   MOBILE NAVIGATION
========================================== */

@media (max-width:1000px){

    .project-nav{

        padding:20px 25px;

    }

    .project-logo{

        width:170px;

    }

    .menu-toggle{

        display:block;

    }

.project-menu{

    position:fixed;

    top:0;
    right:0;

    width:100vw;
    height:100vh;

    background:#0f0f0f;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:55px;

    z-index:999;

    transform:translateX(100%);

    opacity:0;

    visibility:hidden;

    pointer-events:none;

    transition:
        transform .55s cubic-bezier(.22,.61,.36,1),
        opacity .35s ease;

}

.project-menu.active{

    transform:translateX(0);

    opacity:1;

    visibility:visible;

    pointer-events:auto;

}

    .overview-link{

        color:var(--accent);

        margin:0;

        font-size:1.3rem !important;

    }

}

/* ==========================================
   SMALL DEVICES
========================================== */

@media (max-width:768px){

    .project-nav{

        padding:20px;

    }

    .project-logo{

        width:150px;

    }

    .project-hero{

        height:80vh;

    }

    .image-row,
    .image-grid-three{

        grid-template-columns:1fr;

    }

    .gallery-grid{

        grid-template-columns:1fr;

    }

    .project-facts{

        grid-template-columns:1fr;

    }

    .chapter-navigation{

        grid-template-columns:1fr;

    }

    .chapter-header{

        flex-direction:column;

        align-items:flex-start;

        gap:10px;

    }

    .chapter-header span{

        font-size:4rem;

    }

    .feature-image img{

        height:50vh;

    }

    .highlight-moment{

        margin:120px auto;

    }

    .full-gallery{

        margin:140px auto;

    }

    .next-projects{

        margin:140px auto;

    }

    .project-footer{

        padding:80px 30px;

    }

    .back-to-top{

        left:20px;

        bottom:20px;

        width:50px;

        height:50px;

    }

    .lightbox-prev,
    .lightbox-next{

        font-size:2rem;

    }

    .lightbox-close{

        top:20px;

        right:20px;

        font-size:2.5rem;

    }

}

/* ==========================================
   FOOTER MOBILE
========================================== */

@media (max-width:768px){

    .footer-bar{

        display:flex;
        flex-direction:column;
        align-items:center;
        gap:18px;

    }

    .footer-left,
    .footer-center,
    .footer-right{

        width:100%;
        text-align:center;
        justify-self:center;

    }

    .footer-right{

        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        align-items:center;
        gap:10px 18px;

    }

    .footer-right span{

        display:none;

    }

    .footer-claim{

        margin-top:28px;

        text-align:center;

        letter-spacing:2px;

        line-height:1.7;

        padding:0 20px;

    }

}