:root {
    --primary-color: #e46852;
    --secondary-color: #e46852;
    --text-color-light: #ffffff;
    --text-color-dark: #4a5568;
    --text-color-muted: #718096;
    --text-color-headings: #374151;
    --text-color-outerspace: rgb(37, 37, 37);
    --bg-color-light: #ffffff;
    --bg-color-medium: #f9fafb;
    --bg-color-overlay: rgba(0, 0, 0, 0.6);
    --border-color-light: #e5e7eb;
    --border-color-medium: #d1d5db;
    --shadow-color-medium: rgba(0, 0, 0, 0.1);
    --shadow-color-light: rgba(0, 0, 0, 0.05);
    --border-radius-default: 12px;
    --border-radius-button: 12px;
    --border-radius-image: 0.5rem;
    --font-sans: 'Poppins', sans-serif;
    --font-display: "Julius Sans One", sans-serif;
    --header-height-approx: 60px;
    --breakpoint-mobile: 768px;
    --shadow-color-strong: rgba(0, 0, 0, 0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-sans);
    background-color: var(--bg-color-light);
    color: var(--text-color-dark);
    min-height: 100vh;
    line-height: 1.6;
    position: relative;
}
body.body-menu-open {
    overflow: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.is-hidden { display: none !important; }

.header {
    z-index: 50;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, padding 0.3s ease-in-out, border-radius 0.3s ease-in-out;
    display: flex;
    align-items: center;
}

.desktop-view-active.header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    border-radius: var(--border-radius-default);
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
}
.desktop-view-active.header.header-scrolled {
    background-color: var(--bg-color-light);
    box-shadow: 0 4px 6px -1px var(--shadow-color-medium), 0 2px 4px -1px var(--shadow-color-light);
    padding: 0.25rem 0.75rem;
}

.mobile-view-active.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 40;
    background: transparent;
    padding: 0.5rem 0;
    justify-content: flex-start;
    transform: none;
    border-radius: 0;
    min-height: calc(1.5rem + 1.8rem);
}

.header-nav {
    margin: 0 auto; padding: 0.25rem 0; width: 100%; max-width: 1280px;
    display: block;
}
.header-nav .nav-links-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}
.nav-link { color: var(--text-color-light); transition: color 0.3s ease; font-size: 0.9rem; white-space: nowrap; }
.nav-link:hover { color: var(--secondary-color); }
.header-scrolled .nav-link { color: var(--text-color-headings); }
.header-scrolled .nav-link:hover { color: var(--secondary-color); }
.nav-link.current-page { font-weight: 500; }

.desktop-view-active.header:not(.header-scrolled) .nav-link,
.desktop-view-active.header:not(.header-scrolled) .language-button {
    color: var(--text-color-light);
}
.desktop-view-active.header:not(.header-scrolled) .nav-link:hover,
.desktop-view-active.header:not(.header-scrolled) .language-button:hover {
    color: var(--secondary-color);
}

.language-selector { position: relative; margin-left: 1rem; }
.language-button { display: flex; align-items: center; background: none; border: none; cursor: pointer; color: var(--text-color-light); transition: color 0.3s ease; }
.language-button span { font-size: 0.875rem; }
.language-icon { margin-left: 0.25rem; width: 1rem; height: 1rem; display: flex; align-items: center; justify-content: center; }
.header-scrolled .language-button { color: var(--text-color-headings); }
.language-button:hover { color: var(--secondary-color); }
.language-dropdown { position: absolute; right: 0; margin-top: 0.5rem; width: 6rem; background-color: var(--bg-color-light); box-shadow: 0 10px 15px -3px var(--shadow-color-medium), 0 4px 6px -2px var(--shadow-color-light); border-radius: var(--border-radius-button); overflow: hidden; }
.dropdown-item { display: block; padding: 0.5rem 1rem; font-size: 0.875rem; color: var(--text-color-dark); transition: background-color 0.15s ease-in-out; }
.dropdown-item:hover { background-color: #f3f4f6; }


.hamburger-button {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--text-color-light);
    z-index: 51;
    transition: color 0.3s ease;
    line-height: 1;
    position: absolute;
}

