/* 1. Grund-Setup & SEO-Schriftarten */
@import url('https://fonts.googleapis.com/css2?family=Arizonia&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/* --- Variablen und Basis-Reset --- */
:root {
    --primary-blue: #140C58; /* Das dunkle Blau aus deinem Design */
    --text-dark: #23232A;
    --text-light: #EAE9EF;
    --bg-light-grey: #FCFCFC;
    --font-main:  'Noto Sans', sans-serif;
    --font-script: 'Arizonia';
}

* {

    box-sizing: border-box; /* WICHTIG: Padding wird in die Breite eingerechnet, nicht addiert */
}

/* Der Loader-Hintergrund (deckt alles ab) */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000000; /* Ganz oben */
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Die Klasse zum Ausblenden */
#loader-wrapper.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Dein Noto Sans Text-Styling */
.welcome-text {
    font-family: 'Noto Sans', sans-serif;
    color: #1A1A5A;
    font-size: 24px;
    letter-spacing: -0.01em; /* Entspricht -1% */
    line-height: 25px;
    margin-bottom: 50px;
    font-weight: 400;
}

/* Der Container für deine zwei Punkte */
.dual-dot-loader {
    position: relative;
    width: 50px;
    height: 50px;
    animation: rotate-dots 1.2s linear infinite;
}

.dot {
    width: 18px;
    height: 18px;
    background-color: #1A1A5A;
    border-radius: 50%;
    position: absolute;
}

/* Diagonale Positionierung wie in deinem Bild */
.dot:nth-child(1) { top: 0; right: 0; }
.dot:nth-child(2) { bottom: 0; left: 0; }

@keyframes rotate-dots {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Den Standard-Mauszeiger radikal ausblenden */
html, body, a, button, * {
    cursor: none !important;
}

body, 
p, 
h1, 
h2, 
h3, 
span,
.text-main-class { /* Falls du eine Klasse für var(--text-main) hast */
    font-family: 'Noto Sans', sans-serif;
    
    /* Letter Spacing: -1% von der Schriftgröße */
    letter-spacing: -0.01em; 
    
    /* Line Height: 25px (fest definiert) */
    line-height: 25px;
    
    /* Farbe aus deiner Variable */
    color: var(--text-main);
}

/* 2. Gemeinsame Basis für beide Cursor-Elemente */
.cursor-dot, 
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: 999999;
    pointer-events: none; /* Klicks gehen durch den Cursor durch */
    will-change: transform;
    mix-blend-mode: difference; /* Invertiert Farben (Weiß auf Blau, Schwarz auf Weiß) */
}

/* 3. Der kleine Punkt */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    transition: opacity 0.3s ease;
}

/* 4. Der äußere Ring */
.cursor-outline {
    width: 30px;
    height: 30px;
    border: 2px solid #ffffff;
    /* Transition NUR für Größe und Farbe, nicht für die Position! */
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* --- HOVER ZUSTÄNDE --- */

/* Wenn über einen Link gefahren wird (Klasse wird per JS gesetzt) */
.cursor-outline.hover-active {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-color: transparent;
}

.cursor-dot.hover-active {
    opacity: 0; /* Punkt verschwindet beim Hover */
}

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

body {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none;     /* Internet Explorer/Edge */
    user-select: none;         /* Standard (Chrome, Firefox, Opera) */
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-light-grey);
    scroll-behavior: smooth;
}

.script-font {
    font-family: var(--font-script);
    color: var(--primary-blue);
    font-weight: normal;
}

/* --- Header & Navigation --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
   padding: 4rem 10% 0 10%;
    background-color: var(--bg-light-grey);
}

img.sb{
        width: auto;
    height: 100px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover, nav a.active {
    color: var(--primary-blue);
}

nav a.active {
    border-bottom: 2px solid var(--primary-blue);
    padding-bottom: 5px;
}


/* --- Hero Sektion --- */
#hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0 0 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 500px;
    height: auto;
    /* Hier kannst du die Größe deines PNGs anpassen */
}

.hero-text {
   
    padding-left: 2rem;
}

.hero-text h1 {
    font-size: 10rem;
    line-height: 1;
    white-space: nowrap; /* Das verhindert den Zeilenumbruch komplett */
}

