/* ============================================= */
/* 1. GLOBAL STYLES & VARIABLEN (UNVERÄNDERT) */
/* ============================================= */

/* Google Fonts Import */

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500&family=Playfair+Display:wght@400;600;700&display=swap');

/* Variablen */

:root {
    --primary-color: #A5A5A5; /* Kühles Nebelgrau */
    --secondary-color: #4F5A65; /* Tiefes Blau-Grau */
    --background-color: #F2F3F5; /* Kühles Off-White */
    --secondary-background-color: #E1E1E1; /* Header */
    --accent-color: #C3B8A6; /* Mattes Silber-Beige */
    --highlight-color: #8D7B6B; /* Gedämpftes Steinbraun */
    
    --main-background-color: #EDEDED; /* Weiches Hellgrau */
    
    /* Neuer, dunklerer Farbton für Navigation und Footer */
    --nav-text-color: #5B5B5B; /* Dunkles Graphitgrau */
    --nav-text-hover: #3F3F3F; /* Tiefes Anthrazit */
    --footer-text-color: #5B5B5B; /* Einheitlich mit Navigation */
    --footer-text-hover: #3F3F3F; /* Etwas dunkler für Hover */

    /* Zusätzliche Farbtöne für Tiefe und Akzente */
    --border-color: #B0A99D; /* Sanftes Steinbeige für Rahmen */
    --button-color: #8D7B6B; /* Gedämpftes Steinbraun für Buttons */
    --button-hover-color: #5B5B5B; /* Tiefgrau für Hover */
    --text-color: #4A4F58; /* Edles Anthrazit für Texte */
    --heading-color: #2E3239; /* Tiefes Schiefergrau für Überschriften */
	
	--nav-height: 100px; /* Falls sich die Höhe mal ändert */
	
}



/* ============================================= */
/* 2. GRUNDLAYOUT - Schriften */
/* ============================================= */


body {
    font-family: 'Jost', sans-serif;
    color: var(--secondary-color);
    background-color: var(--background-color);
}

/* Überschriften mit Playfair Display für Eleganz */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--primary-color);
}

/* Fließtext mit Jost für moderne Leichtigkeit */
p, a, button {
    font-family: 'Jost', sans-serif;
}


/* Texte */
h1 {
    font-size: clamp(1rem, 2.5vw, 1.75rem);
    font-weight: 600;
    color: var(--primary-color);
}

p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 200;
    line-height: 1.4;
    color: var(--secondary-color);
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}





/* ============================================= */
/* KLEINE SMARTPHONES (Xiaomi 13, iPhone 13–15) */
/* ============================================= */
@media (max-width: 430px) {
    h1 {
        font-size: 1.4rem;
        text-align: center;
    }

    h2 {
        font-size: 1.2rem;
        text-align: center;
    }

    p {
        font-size: 1rem;
        line-height: 1.5; /* Erhöhte Lesbarkeit */
    }

    a, button {
        font-size: 1rem;
    }
}

/* ============================================= */
/* GROSSE SMARTPHONES (iPhone Pro Max, große Android Phones) */
/* ============================================= */
@media (min-width: 431px) and (max-width: 768px) {
    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}

/* ============================================= */
/* TABLETS HOCHKANT (iPad, iPad Air, Samsung Tab) */
/* ============================================= */
@media (min-width: 769px) and (max-width: 1024px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1.2rem;
        line-height: 1.7;
    }

    a, button {
        font-size: 1.1rem;
    }
}

/* ============================================= */
/* TABLETS QUERFORMAT (iPad, iPad Air, Samsung Tab) */
/* ============================================= */
@media (min-width: 1025px) and (max-width: 1366px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    p {
        font-size: 1.2rem;
        line-height: 1.7;
    }
}

/* ============================================= */
/* DESKTOP & GROSSE BILDSCHIRME */
/* ============================================= */
@media (min-width: 1367px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    p {
        font-size: 1.3rem;
        line-height: 1.8;
    }
}







/* ============================================= */
/* 3. SEITENLAYOUT & STRUKTUR */
/* ============================================= */