#mainNavLinks.is-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    width: 80%;
    max-width: 300px;
    height: 100vh;
    padding-top: calc(var(--header-height-approx, 60px) + 2rem);
    padding-left: 2rem;
    padding-right: 2rem;
    background-color: var(--bg-color-light);
    box-shadow: 4px 0px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.5rem;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
}
#mainNavLinks.is-mobile-menu.is-active {
    transform: translateX(0);
}
#mainNavLinks.is-mobile-menu .nav-link {
    color: var(--text-color-headings);
    font-size: 1.1rem;
    white-space: normal;
}
#mainNavLinks.is-mobile-menu .nav-link.current-page {
    font-weight: 600;
    color: var(--primary-color);
}
#mainNavLinks.is-mobile-menu .language-selector {
    margin-left: 0;
    margin-top: 1rem;
    align-self: flex-start;
}
#mainNavLinks.is-mobile-menu .language-button {
    color: var(--text-color-headings);
}
#mainNavLinks.is-mobile-menu .language-dropdown {
    position: relative;
    box-shadow: none;
    margin-top: 0.5rem;
    border: 1px solid var(--border-color-light);
}

.mobile-view-active .header-nav { display: none; }

.mobile-view-active .hamburger-button {
    display: block;
    left: 1rem;
    top: 0.75rem;
    transform: none;
}
.mobile-view-active.header.header-scrolled .hamburger-button {
    color: var(--text-color-headings);
}

.desktop-view-active .header-nav { display: block; }
.desktop-view-active .hamburger-button { display: none; }
body:not(.body-menu-open) .desktop-view-active #mainNavLinks.is-mobile-menu {
    transform: translateX(-100%);
}

@media (max-width: var(--breakpoint-mobile)) {
    .header-nav .nav-links-container { gap: 1.5rem; }
    .header-nav .nav-link { font-size: 0.85rem; }
    .header-nav .language-selector { margin-left: 0.5rem; }
}
.hero-section {
    position: relative; min-height: 50vh; display: flex; align-items: center; justify-content: center;
    background-image: linear-gradient(var(--bg-color-overlay), var(--bg-color-overlay)), url('../images/Charly.jpg');
    background-size: cover; background-position: center 20%;
    padding-top: var(--header-height-approx);
    color: var(--text-color-light);
}
.hero-content {
    position: relative; z-index: 10; max-width: 42rem; margin-left: auto; margin-right: auto;
    padding: 3rem 1.5rem; text-align: center;
}
.hero-title { font-size: 3rem; font-weight: 300; margin-bottom: 1.5rem; font-family: var(--font-display); }
.hero-subtitle { font-size: 1.25rem; line-height: 1.75rem; }

.about-section {
    padding: 5rem 1.5rem;
    background-color: var(--bg-color-medium);
}
.about-container {
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
}
.about-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (min-width: 768px) {
    .about-layout {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 5%;
    }
}
.about-image-column {
    width: 100%;
    margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
    .about-image-column {
        width: 40%;
        flex-shrink: 0;
        margin-bottom: 0;
        order: 2;
    }
}
.about-image {
    border-radius: var(--border-radius-image);
    box-shadow: 0 10px 15px -3px var(--shadow-color-strong), 0 4px 6px -2px var(--shadow-color-strong);
    width: 100%;
}
.about-text-column {
    width: 100%;
    text-align: left;
}
@media (min-width: 768px) {
    .about-text-column {
        width: 55%;
        flex-shrink: 0;
        order: 1;
    }
}
.about-heading { font-size: 2.25rem; line-height: 2.5rem; font-weight: 300; color: var(--text-color-headings); margin-bottom: 1.5rem; }
.about-subheading { font-size: 1.5rem; line-height: 2rem; font-weight: 500; color: var(--text-color-headings); margin-bottom: 1rem; }
.about-subheading.section-separator { margin-top: 2rem; }
.about-paragraph { font-size: 1.125rem; color: var(--text-color-dark); line-height: 1.75; margin-bottom: 1rem; }
.about-paragraph.additional-info { margin-top: 1rem; }

