/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --layout-width: 1200px;
}

body {
    background-color: #ffffff;
    color: #4b3f39;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
  scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}
body.work-page {
    overflow: hidden;
    height: 100vh;
    display: grid;
    grid-template-rows: 90px 1fr 80px; /* Navbar / Content / Footer */
}

/* Chrome / Safari */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

html {
    scroll-behavior: smooth;
        height: 100%;

}

.page {
    flex: 1;
    width: 100%;
    margin: 0 auto;
    padding: 32px 34px 80px;
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: center; /* 🔥 wichtig: wieder center */

    width: 100%;

    padding: 24px 34px;

    background: white;

    height: 90px;
}
.navbar--hero {
    justify-content: flex-end; /* 🔥 alles nach rechts */
    background-color: transparent; /* 🔥 transparent */
}

/* NAV LINKS */
.navbar nav {
    display: flex;
    gap: 34px;
}

/* LINKS */
.navbar a {
    color: #4A4039;

    font-family: Impact;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    text-transform: uppercase;
    text-decoration: none;

    transition: opacity 0.2s ease, transform 0.2s ease;
}

.navbar a:hover {
    opacity: 0.7;
    transform: translateY(2px);

}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
}

/* LOGO LINK */
.logo a {
    text-transform: none;

    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 40px;
    letter-spacing: -0.02em;

    transform: scaleY(2);

    color: #4b3f39;
    text-decoration: none;

    display: inline-block;

}

/* HERO */
.hero {
    display: flex;
    flex-direction: column;
    padding-top: 32px;
    position: relative;
    gap: 12px;
        margin-bottom: 150px;

}

/* PANEL (Container der wächst) */
.hero-panel {
    width: 100%;
    height: 240px;              /* Start: kleiner Ausschnitt */
    overflow: hidden;           /* Wichtig! */
    position: relative;
    margin-top: 150px;
    transition: height 0.75s ease, transform 0.75s ease;
}

/* IMAGE */
.hero-image {
    width: 100%;
    height: 100%;

    background-image: url("img/Bayern_Barca-001-2.jpg");
    background-size: cover;
    background-position: center;

    transition: transform 0.75s ease, opacity 0.75s ease;
    transform: scale(1);
}

/* 🔥 Hover */
.hero-panel:hover {
    height: 580px;
    transform: translateY(-155px); /* bewegt sich nach oben */
}

.hero-panel:hover .hero-image {
    transform: scale(1.03);
}

.hero-title {
    font-size: clamp(6.5rem, 12vw, 10rem);
    line-height: 0.82;
    font-weight: 900;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    letter-spacing: -0.02em;
    transform: scaleY(2);
    transform-origin: top left; /* 🔥 wichtig */
    max-width: 5ch;
    margin-top: -100px;
    margin-bottom: 10px;
    transition: transform 0.55s ease;
}

/* 🔥 Hover */
.hero:has(.hero-panel:hover) .hero-title {
    transform: scale(0.5) scaleY(2);
}

.hero-subtitle {
    font-size: clamp(1.5rem, 1vw, 2.5rem);
    transform: scaleY(1.5);
    line-height: 0.82;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    letter-spacing: -0.02em;
    text-transform: uppercase;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    text-align: center;
    padding-top: 60px;
    margin-bottom: 25px;
}
.hero-description {
    font-size: clamp(1rem, 0.8vw, 1.5rem);
    transform: scaleY(1.5);
    line-height: 0.82;
    font-family: DIN Condensed, 'Arial Narrow Bold', sans-serif;
    letter-spacing: -0.02em;
    text-transform: uppercase;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    text-align: center;
}

.hero-date {
    font-size: clamp(0.7rem, 0.6vw, 1rem);
    transform: scaleY(1.5);
    line-height: 0.82;
    font-family: DIN Condensed, 'Arial Narrow Bold', sans-serif;
    letter-spacing: -0.02em;
    text-transform: uppercase;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    text-align: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -40px;
    gap: 12px;

    transition: transform 0.75s ease, margin-top 0.75s ease;
}
.hero-panel:hover ~ .hero-text {
    transform: translateY(-175px);
    margin-top: 0;
}