.hero-text p{
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.hero-text span{
    font-size: 1rem;
    color: var(--text-dark);
    letter-spacing: 0.01em;
}

.subline {
    display: flex;
    justify-content: center; /* Zentriert die gesamte Zeile unter dem Namen */
    align-items: center;
    gap: 25px; /* Abstand zwischen Text und Strich */
    font-size: 1.1rem;
    letter-spacing: 0.01em;
    color: var(--primary-blue);
    font-weight: 500;
    padding-top: 0.5em;
}

/* Optional: Den Divider (Strich) stylen oder unsichtbar machen */
.divider {
    font-weight: 500;
    
    /* Falls du nur die Lücke willst, ohne den Strich zu sehen:
    visibility: hidden; 
    width: 20px; */
}

/* --- Ornament Divider ---*/
.ornament-divider{
    height: 90px;
    width: 100%;
    /* Füge hier dein Muster als nahtloses Hintergrundbild ein */
    background-image: url('../images/slovak_pattern.png'); 
    background-repeat: repeat-x;
    background-position: center;
    background-size: contain;
    margin-bottom: 4rem;
}

.ornament-divider img {
    /* --- NEU: Verhindert, dass die Bilder gequetscht werden --- */
    height: 100%;
    width: auto;
    flex-shrink: 0; 
}

/* --- Über mich --- */
#about {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0 20%;
    margin-bottom: 6rem;
    gap: 4rem;
    scroll-margin-top: 10em;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    text-align: justify;
}

.about-image {
    flex: 0.8;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    box-shadow: 10px 10px 20px rgba(0,0,0,0.1);
    /* Die leichte Neigung des Bildes aus deinem Design */
    transform: rotate(3deg); 
}

/* --- Akademischer Werdegang --- */
#education {
    position: relative;
    padding: 2rem 15% 4rem 25%; /* Mehr Padding links für das Muster */
    margin-bottom: 4rem;
}

/* Das florale Muster links */
.bg-ornament {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width:800px;
    height: 100%;
    /* Füge hier das blass-lila Muster ein */
    background-image: url('../images/turkic_flower.png');
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.3;
    z-index: -1;
}

#education h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 3rem;
}

.edu-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px dotted #ccc; /* Gepunktete Linie */
}

.edu-item.no-border {
    border-bottom: none;
}

.edu-left h4 {
    font-size: 1rem;
    font-weight: 600;
}

.edu-right {
    text-align: right;
    font-size: 0.95rem;
   
    flex-flow: row;
    display: flex;
    align-items: center;
    gap: 1em;
}


.edu-left span {
    font-size: 0.85rem;
    color: var(--text-main);
}

.ast-guete{
    width: 50px;
    height:100%;
}


/* --- Kunden / Logos --- */
#clients {
    margin-top: 4rem;
    margin-bottom: 4em;
}

.clients-title-container {
    padding: 0 15%;
    margin-bottom: 1.5rem;
}

.clients-title-container h3 {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.clients-logos {
    background-color: #1A1A5A;
    padding: 60px 10%;
    display: flex;
    /* Gleichmäßige Verteilung der Logos */
    justify-content: space-between; 
    align-items: center;
    gap: 30px;
    width: 100%;
    box-sizing: border-box;
}

.clients-logos img {
    /* Wir steuern die Größe NUR über die Höhe */
    height: 70px; 
    width: auto; 
    
    /* Verhindert, dass das Logo in der Breite zusammengedrückt wird */
    flex: 0 0 auto; 
    
    /* Zwingt den Browser, das gesamte SVG-Koordinatensystem anzuzeigen */
    object-fit: contain;
    
    /* WICHTIG: Falls die SVG-Datei intern eine feste Breite hat, 
       macht dieser Befehl sie im Layout wieder flexibel */
    max-width: 180px; 
    
    /* Manche Browser brauchen das, um SVGs nicht abzuschneiden */
    overflow: visible; 
}

/* Responsive Anpassung für Handys */
@media (max-width: 768px) {
    .clients-logos {
        flex-wrap: wrap; /* Logos untereinander, wenn Platz fehlt */
        justify-content: center;
        gap: 40px;
    }
    .clients-logos img {
        height: 40px; /* Etwas kleiner auf dem Smartphone */
    }
}
/* --- Footer --- */
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 10%;
    background-color: var(--bg-light-grey);
    font-size: 0.85rem;
    color: var(--text-main);
}

.footer-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-right a {
    text-decoration: none;
    color: var(--text-main);
}

.footer-right a:hover {
    color: var(--primary-blue);
}

.icon{
    width:100%;
    height:2em;
    transition:ease-in-out 300ms;
}