body {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--secondary-color);
    overflow-x: hidden;
}

/* Einheitliche Breite für Header, Main & Footer */
/* Einheitlicher linker Abstand für Header, Main & Footer */

header,
main,
footer,
section {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding-left: 2em; /* Gleicher linker Abstand */
    padding-right: 2em; /* Falls benötigt */
}

/* Header */







/* Header */
header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1350px; /* Gleiche max-width wie main und footer */
    height: var(--nav-height);
    background-color: var(--secondary-background-color);
    display: flex;
    align-items: center;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0 2em;
    box-sizing: border-box;
}

/* Header-Container */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo */
.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--nav-text-color);
    text-decoration: none;
}

/* Burger-Menü */
.burger-menu {
    font-size: 2rem;
    cursor: pointer;
    color: var(--nav-text-color);
    margin-left: 1em;
    display: block; /* Standard: sichtbar */
}





/* Header-Styling */
/* Grundstil für das Logo */
.header-logo {
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: black; /* Standardfarbe */
    transition: color 1.5s ease-in-out;
}

/* Hover-Effekt für das gesamte Logo */
.header-logo:hover {
    color: var(--accent-color); /* Wechselt zu Weiß */
}

/* LXA-Styling */
.lxa {
    display: flex;
    gap: 2px;
    font-family: 'Jost', sans-serif;
    position: relative;
}

/* "A" startet in Grau */
.lxa .a {
    color: var(--secondary-color); /* 75% Schwarz */
    transition: color 1.5s ease-in-out;
    margin-left: -2px;
}

/* "I" flackert */
.lxa .lxai {
    color: transparent;
    animation: flickerI 2.5s infinite alternate;
}

/* Animation für das Flackern des "I" */
@keyframes flickerI {
    0%, 100% { color: transparent; }
    20% { color: rgba(255, 255, 255, 0.3); }
    40% { color: rgba(255, 255, 255, 0.7); }
    60% { color: white; }
    80% { color: rgba(255, 255, 255, 0.4); }
}

/* "A" wird beim Hover von Grau zu Weiß */
.header-logo:hover .a {
    color: rgba(255, 255, 255, 1); /* Wird Weiß beim Hover */
}

/* Standard: "LEXTER ADAM" für Desktop */
.desktop-name {
    display: inline;
}

/* "LEXTER" für Mobile standardmäßig ausblenden */
.mobile-name {
    display: none;
}

/* Ab 768px: "LEXTER ADAM" bleibt sichtbar, "LEXTER" (Mobile) bleibt ausgeblendet */
@media (min-width: 768px) {
    .mobile-name {
        display: none;
    }
    .desktop-name {
        display: inline;
    }
}

/* Unter 768px: "LEXTER" bleibt stehen, aber "LEXTER ADAM" verschwindet */
@media (max-width: 767px) {
    .mobile-name {
        display: inline;
    }
    .desktop-name {
        display: none;
    }
}




.lexter-welcome {
    max-width: 1200px; /* Größere Breite für mehr Wirkung */
    margin: 60px auto; /* Mehr Abstand zur Hero-Sektion */
    padding: 20px;
    text-align: center;
    font-size: 1.75rem; /* Doppelte Schriftgröße */
    font-family: "Jost", sans-serif;
    color: var(--text-color);
}

.lexter-welcome p {
    margin-bottom: 20px; /* Mehr Abstand zwischen den Absätzen */
	font-size: 1.5rem;
}

.lexter-welcome strong {
    font-size: 1.75rem; /* Etwas größer für mehr Impact */
    color: var(--primary-color);
}










/* Galerie Container */
.gallery-container {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 2em 0;
}

/* GRID */
.gallery-grid {
    display: grid;
    gap: 1em;
}

/* Standard: 3x3 Grid */
@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet: 2x3 Grid */
@media (min-width: 768px) and (max-width: 1023px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: Horizontales Scrollen */
@media (max-width: 767px) {
    .gallery-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 0.5em;
        padding: 1em 0;
    }
    .gallery-item {
        flex: 0 0 80%;
        scroll-snap-align: center;
    }
}

