:root {
    --color-cream: #F5F3EF;
    --color-cream-dark: #EAE6DF;
    --color-brown: #8B7355;
    --color-brown-dark: #6B5843;
    --color-charcoal: #2C2C2C;
    --color-gold: #C9A961;
    --color-white: #FFFFFF;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--color-charcoal);
    background-color: var(--color-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(245, 243, 239, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-brown-dark);
    letter-spacing: 2px;
}

nav {
    display: flex;
    gap: 2.5rem;
}

nav a {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--color-charcoal);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
}

nav a:hover {
    color: var(--color-brown);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-charcoal);
}

/* Main Content */
main {
    margin-top: 90px;
}

section {
    padding: 5rem 5%;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 70vh;
}

.hero-image{
    position: relative;
    width: 100%;
    height: 850px; /* Desktop */
    overflow: hidden;
    display:block;
}

.hero-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display:block;
}

.hero-content h1 {
    margin-bottom: 2rem;
    color: var(--color-brown-dark);
}

.hero-tagline {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-brown);
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.hero-tagline span {
    position: relative;
    padding: 0 1rem;
}

.hero-tagline span:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -0.5rem;
    color: var(--color-gold);
}

.founder-signature {
    margin-top: 2.5rem;
    font-style: italic;
    color: var(--color-brown);
    font-size: 0.95rem;
}

/* Separator */
.separator {
    width: 80px;
    height: 1px;
    background: var(--color-gold);
    margin: 3rem auto;
}

/* Journal Preview Section */
.journal-preview {
    background: var(--color-white);
}

.journal-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.journal-card {
    background: var(--color-cream);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.journal-card:hover {
    transform: translateY(-5px);
}

.journal-card-image{
    position: relative;
    width: 100%;
    height: 360px;            /* etwas höher wirkt edler */
    overflow: hidden;
    background: none;         /* wichtig, wenn vorher ein Gradient als fallback drin war */
}

.journal-card-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
}

/* Premium-Overlay: unten dunkler -> Text immer lesbar */
.journal-card-image::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.65) 0%,
        rgba(0,0,0,0.25) 55%,
        rgba(0,0,0,0.00) 100%
    );
    pointer-events: none;
}

/* Titel im Bild */
.journal-card-title{
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    z-index: 2;

    margin: 0;
    color: #fff;
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.6rem;
    letter-spacing: 0.4px;

    text-shadow: 0 2px 14px rgba(0,0,0,0.65);
}

/* optional: leichtes Hover-Finish */
.journal-card:hover .journal-card-image img{
    transform: scale(1.04);
    transition: transform 0.35s ease;
}


.journal-card-content {
    padding: 1.5rem;
}

.journal-link{
  display:block;
  color: inherit;
  text-decoration: none;
}
.journal-link:hover{ text-decoration: none; }

/* Titel im Bild: zentriert und weiß */
.journal-card-title{
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    width: calc(100% - 36px);
    text-align: center;

    margin: 0;
    color: #fff;
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.7rem;

    text-shadow: 0 2px 14px rgba(0,0,0,0.65);
    z-index: 2;
}

/* DSGVO Checkbox – clean & premium */
.checkbox-group{
    margin-top: 2rem;
}

.checkbox-label{
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #3a3a3a;
}

.checkbox-label input[type="checkbox"]{
    width: 16px;
    height: 16px;
    accent-color: #8f8f8f; /* silber-grau */
    cursor: pointer;
}

.checkbox-text a{
    color: #2f2f2f;
    text-decoration: underline;
}

.checkbox-text a:hover{
    color: #000;
}

.g-recaptcha{
    margin-top: 1.5rem;
}

.g-recaptcha{
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}


.journal-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--color-gold);
}

.journal-card p {
    font-size: 0.95rem;
    color: var(--color-charcoal);
    line-height: 1.7;
}

/* Gallery Section */
.gallery-section {
    background: var(--color-cream-dark);
}

.gallery-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.gallery-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--color-gold) var(--color-cream);
}

.gallery-carousel::-webkit-scrollbar {
    height: 8px;
}

.gallery-carousel::-webkit-scrollbar-track {
    background: var(--color-cream);
}

.gallery-carousel::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 4px;
}

.gallery-item {
    min-width: 400px;
    height: 500px;
    background: linear-gradient(135deg, var(--color-brown-dark) 0%, var(--color-brown) 50%, var(--color-gold) 100%);
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.1rem;
    font-style: italic;
}

/* Testimonial */
.testimonial {
    max-width: 800px;
    margin: 4rem auto;
    text-align: center;
    padding: 3rem;
    background: var(--color-white);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--color-brown-dark);
    line-height: 1.9;
}

.testimonial-author {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    font-style: normal;
    color: var(--color-brown);
    font-weight: 500;
}

/* Button */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--color-brown-dark);
    color: var(--color-cream);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid var(--color-brown-dark);
}

.btn:hover {
    background: transparent;
    color: var(--color-brown-dark);
}

.btn-center {
    text-align: center;
    margin-top: 3rem;
}

/* Philosophy Section */
.philosophy {
    background: var(--color-white);
}

.philosophy-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}
.philosophy-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* 🔥 DAS ist der Fix */
    display: block;
}


.philosophy-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Silberner Rahmen (premium, clean) */
.silver-frame{
    background: #fff;
    border: 10px solid rgba(180,180,180,0.55);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}



.philosophy-content h3 {
    color: var(--color-brown-dark);
    margin-bottom: 1.5rem;
}

.philosophy-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 4rem 0;
}

.pillar {
    text-align: center;
    padding: 2rem;
    background: var(--color-cream);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-white);
}

.pillar h3 {
    color: var(--color-brown-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.pillar p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Journal Page */
.journal-page {
    background: var(--color-white);
}

.journal-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.journal-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

/* Contact Section */
.contact {
    background: var(--color-cream-dark);
}

.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-brown-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--color-cream-dark);
    background: var(--color-cream);
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-charcoal);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-brown);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info {
    text-align: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--color-cream-dark);
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--color-brown-dark);
    margin: 0.5rem 0;
}

/* Footer */
footer {
    background: var(--color-charcoal);
    color: var(--color-cream);
    padding: 3rem 5%;
    text-align: center;
}

footer nav {
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

footer nav a {
    color: var(--color-cream);
}

footer nav a:hover {
    color: var(--color-gold);
}

.footer-contact {
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.footer-contact a {
    color: var(--color-gold);
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

/* Page Visibility */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {

    .hero,
    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .journal-grid,
    .journal-full-grid,
    .philosophy-pillars {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item {
        min-width: 350px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    nav {
        display: none;
    }

    nav.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-cream);
        padding: 2rem 5%;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .mobile-menu-btn {
        display: block;
    }

    section {
        padding: 3rem 5%;
    }

    .journal-grid,
    .journal-full-grid,
    .philosophy-pillars {
        grid-template-columns: 1fr;
    }

    .hero-tagline {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-tagline span::after {
        display: none;
    }

    .gallery-item {
        min-width: 300px;
    }

    .contact-form {
        padding: 2rem;
    }
}

/* Mobile: nicht 850px hoch */
@media (max-width: 768px){
  .hero-image{
    height: 55vh;
    min-height: 320px;
    max-height: 520px;
  }

    .philosophy-image{
    height: 45vh;
    min-height: 280px;
    max-height: 420px;
  }

  #reimg {
    width: 375px !important;
  }
}