.icon:hover{
    transform: scale(1.1);
}


/* --- WORK PAGE SPECIFIC STYLES --- */

.work-container h1{
    font-size: 5rem;
    margin: 0;
    padding-bottom: 0.5em;
}

.work-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8em 2em 3em;
}

/* Intro Bereich */
.work-intro {
    max-width: 500px; /* Begrenzt die Textbreite wie im Entwurf */
    margin-bottom: 30px;
}

.script-title {
    font-family: var(--font-script); /* Deine Schreibschrift */
    color: var(--primary-blue);
    font-size: 52px;
    margin-bottom: 15px;
    font-weight: 400;
}

.intro-text {
    font-family: var(--font-main);
    color: var(--text-dark);
    font-size: 15px;
    letter-spacing: -0.01em; /* Deine -1% */
    line-height: 25px;       /* Deine 25px */
    padding-left: 1.5em;
}

/* Das Grid für die Arbeiten */
.work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Exakt 2 Spalten */
    column-gap: 40px;
    row-gap: 60px;
    margin: 0 10em 0 10em;
    padding: 4em;
}

/* Einzelne Projekt-Karte */
/* --- VERBESSERT: Karte als Link stylen --- */
.project-card {
    text-decoration: none; /* Entfernt Unterstreichung */
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: inherit; /* Verhindert, dass der Text blau wird */
}

/* Cursor-Verhalten erzwingen */
.project-card, .project-card * {
    cursor: none !important;
}

.project-image {
    width: 100%;
    overflow: hidden;
    background-color: #f5f5f5;
}

.project-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Subtiler Zoom-Effekt beim Hovern */
.project-card:hover .project-image img {
    transform: scale(1.04);
}

/* Projekt-Titel unter dem Bild */
.project-title {
    font-family: 'Noto Sans', sans-serif;
    color: #1A1A5A;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0;
}

/* --- RESPONSIVE --- */
@media (max-width: 800px) {
    .work-grid {
        grid-template-columns: 1fr; /* Auf Tablets/Handys nur 1 Spalte */
    }
    
    .work-container {
        padding: 40px 20px;
    }
}



/* --- KONTAKT SEITE SPEZIFISCH --- */

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.contact-content {
    padding: 0 40px;
}

/* Grid-Layout: Formular links, Info rechts */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Formular breiter als Info-Teil */
    gap: 80px;
    margin-top: 40px;
}

/* Formular Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Noto Sans', sans-serif;
    color: #1A1A5A;
    font-weight: 400;
    font-size: 16px;
}

.form-group input, 
.form-group textarea {
    font-family: 'Noto Sans', sans-serif;
    border: 1px solid #1A1A5A;
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    outline: none;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Placeholder Farbe */
::placeholder {
    color: #ccc;
    opacity: 1;
}

/* --- RECHTE SEITE INFO LINKS --- */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px; /* Sehr kleiner Abstand zwischen den beiden Zeilen */
    padding-top: 35px; /* Damit es bündig mit der Oberkante des Formulars startet */
}

.info-item {
    display: flex;
    align-items: center; /* Vertikale Zentrierung von Icon und Text */
    gap: 15px; /* Abstand zwischen Icon und Text */
    text-decoration: none;
    color: #1A1A5A;
    font-family: 'Noto Sans', sans-serif;
    transition: opacity 0.2s ease;
}

.info-item:hover {
    opacity: 0.7;
}

.info-icon {
    width: 50px; /* Breite der Icons anpassen */
    height: auto;
    display: block;
}

.info-text {
    font-size: 16px;
    letter-spacing: -0.01em;
    line-height: 1; /* Verhindert unnötigen Platz ober/unter dem Text */
}


/* Responsive für Mobile */
@media (max-width: 850px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        padding-top: 0;
    }
}

/* --- SENDEN BUTTON STYLING --- */

.submit-button {
    align-self: flex-start; /* Button klebt nicht an der ganzen Breite */
    background-color: #1A1A5A; /* Dein Dunkelblau */
    color: #ffffff;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 12px 40px;
    border: none;
    border-radius: 4px;
    cursor: none; /* Wichtig, damit dein Custom Cursor übernimmt */
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

/* Hover-Effekt für den Button */
.submit-button:hover {
    background-color: #2a2a7a; /* Etwas helleres Blau beim Drüberfahren */
    transform: translateY(-2px); /* Kleiner "Lift"-Effekt */
}

/* Klick-Effekt */
.submit-button:active {
    transform: translateY(0);
}

/* Falls das Handy-Layout schmal ist, soll der Button vollbreit sein */
@media (max-width: 600px) {
    .submit-button {
        width: 100%;
    }
}

/* --- SUCCESS OVERLAY STYLING --- */

#success-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    display: flex; /* Bleibt immer flex, nur opacity ändert sich */
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Der Zustand, der am Anfang im HTML stehen muss */
.success-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none; /* Verhindert, dass man das unsichtbare Overlay anklickt */
}