/* Galerie Elemente */
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}

/* Info Overlay */
.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6); /* Halbdurchsichtiger schwarzer Hintergrund */
    padding: 0.8em 1.2em; /* Fügt links & rechts gleichmäßigen Abstand hinzu */
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-sizing: border-box; /* Stellt sicher, dass Padding den Rahmen nicht sprengt */
}

/* Sicherstellen, dass der Text 100% weiß bleibt */
.gallery-info h3,
.gallery-info p {
    color: #fff !important; /* Reinweiß, überschreibt alle anderen Styles */
    opacity: 1; /* Stellt sicher, dass keine Transparenz aus anderen Regeln übernommen wird */
    margin: 0; /* Entfernt eventuelle unerwartete Standard-Margins */
    word-wrap: break-word; /* Verhindert, dass Text über den Rand läuft */
    max-width: 100%; /* Sicherstellen, dass kein Überlaufen entsteht */
}

/* Hover Effekt */
.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

/* Hover Effekt */
.gallery-item:hover .gallery-info {
    transform: translateY(0);
}







/* Main */

main {
    text-align: justify;
    background-color: var(--main-background-color);
    color: var(--secondary-color);
    padding-top: calc(var(--nav-height) + 3rem); /* Passt sich dynamisch an */
    padding-bottom: 4em;
    padding-left: 2em;
    padding-right: 2em;

    width: 100%; /* Nimmt immer die gesamte Breite ein */
    max-width: 1350px; /* Bleibt zentriert wie `nav` */
    margin: 0 auto; /* Sorgt für gleiche Zentrierung */
    box-sizing: border-box; /* Stellt sicher, dass Padding enthalten ist */
}



/* ============================================= */
/* KLEINE SMARTPHONES (Xiaomi 13, iPhone 13–15) */
/* ============================================= */
@media (max-width: 430px) {
    body {
        padding: 0;
        overflow-x: hidden; /* Keine horizontale Scrollprobleme */
    }

    header {
        padding: 0.8em;
        left: 0;
        transform: none;
        width: 100%;
    }

    main {
        padding: 1em;
        text-align: left; /* Keine Blocksatz-Probleme */
    }

    header,
    main,
    footer,
    section {
        padding-left: 1em;
        padding-right: 1em;
    }
}

/* ============================================= */
/* GROSSE SMARTPHONES (iPhone Pro Max, große Android Phones) */
/* ============================================= */
@media (min-width: 431px) and (max-width: 768px) {
    header {
        padding: 1em;
        width: 100%;
        left: 0;
        transform: none;
    }

    main {
        padding: 1.5em;
    }

    header,
    main,
    footer,
    section {
        padding-left: 1.5em;
        padding-right: 1.5em;
    }
}

/* ============================================= */
/* TABLETS HOCHKANT (iPad, iPad Air, Samsung Tab) */
/* ============================================= */
@media (min-width: 769px) and (max-width: 1024px) {
    header {
        padding: 1.2em;
        width: 100%;
        left: 0;
        transform: none;
    }

    main {
        padding: 2em;
    }

    header,
    main,
    footer,
    section {
        padding-left: 2em;
        padding-right: 2em;
    }
}

/* ============================================= */
/* TABLETS QUERFORMAT (iPad, iPad Air, Samsung Tab) */
/* ============================================= */
@media (min-width: 1025px) and (max-width: 1366px) {
    header {
        padding: 1.5em;
    }

    main {
        padding: 2.5em;
    }
}

/* ============================================= */
/* DESKTOP & GROSSE BILDSCHIRME */
/* ============================================= */
@media (min-width: 1367px) {
    header {
        padding: 2em;
    }

    main {
        padding: 3em;
    }
}






/* ============================================= */
/* NAVIGATION & BURGER-MENÜ */
/* ============================================= */

.nav-links {
    display: none; /* Standard: ausgeblendet */
    position: absolute;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background-color: var(--secondary-background-color);
    text-align: center;
    padding: 1em 0;
}

