/* Goldene Momente – Über mich CSS */

.page-content {
    background: #0A0A0A;
}

/* Seitenbezogene Styles – modular ergänzt */

/* ===== HERO ABOUT ===== */
.hero-about {
    background: #0A0A0A;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 85vh;
    padding: 4rem 6% 5rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.hero-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    transform: translateY(-1rem);
}
.hero-about-text {
    position: relative;
    z-index: 1;
}
.hero-about-meta {
    font-size: 0.78rem;
    color: rgba(237, 181, 27, 0.85);
    margin-bottom: 2.2rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    font-weight: 400;
}
.hero-about h1 {
    font-size: clamp(2.1rem, 3.4vw, 3rem);
    color: var(--white);
    margin-bottom: 1.6rem;
    font-weight: 500;
    letter-spacing: -0.5px;
    line-height: 1.25;
}
.hero-about-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 2.2rem;
    font-weight: 300;
    line-height: 1.7;
    max-width: 520px;
    letter-spacing: 0.3px;
}
.btn-hero-about {
    background: rgba(237, 181, 27, 0.92);
    color: var(--black);
    padding: 0 2rem;
    height: 46px;
    line-height: 46px;
    border: 1.5px solid rgba(237, 181, 27, 0.92);
    border-radius: 2px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 1.2px;
    transition: all 0.4s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.btn-hero-about:hover {
    background: transparent;
    color: var(--gold);
    border-color: rgba(237, 181, 27, 0.55);
    transform: translateY(-2px);
}
.btn-hero-mobile {
    display: none;
}
.hero-about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-about-image img {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: cover;
    border-radius: 2px;
    filter: saturate(0.85) contrast(1.02);
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    box-shadow: 0 0 50px rgba(237, 181, 27, 0.08);
}
.hero-about-image img:hover {
    filter: saturate(0.95) contrast(1.05);
    transform: scale(1.02);
    box-shadow: 0 0 60px rgba(237, 181, 27, 0.12);
}

@media (max-width: 900px) {
    .hero-about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    .hero-about-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-about-image img {
        max-width: 320px;
        box-shadow: 0 0 60px rgba(237, 181, 27, 0.10);
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .btn-hero-desktop {
        display: none;
    }
    .btn-hero-mobile {
        display: inline-flex;
        margin: 2rem auto 0;
    }
    .hero-about {
        min-height: auto;
        padding: 3.5rem 6% 4.5rem;
    }
    .hero-about h1 {
        font-size: clamp(1.8rem, 5vw, 2.4rem);
    }
    .hero-about-subtitle {
        font-size: 1rem;
        line-height: 1.65;
    }
    .hero-about-image img {
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .hero-about h1 {
        font-size: clamp(1.8rem, 5vw, 2.4rem);
    }
    .hero-about-subtitle {
        font-size: 1rem;
        line-height: 1.65;
    }
    .btn-hero-desktop {
        display: none;
    }
    .btn-hero-mobile {
        display: inline-flex;
        margin: 2rem auto 0;
    }
    .hero-about-image img {
        max-width: 280px;
    }
}

@media (max-width: 600px) {
    .hero-about {
        min-height: auto;
        padding: 3rem 6% 5rem;
    }
    .hero-about-content {
        transform: translateY(-1.5rem);
    }
    .hero-about h1 {
        font-size: clamp(1.8rem, 5vw, 2.4rem);
    }
    .hero-about-subtitle {
        font-size: 1rem;
        line-height: 1.65;
    }
    .hero-about-image img {
        max-width: 280px;
    }
}

/* ===== HERO SCROLL BUTTON ===== */
.hero-scroll-btn {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    opacity: 0.6;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}
.hero-scroll-btn:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(3px);
}
.hero-scroll-btn svg {
    stroke: var(--gold);
}

@media (max-width: 768px) {
    .hero-scroll-btn {
        display: none;
    }
}

/* ===== HERO STICKY WRAPPER ===== */
.hero-sticky-wrapper {
    position: relative;
    height: 100vh;
    z-index: 1;
    background: #0A0A0A;
}

@media (min-width: 769px) {
    .hero-about {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 100vh;
        min-height: 100vh;
        width: 100%;
        z-index: 1;
    }

    .mission {
        margin-top: 100vh;
        position: relative;
        z-index: 5;
    }
}

@media (max-width: 768px) {
    .hero-sticky-wrapper {
        height: auto;
    }

    .hero-about {
        position: relative;
        height: auto;
        min-height: auto;
    }

    .mission {
        margin-top: 0;
    }
}

/* ===== MISSION ===== */
.mission {
    background: #FFFFFF;
    padding: 5.5rem 6% 4rem;
    position: relative;
    z-index: 2;
}
.mission-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.mission-meta {
    font-size: 0.95rem;
    color: var(--gold-dark);
    letter-spacing: 5.5px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 2.6rem;
}
.mission h2 {
    font-size: clamp(1.8rem, 3.0vw, 2.5rem);
    color: var(--black);
    margin-bottom: 2.5rem;
    font-weight: 500;
    letter-spacing: -0.3px;
    line-height: 1.3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.mission-text p {
    font-size: 1.15rem;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 1.6rem;
    font-weight: 300;
}
.mission-text p:last-of-type {
    margin-bottom: 0;
}
.mission-closing {
    font-weight: 400;
    color: var(--black);
    font-size: 1.2rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .mission { padding: 5rem 6% 4rem; }
    .mission h2 { font-size: clamp(1.6rem, 5vw, 1.9rem); }
    .mission-text p { font-size: 1rem; line-height: 1.75; }
    .mission-meta { letter-spacing: 3px; }
    .mission-closing { font-size: 1.05rem; }
}

/* ===== JOURNEY / TIMELINE ===== */
.journey {
    background: #F5F3EF;
    padding: 5.5rem 6% 4rem;
    position: relative;
    z-index: 2;
}
.journey-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.journey-meta {
    font-size: 0.95rem;
    color: var(--gold-dark);
    letter-spacing: 5.5px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 2.6rem;
}
.journey h2 {
    font-size: clamp(1.8rem, 3.0vw, 2.5rem);
    color: var(--black);
    margin-bottom: 1.6rem;
    font-weight: 500;
    letter-spacing: -0.3px;
    line-height: 1.3;
}
.journey-intro {
    font-size: 1.02rem;
    color: rgba(0,0,0,0.6);
    line-height: 1.75;
    max-width: 650px;
    margin: 0 auto 3.8rem;
    font-weight: 300;
}
.journey-timeline-new {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
    text-align: left;
}
.journey-line {
    position: absolute;
    left: 5px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: rgba(237, 181, 27, 0.5);
}
.journey-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.journey-step-new {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 0.6rem 0;
    position: relative;
}
.journey-dot-new {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    margin-top: 0.35rem;
    transition: all 0.4s ease;
}
.journey-step-new:hover .journey-dot-new {
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(237, 181, 27, 0.4);
}
.journey-text {
    font-size: 1.05rem;
    color: var(--black);
    font-weight: 400;
    letter-spacing: -0.1px;
    line-height: 1.5;
    transition: color 0.4s ease;
}
.journey-step-new:hover .journey-text {
    color: var(--gold-dark);
}

@media (max-width: 768px) {
    .journey { padding: 4rem 6% 3rem; }
    .journey h2 { font-size: clamp(1.6rem, 5vw, 1.9rem); }
    .journey-intro { font-size: 0.98rem; margin-bottom: 2.5rem; }
    .journey-meta { letter-spacing: 3px; }
    .journey-timeline-new { max-width: 100%; }
    .journey-text { font-size: 0.98rem; }
    .journey-step-new { padding: 0.5rem 0; }
    .journey-line { left: 4px; }
    .journey-dot-new { width: 8px; height: 8px; }
}

/* ===== VALUES ===== */
.values {
    background: #FFFFFF;
    padding: 5.5rem 6% 4rem;
    position: relative;
    z-index: 2;
}
.values-inner {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}
.values-meta {
    font-size: 0.95rem;
    color: var(--gold-dark);
    letter-spacing: 5.5px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 2.6rem;
}
.values h2 {
    font-size: clamp(1.8rem, 3.0vw, 2.5rem);
    color: var(--black);
    margin-bottom: 3.5rem;
    font-weight: 500;
    letter-spacing: -0.3px;
    line-height: 1.3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}
.value-item {
    text-align: center;
    padding: 1rem 0.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.value-item:hover {
    transform: translateY(-4px);
}
.value-icon {
    color: var(--gold-dark);
    margin-bottom: 1.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.value-item:hover .value-icon {
    transform: scale(1.08);
}
.value-icon svg {
    stroke: var(--gold);
    width: 48px;
    height: 48px;
}
.value-item h3 {
    font-size: 1.25rem;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 0.6rem;
    letter-spacing: -0.2px;
    line-height: 1.3;
}
.value-item p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
}

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        max-width: 720px;
    }
}

@media (max-width: 768px) {
    .values { padding: 4rem 6% 3rem; }
    .values h2 { font-size: clamp(1.6rem, 5vw, 1.9rem); margin-bottom: 2.5rem; }
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2.2rem;
        max-width: 420px;
    }
    .value-item { padding: 0.5rem 0; }
    .value-icon { margin-bottom: 1.2rem; }
    .value-icon svg { width: 44px; height: 44px; }
    .value-item h3 { font-size: 1.15rem; }
    .values-meta { letter-spacing: 3px; }
}

/* ===== WHY GOLDENE MOMENTE ===== */
.why-gm {
    background: #F5F3EF;
    padding: 5.5rem 6% 4rem;
    position: relative;
    z-index: 2;
}
.why-gm-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.why-gm-meta {
    font-size: 0.95rem;
    color: var(--gold-dark);
    letter-spacing: 5.5px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 2.6rem;
}
.why-gm h2 {
    font-size: clamp(1.8rem, 3.0vw, 2.5rem);
    color: var(--black);
    margin-bottom: 2.5rem;
    font-weight: 500;
    letter-spacing: -0.3px;
    line-height: 1.3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.why-gm-text p {
    font-size: 1.15rem;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 1.6rem;
    font-weight: 300;
}
.why-gm-text p:last-of-type {
    margin-bottom: 0;
}
.why-gm-closing {
    font-weight: 400;
    color: var(--black);
    font-size: 1.2rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .why-gm { padding: 5rem 6% 4rem; }
    .why-gm h2 { font-size: clamp(1.6rem, 5vw, 1.9rem); }
    .why-gm-text p { font-size: 1rem; line-height: 1.75; }
    .why-gm-meta { letter-spacing: 3px; }
    .why-gm-closing { font-size: 1.05rem; }
}

/* ===== CLOSING ===== */
.closing {
    background: var(--black);
    padding: 6rem 6%;
    position: relative;
    z-index: 2;
    text-align: center;
}
.closing-inner {
    max-width: 680px;
    margin: 0 auto;
}
.closing h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    color: var(--white);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.3px;
    margin-bottom: 1.4rem;
}
.closing p {
    font-size: 1.02rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 2.2rem;
}
.btn-closing {
    background: rgba(237, 181, 27, 0.92);
    color: var(--black);
    padding: 0 2.4rem;
    height: 46px;
    line-height: 46px;
    border: 1.5px solid rgba(237, 181, 27, 0.92);
    border-radius: 2px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 1.2px;
    transition: all 0.4s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.btn-closing:hover {
    background: transparent;
    color: var(--gold);
    border-color: rgba(237, 181, 27, 0.55);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .closing { padding: 4.5rem 6%; }
    .closing h2 { font-size: clamp(1.5rem, 5vw, 1.8rem); }
    .closing p { font-size: 0.98rem; }
}