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

/* Body */
body {
    font-family:'Playfair Display',Georgia, "Times New Roman", Times, serif;
    background-color: #0f0f12;
    color: #e7e1d5;
}

/* Layout */
.container {
    display: flex;
    height: 100vh;
}

/* Linke Seite */
.left {
    width: 50%;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Linie oben */
.top-line {
    width: 60%;
    height: 1px;
    background-color: #e7e1d5;
    margin-bottom: 40px;
}

/* Titel */
h1 {
    font-size: 90px;
    font-weight: 400;
    margin-bottom: 10px;
}

/* Untertitel */
.subtitle {
    font-size: 30px;
    margin-bottom: 40px;
    color: #cfc7b8;
}

/* Buttons */
.buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Button Style */
.btn {
    display: inline-block;
    text-align: center;
    padding: 20px;
    width: 260px;
    border-radius: 60px;
    background-color: #d9d0be;
    color: #1a1a1a;
    text-decoration: underline;
    font-size: 20px;
    letter-spacing: 2px;
    transition: 0.3s;
}

/* Hover Effekt */
.btn:hover {
    background-color: #cbbfa9;
}

/* Rechte Seite */
.right {
    width: 50%;
    height: 100%;
}

/* Bild */
.right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== ABOUT SEITE ===== */
/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    background-color: #0f0f12;
    color: #e7e1d5;
    font-family:'Playfair Display', Georgia, "Times New Roman", Times, serif;
}

/* CONTAINER */
.about-container {
    padding: 80px 5%;
}

/* TITEL */
.main-title {
    text-align: center;
    font-size: 64px;
    margin-bottom: 90px;
}

/* LAYOUT → 3 GLEICHE SPALTEN */
.content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* JEDE SPALTE GLEICH BREIT */
.column {
    flex: 1; /* DAS ist der Schlüssel */
    padding: 0 40px;
}

/* MITTLERE SPALTE */
.center {
    display: flex;
    justify-content: center;
}

/* BILD */
.center img {
    width: 380px;
    height: 500px;
    object-fit: cover;
}

/* TEXT */
h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    line-height: 1.7;
    color: #cfc7b8;
}

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

/* BODY */
body {
    background-color: #0f0f12;
    color: #e7e1d5;
    font-family: 'Playfair Display',Georgia, "Times New Roman", Times, serif;
}

/* CONTAINER */
.project-container {
    width: 100%;
}

/* SECTION LAYOUT */
.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;

    padding: 100px 8%;
    max-width: 1400px;
    margin: 0 auto;
}

/* SPALTEN */
.left, .right {
    flex: 1;
}

/* BILDER */
img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* TITEL */
h1 {
    font-size: 56px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.2;
}

h2 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 30px;
}

/* TEXT */
.text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #cfc7b8;
    max-width: 520px;
}

.text-block p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #cfc7b8;
    max-width: 550px;
}

.logline {
    margin-top: 20px;
    line-height: 1.7;
}

/* BUTTON */
.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 40px;
    background-color: #d9d0be;
    color: #1a1a1a;
    text-decoration: underline;
    letter-spacing: 2px;
    font-size: 14px;
    transition: 0.3s;
}

.btn:hover {
    background-color: #cbbfa9;
}

/* TRENNLINIE */
.divider {
    width: 84%;
    height: 1px;
    background-color: #e7e1d5;
    margin: 0 auto;
    opacity: 0.4;
}

/* =========================
   NAVBAR KOMPLETT
========================= */

/* RESET (nur für Navbar relevant) */
.navbar, .nav-container, .nav-links, .logo {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    background-color: rgba(15, 15, 18, 0.9);
    backdrop-filter: blur(10px);

    z-index: 1000;
}

/* CONTAINER */
.nav-container {
    max-width: 1200px;
    margin: 0 auto;

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

    padding: 20px 40px;
}

/* LOGO */
.logo {
    font-size: 16px;
    letter-spacing: 2px;
    color: #e7e1d5;
    font-family: 'Playfair Display',Georgia, "Times New Roman", Times, serif;
}

/* LINKS WRAPPER */
.nav-links {
    display: flex;
    align-items: center;
}

/* LINKS */
.nav-links a {
    margin-left: 30px;
    text-decoration: none;
    color: #e7e1d5;
    font-size: 14px;
    letter-spacing: 2px;
    font-family: 'Playfair Display',Georgia, "Times New Roman", Times, serif;

    position: relative;
    transition: all 0.3s ease;
}

/* UNDERLINE ANIMATION */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;

    width: 0%;
    height: 1px;
    background-color: #e7e1d5;

    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* HOVER */
.nav-links a:hover {
    opacity: 0.7;
}

/* ===== KONTAKT SEITE ===== */

.kontakt-section {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
                url("images/pexels-noblursbyshivam-12631114.jpg"); /* DEIN BILD */
    background-size: cover;
    background-position: center;

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

    text-align: center;
    color: #eae6dc;
    padding: 20px;
}

.kontakt-section h1 {
    font-size: 70px;
    font-weight: 400;
    margin-bottom: 20px;
}