/* Menü aktiv (Mobile) */
.nav-links.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

/* Navigation als Liste */
.nav-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links ul li {
    padding: 0.8em 0;
    position: relative;
}

/* Standard-Links */
.nav-links ul li a {
    color: var(--nav-text-color);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

/* Hover-Effekt */
.nav-links ul li a:hover {
    color: var(--nav-text-hover);
}

/* ============================================= */
/* SUBMENU STYLING */
/* ============================================= */

.has-submenu {
    position: relative;
}

/* Submenu Standard-Zustand: Versteckt */
.submenu {
    display: none; /* Standardmäßig versteckt */
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--secondary-background-color);
    list-style: none;
    padding: 0;
    margin: 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 280px;
    visibility: hidden; /* Sicherstellen, dass es nicht sichtbar ist */
    opacity: 0;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

/* Submenu sichtbar machen, wenn aktiv */
.has-submenu.open .submenu {
    display: block;
    visibility: visible;
    opacity: 1;
}

/* Submenu Einträge */
.submenu li {
    padding: 30px ;
	margin: 20px;
    text-align: right;
    white-space: nowrap;
}

/* Einheitliche Abstände */
.submenu li:not(:last-child) {
    margin-bottom: 5px;
}

/* Desktop: Submenu erscheint NUR bei Hover */
@media (min-width: 1024px) {
    .has-submenu:hover .submenu {
        display: block;
        visibility: visible;
        opacity: 1;
    }
}

/* Mobile: Submenu wird untereinander dargestellt */
@media (max-width: 1024px) {
    .submenu {
        display: none; /* Standardmäßig unsichtbar */
        position: static;
        width: 100%;
        text-align: center;
    }

    .submenu.open {
        display: block; /* Wenn über JavaScript aktiviert */
    }


		.submenu li {
        text-align: center; /* Zentriert für kleinere Bildschirme */
        padding-right: 0;   /* Sicherstellen, dass kein rechter Abstand stört */
    }
	
	
}

/* ============================================= */
/* BURGER MENU FIX */
/* ============================================= */

@media (min-width: 1024px) {
    .burger-menu {
        display: none;
    }

    .nav-links {
        display: flex;
        position: static;
        width: auto;
        padding: 0;
    }

    .nav-links ul {
        display: flex;
        gap: 2em;
    }

    .nav-links ul li {
        padding: 0;
    }
	
	    .submenu li {
        text-align: right;
        padding-right: 15px; /* Abstand zum rechten Rand */
    }
}

/* ============================================= */
/* ANIMATION FÜR SANFTES EINBLENDEN */
/* ============================================= */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================= */
/* RESPONSIVE FIXES */
/* ============================================= */

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5em;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--secondary-background-color);
        text-align: center;
        padding: 1em 0;
        transition: all 0.3s ease-in-out;
    }

    .nav-links ul {
        flex-direction: column;
        gap: 1em;
    }

    .burger-menu {
        display: block;
    }

    /* Aktives Menü */
    .nav-links.active {
        display: block;
        animation: fadeIn 0.3s ease-in-out;
    }
	
	.submenu li {
        text-align: center; /* Zentriert für kleinere Bildschirme */
        padding-right: 0;   /* Sicherstellen, dass kein rechter Abstand stört */
    }
	
	
}











/* ============================================= */
/* 5. HERO SECTION */
/* ============================================= */