.footer { padding: 2.5rem 0 2rem 0; border-top: 1px solid var(--border-color-light); background-color: var(--bg-color-light); text-align: center; margin-top: 4rem; }
.footer-container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.social-links { display: flex; justify-content: center; align-items: center; gap: 1.75rem; margin-bottom: 1.25rem; }
.social-link { color: var(--text-color-muted); transition: color 0.3s ease; font-size: 1.3rem; line-height: 1; }
.social-link:hover { color: var(--primary-color); }
.social-link i { display: block; }
.legal-links { margin-bottom: 1rem; }
.legal-link { font-size: 0.8rem; color: var(--text-color-muted); text-decoration: none; margin: 0 0.5rem; transition: color 0.3s ease, text-decoration 0.3s ease; }
.legal-link:hover { color: var(--primary-color); text-decoration: underline; }
.copyright { font-size: 0.8rem; color: var(--text-color-muted); line-height: 1.5; }

@media (max-width: var(--breakpoint-mobile)) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .about-section { padding: 3rem 1rem; }
    .about-subheading { font-size: 1.3rem; }
    .about-paragraph { font-size: 1rem; }
}

.gallery-section {
    padding: 6rem 1.5rem;
}
.gallery-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8rem;
}

.gallery-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 1rem;
    padding-right: 1rem;
}
.gallery-image-wrapper {
    width: 100%;
    max-width: 60rem;
    border-radius: var(--border-radius-image);
    overflow: hidden;
    box-shadow: 0 8px 16px -2px var(--shadow-color-light), 0 3px 5px -2px var(--shadow-color-light);
    cursor: pointer;
    margin-bottom: 1rem;
    background-color: var(--bg-color-light);
}
.gallery-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}
.gallery-image-wrapper:hover .gallery-image {
    transform: scale(1.03);
}

.gallery-title {
    margin-top: 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-color-headings);
}
.gallery-meta {
    font-size: 0.875rem;
    color: var(--text-color-muted);
}

.lightbox {
    position: fixed; inset: 0; background-color: rgba(0, 0, 0, 0.9);
    display: flex; justify-content: center; align-items: center;
    z-index: 999; cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
}
.lightbox:not(.is-hidden) {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0s 0s;
}
.lightbox-content {
    max-width: 95%;
    max-height: 90%;
    padding: 1rem;
    cursor: default;
    display: flex;
    justify-content: center;
    align-items: center;
}
.lightbox-image {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}
.lightbox-image-container {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    line-height: 0;
    max-width: 100%;
    max-height: 100%;
}
.lightbox-close-button {
    position: absolute; top: 0.5rem; right: 0.5rem; color: var(--text-color-light); font-size: 1.875rem;
    line-height: 1; background-color: rgba(0, 0, 0, 0.3); border-radius: 9999px;
    width: 2.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: center;
    border: none; cursor: pointer; transition: background-color 0.15s ease-in-out;
    z-index: 1000;
}
.lightbox-close-button:hover { background-color: rgba(0, 0, 0, 0.6); }

@media (min-width: 768px) {
    .lightbox-content {
        max-width: 55%;
        max-height: 50%;
    }
    .lightbox-close-button {
        top: 1rem;
        right: 1rem;
        font-size: 2.25rem;
    }
}

@media (max-width: var(--breakpoint-mobile)) {
    .gallery-section { padding: 4rem 1rem; }
    .gallery-grid { gap: 4rem; }
    .gallery-item { padding-left: 0.5rem; padding-right: 0.5rem; }
    .gallery-title { margin-top: 1.5rem; }
    .hero-content {
        padding: 2rem 1rem;
    }
}

.privacy-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-family: 'Lora', serif;
}