.kontakt-section .intro {
    max-width: 600px;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* BUTTON */
.btn {
    background-color: #d8cfc0;
    color: #000;
    padding: 18px 50px;
    border-radius: 40px;
    text-decoration: underline;
    letter-spacing: 3px;
    font-size: 14px;
    transition: 0.3s;
}

.btn:hover {
    background-color: #c4b8a3;
}

/* KONTAKT INFOS UNTEN LINKS */
.kontakt-info {
    position: absolute;
    bottom: 40px;
    left: 60px;
    text-align: left;
}

.kontakt-info p {
    margin: 10px 0;
    font-size: 16px;
}
.kontakt-info a {
    color: #eae6dc;
    text-decoration: none;
    margin: 0 5px;
}

.kontakt-info a:hover {
    text-decoration: underline;
}

.impressum {
    height: 100vh;
    background-color: #1c1c1c;

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

    text-align: center;
}

/* WICHTIG: verhindert Strecken durch Flexbox */
.impressum a {
    align-self: center;
}

.btn {
    display: inline-flex;           /* WICHTIG */
    justify-content: center;        /* horizontal mittig */
    align-items: center;            /* vertikal mittig */

    margin-top: 50px;

    background-color: #d8cfc0;
    color: black;

    padding: 18px 50px;
    border-radius: 40px;

    text-decoration: underline;
    letter-spacing: 3px;
    font-size: 14px;

    height: 60px;                   /* feste Höhe = perfekte Zentrierung */
}


.datenschutz {
    padding: 100px 20px;
    max-width: 800px;
    margin: 0 auto;

    color: #eae6dc;
    background-color: #1c1c1c;
}

.datenschutz h1 {
    font-size: 50px;
    margin-bottom: 30px;
}

.datenschutz p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.datenschutz a {
    color: #d8cfc0;
}

.datenschutz h2 {
    font-size: 30px;
    }
.casting {
    min-height: 100vh;
    background-color: #1c1c1c;

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

    color: #eae6dc;
    text-align: center;
}

.casting img {
    max-width: 50%;
    height: auto;        /* GANZ wichtig → verhindert Abschneiden */
    display: block;
}

/* ===== HOOVER EFFEKT ===== */
 /* ===== GLOBALER HOVER FÜR ALLE BUTTONS UND LINKS ===== */
button, a {
  transition: all 0.3s ease;
}

button:hover,
a:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* ===== AUSNAHME: NUR PRÄFERENZEN-BUTTON DES COOKIE-BANNERS ===== */
button[aria-label="Toggle preferences"]:hover,
a[aria-label="Toggle preferences"]:hover {
  transform: none !important;
  box-shadow: none !important;
}

/* ===== SMOOTH SCROLLING ===== */
html {
  scroll-behavior: smooth;
}

/* =========================
   MOBILE VERSION (PERFEKT)
========================= */

@media (max-width: 768px) {

    /* GLOBAL */
    body {
        font-size: 14px;
    }

    /* NAVBAR */
    .nav-container {
        padding: 15px 20px;
    }

    .nav-links a {
        margin-left: 15px;
        font-size: 12px;
          z-index: 1500;
    }

    /* HERO / STARTSEITE */
    .container {
        flex-direction: column;
        height: auto;
    }

    .left, .right {
        width: 100%;
    }

    .left {
        padding: 120px 25px 60px;
        text-align: center;
        align-items: center;
    }

    .top-line {
        width: 80%;
        margin: 0 auto 30px;
    }

    h1 {
        font-size: 48px;
        line-height: 1.2;
    }

    .subtitle {
        font-size: 20px;
    }

    .buttons {
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 16px;
        font-size: 16px;
    }

    .right {
        height: 400px;
    }

    .right img {
        height: 100%;
    }

    /* ABOUT */
    .content {
        flex-direction: column;
        gap: 40px;
    }

    .column {
        padding: 0 10px;
        text-align: center;
    }

    .center img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }

    .main-title {
        font-size: 42px;
        margin-bottom: 50px;
    }

    h2 {
        font-size: 28px;
    }

    p {
        font-size: 16px;
    }

    /* PROJECTS */
    .section {
        flex-direction: column;
        gap: 40px;
        padding: 60px 20px;
    }

    img {
        height: 300px;
    }

    .text, .text-block p {
        font-size: 16px;
        max-width: 100%;
    }

    /* KONTAKT */
    .kontakt-section h1 {
        font-size: 40px;
    }

    .kontakt-section .intro {
        font-size: 16px;
        padding: 0 10px;
    }

    .kontakt-info {
        position: static;
        margin-top: 40px;
        text-align: center;
    }

    /* IMPRESSUM */
    .impressum {
        padding: 40px 20px;
    }

    /* DATENSCHUTZ */
    .datenschutz {
        padding: 60px 20px;
    }

    .datenschutz h1 {
        font-size: 32px;
    }

    .datenschutz h2 {
        font-size: 22px;
    }

    /* CASTING */
    .casting img {
        max-width: 90%;
    }
}

/* =========================
   HAMBURGER MENU (MOBILE ADD-ON)
========================= */

/* ICON (standard: unsichtbar auf Desktop) */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: #e7e1d5;
}

/* MOBILE VERSION */
@media (max-width: 768px) {

    /* Hamburger anzeigen */
    .menu-toggle {
        display: flex;
    }

    /* Links verstecken & umbauen */
    .nav-links {
        position: absolute;
        top: 80px; /* passt zu deinem padding-top im body */
        left: 0;
        width: 100%;

        background-color: rgba(15, 15, 18, 0.98);
        backdrop-filter: blur(10px);

        flex-direction: column;
        align-items: center;
        gap: 30px;

        padding: 40px 0;

        display: none; /* erstmal versteckt */
    }

    /* Wenn aktiv → anzeigen */
    .nav-links.active {
        display: flex;
    }

    /* Links größer für Finger */
    .nav-links a {
        margin: 0;
        font-size: 18px;
    }
}