.hero-container {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-section {
    margin-top: var(--nav-height);  /* Falls sich die Höhe mal ändert */
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Hero-Overlay für den Text */
.hero-overlay {
    position: absolute;
    bottom: 12%;
    left: 5%;
    background: rgba(0, 0, 0, 0.4);
    padding: 15px 25px;
    text-align: left;
    z-index: 2;
    border-radius: 5px;
}

/* Texte im Hero */
.hero-overlay h1,
.hero-overlay h2 {
    color: #FFFFFF !important;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}



/* ============================================= */
/* KLEINE SMARTPHONES (Xiaomi 13, iPhone 13–15) */
/* ============================================= */
@media (max-width: 430px) {
    .hero-section {
        height: 60vh; /* Weniger Höhe für bessere Sichtbarkeit */
    }

    .hero-overlay {
        bottom: 8%; /* Weniger Abstand nach unten */
        left: 3%;
        padding: 10px 15px;
        width: 90%; /* Mehr Platz für den Text */
    }

    .hero-overlay h1 {
        font-size: 1.5rem;
    }

    .hero-overlay h2 {
        font-size: 1.2rem;
    }
}

/* ============================================= */
/* GROSSE SMARTPHONES (iPhone Pro Max, große Android Phones) */
/* ============================================= */
@media (min-width: 431px) and (max-width: 768px) {
    .hero-section {
        height: 65vh;
    }

    .hero-overlay {
        bottom: 10%;
        left: 5%;
        padding: 12px 20px;
    }

    .hero-overlay h1 {
        font-size: 1.7rem;
    }

    .hero-overlay h2 {
        font-size: 1.3rem;
    }
}

/* ============================================= */
/* TABLETS HOCHKANT (iPad, iPad Air, Samsung Tab) */
/* ============================================= */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-section {
        height: 75vh;
    }

    .hero-overlay {
        bottom: 12%;
        left: 5%;
        padding: 15px 25px;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-overlay h2 {
        font-size: 1.5rem;
    }
}

/* ============================================= */
/* TABLETS QUERFORMAT (iPad, iPad Air, Samsung Tab) */
/* ============================================= */
@media (min-width: 1025px) and (max-width: 1366px) {
    .hero-section {
        height: 80vh;
    }

    .hero-overlay {
        bottom: 14%;
    }

    .hero-overlay h1 {
        font-size: 2.2rem;
    }

    .hero-overlay h2 {
        font-size: 1.6rem;
    }
}

/* ============================================= */
/* DESKTOP & GROSSE BILDSCHIRME */
/* ============================================= */
@media (min-width: 1367px) {
    .hero-overlay {
        bottom: 15%;
    }

    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .hero-overlay h2 {
        font-size: 1.8rem;
    }
}

















/* Buttons */
button {
    background-color: var(--background-color);
    color: var(--secondary-color);
    border: 1px solid var(--accent-color);
    padding: 0.6em 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #EEF5F9;
}

/* Hero Carousel */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1350px;
    height: 650px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    z-index: 1;
}

.carousel-text {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 25%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    padding: 3.5em 2.5em;
    color: var(--secondary-color);
}










/* ============================================= */
/* 6. MAIN & SECTIONS */
/* ============================================= */

main {
    text-align: justify;
    background-color: var(--main-background-color);
    color: var(--secondary-color);
    padding-top: calc(var(--nav-height) + 3rem); /* Passt sich dynamisch an */
    padding-bottom: 4em;
    padding-left: 2em;
    padding-right: 2em;
}

/* Lexter Adam - lad Section */
.lad-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    gap: 3em;

    padding-left: 2em; /* Gleicher Abstand links wie `main` */
    padding-right: 2em; /* Gleicher Abstand rechts wie `main` */
    box-sizing: border-box; /* Stellt sicher, dass Padding mit einbezogen wird */
}

/* Text-Bereich */
.lad-section-text {
    flex: 1;
    text-align: left;
    padding-right: 2em;
}

/* Bild-Bereich */
.lad-section-image {
    display: flex;
    justify-content: flex-end;
}

/* Profilbild */
.lad-section-image img {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    filter: grayscale(20%) contrast(90%);
    transition: transform 0.3s ease;
}

.lad-section-image img:hover {
    transform: scale(1.05);
}

/* ============================================= */
/* Textstile für Main-Bereich */
/* ============================================= */

/* Überschriften */
.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5em;
}

/* Standard-Paragraph */
p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--secondary-color);
}

/* Highlight-Stil für Intro-Text */
.intro-highlight {
    font-weight: bold;
    color: var(--highlight-color);
}