.success-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.success-text {
    font-family: 'Noto Sans', sans-serif;
    color: #000; /* Wie im Screenshot */
    font-size: 18px;
    margin: 0;
}

.success-check {
    width: 120px; /* Größe an deinen grünen Haken anpassen */
    height: auto;
}


.contact-container h1{
    font-size: 5rem;
    margin: 0;
    padding-bottom: 0.5em;
}


/* --- IMPRESSUM SPEZIFISCH --- */

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

.legal-content {
    padding: 0 40px;
    max-width: 800px; /* Begrenzt die Zeilenlänge für bessere Lesbarkeit */
}

/* Der Titel in Schreibschrift */
.legal-content .script-title {
    font-family: 'Dancing Script', cursive; /* Oder deine genaue Schreibschrift-Font */
    font-size: 48px;
    color: #1A1A5A;
    margin-bottom: 40px;
}

/* Text-Blöcke */
.legal-text-block {
    margin-bottom: 30px;
    line-height: 1.6;
    color: #333;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
}

.legal-text-block p {
    margin-bottom: 10px;
}

/* Links im Text */
.legal-text-block a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.legal-text-block a:hover {
    border-bottom: 1px solid #1A1A5A;
}

/* Liste der Fotografien */
.credit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.credit-list li {
    margin-bottom: 5px;
}

/* Responsive Anpassung */
@media (max-width: 768px) {
    .legal-content .script-title {
        font-size: 36px;
    }
}

.legal-container .script-title{
    margin-bottom:40px;
}

.legal-container ul{
    padding-left: 40px;
}

/* --- Responsive Design (Mobilgeräte) --- */
@media only screen and (max-width: 767px) {


    *{
        box-sizing: border-box;
    }

    main{
    width: 100%;
    overflow-x: hidden; /* Sicherung, falls doch was leicht übersteht */
  }
    
    #hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        padding-left: 0;
        margin-top: 2rem;
    }

    .hero-text h1 {
        font-size: 4.5rem;
    }

    #about {
        flex-direction: column;
        padding: 0 5%;
    }

    .about-image {
        margin-top: 0;
        align-self: center;
    }

    .about-image img {
    width: 100%;
    max-width: 300px;
}

    #education {
        padding: 2rem 5%;
    }

    .bg-ornament {
        display: none; /* Versteckt das Muster auf kleinen Bildschirmen */
    }

    .edu-item {
        flex-direction: column;
        gap: 1rem;
    }

    .edu-right {
        text-align: left;
    }

    .clients-logos {
        justify-content: center;
    }
    
    header {
        flex-direction: column;
        gap: 1.5rem;
    }

    nav a{
        font-size: .75rem;
    }

    .hero-image img {
    max-width: 400px;
    height: auto;
}

.hero-text span {
    font-size: .8rem;
}

.about-text h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1em;
    text-align:center;
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    text-align: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

#education h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.clients-title-container {
    padding: 0 15%;
    margin-bottom: 1.5rem;
    text-align: center;
}

footer{
flex-flow: column;
}


footer div{
padding-bottom: 2em;
}

body{
     overflow-x: hidden;
}

.work-container h1 {
    font-size: 3rem;
    text-align: center;
    margin: 0;
    padding-bottom: 0.5em;
}

.intro-text {
    font-family: var(--font-main);
    color: var(--text-dark);
    font-size: 12px;
    text-align: center;
    letter-spacing: -0.01em;
    line-height: 25px;

}

.work-grid {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 40px;
    row-gap: 60px;
    margin: 0 1em 0 1em;
    padding: 4em;
}

    .work-container {
        padding: 40px 20px;
        max-width: 600px;
    }

    .contact-container h1 {
    font-size: 3rem;
    margin: 0;
    line-height: 1em;
    padding-bottom: 0.5em;
    text-align: center;
}

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 2em;
    }


        .contact-info {
        padding-top: 0;
        align-items: center;
    }

    .script-title {
    font-family: var(--font-script);
    color: var(--primary-blue);
    font-size: 45px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 400;
}