.privacy-container h2, .privacy-container h3 {
    font-family: 'Julius Sans One', sans-serif;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-container address {
    font-style: normal;
    line-height: 1.6;
}

.imprint-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-family: 'Lora', serif;
}

.imprint-container h2 {
    font-family: 'Julius Sans One', sans-serif;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.imprint-container address {
    font-style: normal;
    line-height: 1.6;
}

.contact-form-section {
    padding: 4rem 1.5rem;
    background-color: var(--bg-color-light);
}
.container {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}
.contact-form { }
.form-title { font-size: 1.875rem; font-weight: 300; margin-bottom: 2.5rem; text-align: center; color: var(--text-color-headings); }
.form-group { position: relative; margin-bottom: 2.5rem; }
.form-group-submit { margin-top: 3rem; margin-bottom: 0; text-align: center; }
.form-input, .form-textarea { width: 100%; border: none; border-bottom: 1px solid var(--border-color-medium); padding: 1.25rem 0 0.5rem 0; font-size: 1rem; color: var(--text-color-dark); background-color: transparent; outline: none; transition: border-color 0.3s ease; position: relative; z-index: 1; }
.form-textarea { min-height: calc(1.6em * 3 + 1.75rem); resize: vertical; overflow: auto; transition: min-height 0.3s ease, border-color 0.3s ease; }
.form-label { position: absolute; top: 1.25rem; left: 0; font-size: 1rem; color: var(--text-color-outerspace); pointer-events: none; transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease; z-index: 0; }
.form-input:focus + .form-label, .form-input:not(:placeholder-shown) + .form-label, .form-textarea:focus + .form-label, .form-textarea:not(:placeholder-shown) + .form-label, .form-group.is-active .form-label { top: 0; font-size: 0.75rem; color: var(--text-color-outerspace); }
.form-input::placeholder, .form-textarea::placeholder { color: transparent; }
.underline { position: absolute; bottom: 0; left: 0; height: 2px; width: 100%; background-color: var(--text-color-outerspace); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; z-index: 2; }
.form-input:focus ~ .underline, .form-textarea:focus ~ .underline, .form-group.is-active .underline { transform: scaleX(1); }
.form-textarea:focus { min-height: calc(1.6em * 5 + 1.75rem); }
.form-button { display: inline-block; padding: 0.75rem 2rem; border-radius: var(--border-radius-button); background-color: transparent; border: 2px solid var(--text-color-outerspace); color: var(--text-color-outerspace); font-size: 0.875rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; cursor: pointer; transition: all 0.3s ease; text-align: center; }
.form-button:hover { background-color: var(--text-color-outerspace); color: var(--text-color-light); }

.contact-info-minimal { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--border-color-light); text-align: center; }
.info-heading-minimal { font-size: 1.25rem; font-weight: 400; margin-bottom: 1.5rem; color: var(--text-color-outerspace); text-transform: uppercase; letter-spacing: 0.05em; }
.info-line { color: var(--text-color-dark); margin-bottom: 0.75rem; font-size: 0.95rem; line-height: 1.6; }
.info-icon-inline { color: var(--primary-color); margin-right: 0.5em; font-size: 1.1em; vertical-align: middle; }
.info-link { color: var(--text-color-dark); text-decoration: none; transition: color 0.3s ease; }
.info-link:hover { color: var(--primary-color); text-decoration: underline; }
.info-small { font-size: 0.875rem; color: var(--text-color-muted); margin-top: 1.5rem; }
.info-social-links-minimal { margin-top: 2rem; display: flex; justify-content: center; gap: 1.5rem; }
.info-social-link { color: var(--text-color-muted); transition: color 0.3s ease; font-size: 1.3rem; }
.info-social-link:hover { color: var(--primary-color); }

@media (max-width: var(--breakpoint-mobile)) {
    .contact-form-section { padding: 3rem 1rem; }
    .form-title { font-size: 1.5rem; margin-bottom: 2rem; }
    .form-group { margin-bottom: 2rem; }
}