/* ============================================= */
/* KLEINE SMARTPHONES (bis 768px) */
/* ============================================= */
@media (max-width: 768px) {
    .lad-section {
        flex-direction: column;
        text-align: center;
		        align-items: flex-start;
    }

    .lad-section-text {
        padding: 0;
    }

    .lad-section-image {
        justify-content: center;
        width: 100%;
    }

    .lad-section-image img {
        width: 100%;
        max-width: 100%;
    }

    .section-title {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* ============================================= */
/* TABLETS HOCHKANT (769px - 1024px) */
/* ============================================= */
@media (min-width: 769px) and (max-width: 1024px) {
    .lad-section {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }

    .lad-section-image {
        width: 33%; /* Bild ist 1/3 der Main-Breite */
    }

    .lad-section-text {
        flex: 1;
        padding-right: 2em;
    }

    .lad-section-image img {
        width: 100%;
        max-width: 100%;
    }

    .section-title {
        font-size: 1.7rem;
    }

    p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}

/* ============================================= */
/* TABLETS QUERFORMAT (1025px - 1366px) */
/* ============================================= */
@media (min-width: 1025px) and (max-width: 1366px) {
    .lad-section {
        flex-direction: row;
        align-items: flex-start;
        padding: 3.5em 2.5em;
    }

    .lad-section-image {
        width: 40%; /* Bild ist 40% der Main-Breite */
    }

    .lad-section-image img {
        width: 100%;
        max-width: 60%;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

/* ============================================= */
/* DESKTOP & GROSSE BILDSCHIRME (ab 1367px) */
/* ============================================= */
@media (min-width: 1367px) {
    .lad-section {
        padding: 4em 3em;
    }

    .lad-section-image {
        width: 40%;
    }

    .lad-section-image img {
        width: 100%;
        max-width: 100%;
    }

    .section-title {
        font-size: 1.8rem;
    }
}















.subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--accent-color);
}



.intro {
    font-style: italic;
    color: var(--highlight-color);
}

blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #ffffff;
    padding: 20px;
    border-left: 5px solid #c7ac6d;
    margin: 40px 0;
}

.highlight {
    font-size: 1.5rem;
    color: #c7ac6d;
    font-style: italic;
}

.italic {
    font-style: italic;
}

.last-line {
    font-size: 1.2rem;
    font-weight: 500;
    color: #c2a153;
    margin-top: 30px;
}

.signature {
    font-size: 1rem;
    font-weight: 300;
    color: #777777;
    margin-top: 50px;
    font-style: italic;
}







/* ============================================= */
/* x1. Lexter's Voice - News Container - Page */
/* ============================================= */






/* ============================== */
/* LEXTER'S VOICE STYLING */
/* ============================== */

/* Grid für Lexter's Voice */
.lexters-voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4em;
    padding: 2em 0;
    justify-content: center;
}

/* Einzelne Einträge für Lexter's Voice */
.lexters-voice-grid .lexters-voice-item {
    background: var(--secondary-background-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-left: 6px solid var(--accent-color);
    overflow: hidden;
    padding: 1.5em;
    transition: transform 0.3s ease-in-out;
}

.lexters-voice-grid .lexters-voice-item:hover {
    transform: translateY(-5px);
}

/* Bildausgabe */
.lexters-voice-grid .lexters-voice-image {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 1em;
}

/* Info-Bereich */
.lexters-voice-grid .lexters-voice-info {
    text-align: left;
}

.lexters-voice-grid .lexters-voice-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.3em;
    color: var(--heading-color);
}

.lexters-voice-grid .lexters-voice-info h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--highlight-color);
    margin-bottom: 0.5em;
}

.lexters-voice-grid .lexters-voice-info p {
    font-size: 1rem;
    line-height: 1.5;
}

/* Datum */
.lexters-voice-grid .lexters-voice-date {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-color);
    margin-top: 1em;
}





/* ============================================= */
/* 8. FOOTER */
/* ============================================= */
footer {
    width: 100%;
    max-width: 1350px; /* Gleiche max-width wie header und main */
    margin: 0 auto; /* Zentriert den Footer */
    text-align: justify;
    background-color: var(--secondary-background-color);
    color: var(--secondary-color);
    padding: 4em 2em; /* Gleicher Padding-Wert wie main */
    box-sizing: border-box;
}