/* //Recent Work */

.recent-work {
    display: flex;              /* 👈 macht Text nebeneinander */
    gap: 20px;                 /* Abstand zwischen Wörtern */

    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    letter-spacing: -0.02em;

    transform: scaleY(1.8);    /* vertikal gestreckt */
    transform-origin: center;
    transition: transform 0.75s ease, opacity 0.75s ease;

    font-size: 3rem;           /* 👈 GRÖSSER machen */
    line-height: 1;
}

/* SECTION unter Hero */
.puzzle {
     position: relative;
    padding-top: 100px;
    display: grid;
    height: 750px;

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

    gap: 40px; /* wichtig: KEINE Lücken */
}

/* BASIS */
.panel {
    transition: transform 0.85s ease, box-shadow 0.85s ease, opacity 0.85s ease, filter 0.85s ease;
    z-index: 1;
    will-change: transform, box-shadow, opacity;
}

.panel:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.panel-1:hover {
    grid-column: 1 / 3;
    grid-row: 1 / 4;
    z-index: 10;
}

.panel-2:hover {
    grid-column: 2 / 4;
    grid-row: 1 / 3;
    z-index: 10;
}

.panel-2:hover ~ .panel-5 {
    grid-column: 2 / 3;
    grid-row: 3 / 4;

}

.panel-3:hover {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
    z-index: 10;
}

.panel-4:hover {
    grid-column: 1 / 3;
    grid-row: 2 / 4;
    z-index: 10;
}
.panel-5:hover {
    grid-column: 2 / 4;
    grid-row: 2 / 4;
    z-index: 10;
}
.panel-6:hover {
    grid-column: 3 / 4;
    grid-row: 2 / 4;
    z-index: 10;
}
.panel-7:hover {
    grid-column: 3 / 5;
    grid-row: 1 / 3;
    z-index: 10;
}
.panel-8:hover {
    grid-column: 3 / 5;
    grid-row: 2 / 4;
    z-index: 10;
}
.puzzle:has(.panel-8:hover) .panel-7 {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
    z-index: 10;
}
.puzzle:has(.panel-5:hover) .panel-8 {
    grid-column: 4 / 5;
    z-index: 10;
}

.puzzle:has(.panel-4:hover) .panel-1 {
   grid-column: 1 / 2;
    grid-row: 1 / 2;
    z-index: 10;
}
.puzzle:has(.panel-6:hover) .panel-8 {
   grid-column: 4 / 5;
    grid-row: 3 / 4;
    z-index: 10;
}

/* PANEL 1 */
.panel-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  background-image: url("img/recent/Bayern_Barca-019.JPG");
    background-size: cover;

}

/* PANEL 2 */
.panel-2 {
   grid-column: 2 / 3;
    grid-row: 1 / 2;
    background-image: url("img/recent/PHOTO-2026-01-06-17-33-50.jpg");
    background-size: cover;
    background-position: center;
}

/* PANEL 3 */
.panel-3 {
     grid-column: 3 / 4;
    grid-row: 1 / 2;
    background-image: url("img/20250712OW_Polska-3.jpg");
    background-size: cover;
    background-position: center;
}

/* PANEL 4 */
.panel-4 {
  grid-column: 1 / 2;
    grid-row: 3 / 4;
    background-image: url("img/recent/fotikurs/Melina_Feldges-01.jpg");
    background-size: cover;
    background-position: center;
}

/* PANEL 5 */
.panel-5 {
    grid-column: 2 / 3;
    grid-row: 2 / 4;
    background-image: url("img/recent/Eintracht_Union-272.jpg");
    background-size: cover;
    background-position: center;
}