.legal-text-block {
    text-align: center;
    line-height: 1.6;
    color: #333;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    margin: 0;
    padding: .5em 2em .5em 2em;
}

}



/* --- PROJEKT DETAIL SEITE --- */

.project-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 100px 20px;
    font-family: 'Noto Sans', sans-serif;
}

/* Zurück Link */
.back-navigation {
    margin-bottom: 40px;
}

.back-link {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    transition: opacity 0.3s;
}

.back-link .arrow {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-left: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
}

.back-link:hover {
    opacity: 0.6;
}

/* Galerie Layout */
.project-gallery {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
    margin-bottom: 60px;
}

.gallery-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.grid-top img {
    width: 100%;
    height: auto;
    display: block;
}

.grid-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.grid-bottom img, .gallery-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Info Bereich */
.project-title {
    font-family: 'Noto Sans', sans-serif; /* Oder deine Headline Font */
    color: #1A1A5A;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
}

.info-description p {
    line-height: 1.6;
    color: #333;
    margin-bottom: 40px;
}

.info-meta-footer {
    font-size: 14px;
    color: #666;
}

/* Tags & Credits */
.info-tags-credits {
    text-align: right;
}

.tag-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.tag-list li {
    margin-bottom: 5px;
    color: #333;
}

.credits {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.credits p span {
    display: block;
}

/* Mobile Responsive */
@media (max-width: 850px) {
    .project-gallery, .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-tags-credits {
        text-align: left;
        margin-top: 20px;
    }
}

/* Spezifisch für das UAT-Layout, falls das untere Bild volle Breite braucht */
.grid-bottom-full img {
    width: 100%;
    height: auto;
    display: block;
}

/* Stellt sicher, dass das rechte Plakat die volle Höhe des linken Bereichs nutzt */
.gallery-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- STEGBAUER SPEZIFISCHES GRID (2x2) --- */

.stegbauer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Zwei gleich breite Spalten */
    gap: 20px;
    margin-bottom: 60px;
}

.stegbauer-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Sorgt dafür, dass alle Bilder die Box füllen */
    display: block;
}

/* Falls du den grauen Platzhalter für die Visitenkarten erst später ersetzt */
.gray-placeholder {
    background-color: #D9D9D9;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

/* Mobile Anpassung: Untereinander stapeln */
@media (max-width: 768px) {
    .stegbauer-grid {
        grid-template-columns: 1fr;
    }
}

/**COOKIES/
/* --- COOKIE BANNER STYLE --- */
.cookie-container {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 550px;
    background-color: #ffffff;
    border: 1px solid #1A1A5A;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    z-index: 10000;
    display: none; /* Wird per JS eingeblendet */
    border-radius: 2px;
}

.cookie-content {
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.cookie-content a {
    color: #1A1A5A;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 20px;
}

.cookie-btn {
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #1A1A5A;
    cursor: none; /* Standard-Maus verstecken */
}

.cookie-btn.accept {
    background-color: #1A1A5A;
    color: #ffffff;
}

.cookie-btn.decline {
    background-color: transparent;
    color: #1A1A5A;
}

/* --- CURSOR INVERT EFFEKT --- */
/* Diese Klassen steuern deinen Ball beim Hovern */
.cursor-outline.cursor-hover {
    width: 50px;
    height: 50px;
    background-color: white; 
    border: none;
    mix-blend-mode: difference; /* Das erzeugt den Invert-Look */
}

.cursor-dot.cursor-hover {
    opacity: 0; /* Kleiner Punkt verschwindet beim Hovern */
}

.cookie-container {
    /* ... deine bestehenden Styles ... */
    display: none; /* Standardmäßig aus */
    opacity: 0;
    transform: translate(-50%, 20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Diese Klasse schaltet das Banner AN */
.cookie-container.show {
    display: block;
    opacity: 1;
    transform: translate(-50%, 0);
}

/* Diese Klasse blendet es wieder AUS */
.cookie-container.fade-out {
    opacity: 0 !important;
    transform: translate(-50%, 20px) !important;
    pointer-events: none;
}

@media screen and (max-width: 1024px) {
    body {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 100dvh;
        
        /* Absicherung gegen horizontales Scrollen */
        overflow-x: hidden; 
        width: 100%;
    }

}