/* Footer-Container */
.footer-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1350px; /* Stellt sicher, dass auch der Inhalt gleich breit ist */
    margin: 0 auto;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-left: 2em; /* Gleicher Abstand wie main */
    padding-right: 2em;
    box-sizing: border-box;
}

/* Einzelne Footer-Blöcke */
.footer-block {
    flex: 1;
    min-width: 150px;
    max-width: 300px;
    text-align: left;
    padding: 1.5em 1em 0 0; /* Etwas kompakter für gleiche Ausrichtung */
    margin: 0;
}

/* Footer-Überschriften */
.footer-block h3 {
    margin-bottom: 10px;
    font-weight: 700;
    text-align: left;
    color: var(--primary-color);
}

/* Footer-Listen ohne Bulletpoints */
.footer-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-block ul li {
    margin: 2px 0;
}

/* Footer-Text */
.footer-block p {
    padding-top: 0.5em;
    font-size: 85%;
    font-weight: 300;
    color: var(--footer-text-color);
    margin: 3px 0 0;
    text-align: left;
}

/* Links in Footer */
.footer-block a {
    color: var(--footer-text-color);
    font-size: 85%;
    font-weight: 300;
    text-decoration: none;
}

.footer-block a:hover {
    text-decoration: underline;
    color: var(--footer-text-hover);
}

/* News-Bereich */
#footer-news-content {
    display: flex;
    flex-direction: column;
    gap: 1.2em;
}

/* Einzelne News-Elemente */
.news-item {
    margin-bottom: 1.5em;
    padding: 1em;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 2px solid var(--highlight-color);
}

.news-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0.5em;
}

.news-item p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--secondary-color);
    text-align: left;
}

.news-date {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--nav-text-color);
}

/* ============================================= */
/* KLEINE SMARTPHONES (bis 768px) */
/* ============================================= */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-block {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 3em 0; /* Verdoppelt */
    }

    .footer-block h3 {
        text-align: center;
        font-size: 2rem; /* Falls du auch die Schriftgröße größer möchtest */
    }

    .footer-block ul {
        text-align: center;
		    font-size: 1.5em;
    }

    /* News-Bereich anpassen */
    #footer-news-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2em; /* Falls vorher ein Abstand existierte, wird er ebenfalls verdoppelt */
    }

    .news-item {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 80%; /* Verdoppelt von 90% auf 80% für eine gleichmäßige Skalierung */
    }

    .news-item h4, 
    .news-item p, 
    .news-date {
        text-align: left;
        max-width: 80%; /* Verdoppelt von 90% auf 80% */
    }
}

/* ============================================= */
/* TABLETS HOCHKANT (769px - 1024px) */
/* ============================================= */
@media (min-width: 769px) and (max-width: 1024px) {
    .footer-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2em;
        text-align: left;
    }

    .footer-block {
        width: 100%;
    }

    .footer-block h3 {
        text-align: left;
    }

    .footer-block ul {
        text-align: left;
		
    }

    /* News-Bereich */
    #footer-news-content {
        display: flex;
        flex-direction: column;
    }
}

/* ============================================= */
/* TABLETS QUERFORMAT & DESKTOP (ab 1025px) */
/* ============================================= */
@media (min-width: 1025px) {
    .footer-container {
        display: grid;
        grid-template-columns: 0.5fr 1fr 0.5fr 1fr;
        gap: 2em;
        text-align: left;
    }

    .footer-block {
        width: 100%;
        max-width: 100%;
    }

    .footer-block h3 {
        text-align: left;
    }

    .footer-block ul {
        text-align: left;
    }

    /* News-Bereich */
    #footer-news-content {
        display: flex;
        flex-direction: column;
    }
}













#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #2E2B26;
    color: white;
    padding: 1.5em; /* GLEICH WIE IM FOOTER */
    display: flex;
    justify-content: space-between; /* Inhalt links, Buttons rechts */
    align-items: center;
    font-size: 0.9em;
}