/* PANEL 6 */
.panel-6 {
grid-column: 3 / 4;
    grid-row: 2 / 3;
    background-image: url("img/20260318FCB_FCSG-15.jpg");
    background-size: cover;
    background-position: center;
}

/* PANEL 7 */
.panel-7 {
    grid-column: 4 / 5;
    grid-row: 1 / 3;
    background-image: url("img/20241022Swiss_Indoors-13.jpg");
    background-size: cover;
    background-position: center;
}

.panel-8 {
    grid-column: 3 / 5;
    grid-row: 3 / 4;
    background-image: url("img/THUMBI1.png");
    background-size: cover;
    background-position: center;
}

/* /////////EXPERIENCE */

.experience {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex: 1;
    width: 100%;
    margin: 0 auto;
    padding-left: 32px;
    padding-top: 7%;
    padding-bottom: 80px;
}
.title-pages {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 100px;
    letter-spacing: -0.02em;
    transform: scaleY(2);
    padding-bottom: 40px;

}
.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    padding-right: 34px;
}

.experience-block {
    margin-bottom: 40px;
}

.experience-label {
    display: block;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #4b3f39;
    opacity: 0.4;
    margin-bottom: 8px;
}

.experience-text {
    font-family: "Abel", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #000000c5;
}

.text-experience {
    font-family: "Abel", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #000000c5;
    width: 100%;

}

.bottom-description {
    margin-top: 48px;
}

/* ////////////////// WORK PAGE ////////////////// */

.work {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 100px 0 0 32px;
    min-height: 0; /* 👈 kritisch bei grid/flex */
}

.work-scroll {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    overflow-y: hidden;
    align-items: center;
    min-height: 0; /* 👈 kritisch */
    flex: 1;
    padding: 20px 34px 20px 0;
}

/* Scrollbar clean */
.work-scroll::-webkit-scrollbar {
    height: 8px;
}

.work-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.work-scroll::-webkit-scrollbar-thumb {
    background: transparent ;
    border-radius: 999px;
}

/* PANEL BASIS */
.work-panel {
    flex: 0 0 auto;
    height: 85%;
    width: auto;
    aspect-ratio: 4 / 5;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

/* Hover Effekt */
.work-panel:hover {
    transform: scale(1.08);
}

/* Bilder */

.panel-a {
    background-image: url("img/recent/Bayern_Barca-019.JPG");
}

.panel-b {
    background-image: url("img/recent/PHOTO-2026-01-06-17-33-50.jpg");
    background-position: right;
}

.panel-c {
    background-image: url("img/20250712OW_Polska-3.jpg");
}

.panel-d {
    background-image: url("img/2024_08_03_GC_FCB_18_35_55s_0111.jpg");
}

.panel-e {
    background-image: url("img/recent/Eintracht_Union-272.jpg");
}

.panel-f {
    background-image: url("img/20260318FCB_FCSG-15.jpg");
}

.panel-g {
    background-image: url("img/20241022Swiss_Indoors-13.jpg");
}

.panel-h {
    background-image: url("img/work/LK/20251022Leonie_Köster-6.jpg");
}
.panel-i {
    background-image: url("img/work/em /20250727England_Spanien22-3.jpg");
}
.panel-j {
    background-image: url("img/work/ffv fcb/20251012AXAWomensCup_FFV_FCB-71.jpg");
}
.panel-k {
    background-image: url("img/work/yb fcb/20260221Cup_YB_FCB-36.jpg");
}

.panel-l {
    background-image: url("img/recent/fotikurs/Melina_Feldges-01.jpg");
    background-position: center;
}

/* OVERLAY STANDARD (unsichtbar) */
.work-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 20px;

    background: rgba(0, 0, 0, 0.25); /* leichter dunkler Layer */
    opacity: 0;

    transition: opacity 0.3s ease;

    color: white;
}

/* HOVER EFFECT */
.work-panel:hover .work-overlay {
    opacity: 1;
}

/* TEXT STYLING */
.work-overlay h3 {
    font-family: Impact, sans-serif;
    font-size: 20px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.work-overlay p {
    font-family: "Abel", sans-serif;
    font-size: 14px;
    opacity: 0.9;
}

/* ////WORK DETAIL */

.work-layout {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-top: 60px;
}

.work-detail {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex: 1;
    margin: 0 auto;
    padding: 7% 32px 80px;
}

.detail-image {
    width: 45%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: sticky;
    top: 90px;
    flex-shrink: 0;
}

.work-gallery {
    width: 55%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding-bottom: 80px;
}
.work-layout.work-layout-fotikurs .detail-image {
    width: 40%;
}
.work-layout.work-layout-fotikurs .work-gallery {
    width: 60%;
}
.work-gallery.work-video {
    display: block;
    width: 55%;
    margin: 0;
}
.video-embed {
    width: 100%;
    max-width: 820px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin: 0 auto;
    padding-left: 22px;
    box-sizing: border-box;
}
.video-embed iframe,
.video-embed video {
    width: 100%;
    height: 100%;
    border: 0;
}

.work-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    width: calc(100% - 64px);
    max-width: 100%;
    margin: 10px auto;
    box-sizing: border-box;
}

.work-navigation a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.9rem;
    border: none;
    background: transparent;
    color: #40312c;
    text-decoration: none;
    font-family: 'Abel', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.work-navigation a:hover {
    color: #40312c;
    text-decoration: underline;
    text-underline-offset: 0.18rem;
    text-decoration-thickness: 2px;
}

.work-navigation a.prev::before,
.work-navigation a.next::after {
    font-size: 1.2rem;
    line-height: 1;
}

.work-navigation a.prev::before {
    content: '‹';
    margin-right: 0.5rem;
}

.work-navigation a.next::after {
    content: '›';
    margin-left: 0.5rem;
}
.gallery-note {
    margin-top: 24px;
    margin-bottom: 24px;
    font-family: "Abel", sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4b3f39;
    max-width: 650px;
}
.gallery-item {
    display: block;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

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

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);

    display: none;
    justify-content: center;
    align-items: center;

    z-index: 9999;
}

.lightbox:target {
    display: flex;
}

.lightbox img {
    max-width: 85%;
    max-height: 85%;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px;
    color: white;
    text-decoration: none;
    padding: 20px;
    user-select: none;
}

.prev { left: 20px; }
.next { right: 20px; }

.close {
    position: absolute;
    inset: 0;
}

.work-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: flex-start;

    margin-top: 60px;
}

/* TEXT LINKS */
.work-top-text {
    flex: 1;
}

/* ////CONTACT //// */
.contact-link {
    font-family: "Abel", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #000000c5;
    text-decoration: none;
    transition: opacity 0.2s ease;
    display: block; /* 👈 damit jeder Link eine eigene Zeile hat */
}

.contact-link:hover {
    opacity: 0.5;
}

/* ////ABOUT //// */

/* //////// FOOTER */
.footer {
    position: fixed;

    bottom: 0;
    left: 0;

    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 24px 34px 40px;

    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 0.85rem;

    background: #ffffff;

    z-index: 999;
}

.footer a {
    color: #4b3f39;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer a:hover {
    opacity: 0.7;
}
.right {
    display: flex;
    gap: 10px; /* 👈 Zahl nach Wunsch anpassen, z.B. 32px oder 40px */
}

@media (max-width: 768px) {
    html, body {
        min-height: 100vh;
        overflow: hidden;
    }

    body > * {
        display: none !important;
    }

    body::before {
        content: "This website is only available on desktop computers.\A\APhone version coming soon.";
        display: flex;
        position: fixed;
        inset: 0;
        z-index: 999999;
        padding: 32px;
        background: #ffffff;
        color: #4b3f39;
        font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
        font-size: 24px;
        line-height: 1.5;
        text-align: center;
        justify-content: center;
        align-items: center;
        white-space: pre-wrap;
    }
}