/* Button-Container */
#cookie-buttons {
    display: flex;
    gap: 1em; /* Abstand zwischen den Buttons */
}

/* Buttons */
#cookie-banner button {
    background: #f5c33e;
    color: black;
    border: none;
    padding: 0.5em 1em;
    cursor: pointer;
    font-size: 0.9em;
}

#cookie-banner button:hover {
    background: #eb8b37;
}


#cookie-modal {
    position: fixed;  /* Stellt sicher, dass das Modal über allem liegt */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px;
    border-radius: 8px;
    display: none;  /* Standardmäßig ausgeblendet */
    z-index: 10000; /* Stellt sicher, dass es über allem liegt */
}





/* Responsive Fixes */
@media (max-width: 768px) {
    footer {
        flex-direction: column;
        text-align: center;
    }
    header {
        justify-content: center;
        padding: 1.5em;
    }
    nav {
        justify-content: center;
    }
    nav ul {
        justify-content: center;
    }
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
}









/* Releases Grid - Volle Main-Breite */

.releases {
	
	margin-top: var(--nav-height);  /* Falls sich die Höhe mal ändert - siehe in Root */	
	
	
}

.release-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2em;
    justify-content: center;
    align-items: start;
    padding: 2em;
    width: 100%;
    max-width: 1400px; /* Nutzt jetzt mehr Breite aus */
    margin: 0 auto; /* Zentriert das Grid */
    box-sizing: border-box;
}

/* Release-Item - Volle Breite */
.release-item {
    background: rgba(245, 246, 249, 0.1); /* Angepasst an --background-color */
    padding: 1.5em;
    border-radius: 0;
    width: 100%;
    height: auto !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Links ausgerichtet */
    box-sizing: border-box;
}

/* Release-Bild */
.release-item img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-bottom: 1em;
}

/* Release-Überschrift mit klickbarem Künstler */
.release-item h3 {
    font-size: 1em;
    font-weight: 500;
    margin-bottom: 0.3em;
    line-height: 1.3;
    text-align: left; /* Links ausgerichtet */
    color: var(--heading-color); /* Dunkler für bessere Lesbarkeit */
}

/* Künstlername */
.release-item h3 a {
    color: var(--nav-text-color); /* Warmes Graphitgrau für bessere Lesbarkeit */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

/* Release-Titel */
.release-title {
    font-weight: 500;
    color: var(--nav-text-color); /* Dunkler für bessere Lesbarkeit */
}

/* Hover-Effekt */
.release-item h3 a:hover {
    text-decoration: underline;
    color: var(--highlight-color); /* Dezentes Honiggold */
}

.release-item:hover {
    box-shadow: 0px 0px 15px rgba(141, 123, 107, 0.3); /* Etwas intensiver für mehr Kontrast */
}

.release-item img {
    transition: transform 0.3s ease-in-out;
}
.release-item img:hover {
    transform: scale(1.05);
}

nav ul li a {
    transition: all 0.3s ease;
}
nav ul li a:hover {
    transform: translateY(-2px);
}

/* Beschreibung */
.release-description {
    font-size: 0.8em;
    font-weight: 400;
    color: var(--nav-text-color); /* Dunkleres Graphitgrau für bessere Lesbarkeit */
    max-width: 100%;
    text-align: justify; /* Blocksatz */
}

/* Meta-Infos (Datum & Dauer) */
.release-meta {
    font-size: 0.85em;
    font-weight: 500;
    color: var(--nav-text-color); /* Dunkler für bessere Lesbarkeit */
    margin-top: 0.5em;
    text-align: left; /* Links ausgerichtet */
    max-width: 100%;
}

/* Streaming-Links */
.release-meta a {
    color: var(--nav-text-hover); /* Dunkler für mehr Kontrast */
    text-decoration: none;
    font-weight: 500;
}

.release-meta a:hover {
    text-decoration: underline;
    color: var(--highlight-color); /* Dezentes Honiggold */
}
