/* HOLZX Coming Soon - Stylesheet */

:root {
    --color-primary: #B8A88A;
    --color-text: #4A4A4A;
    --color-white: #FFFFFF;
    --frame-width: 12px;
}

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

html, body {
    height: 100%;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-primary);
}

/* Page Wrapper */
.page-wrapper {
    min-height: 100vh;
    padding: var(--frame-width);
}

/* Split Layout */
.split-layout {
    position: relative;
    display: grid;
    grid-template-columns: 63% 37%;
    min-height: calc(100vh - 2 * var(--frame-width));
}

/* Linke Spalte - Bild */
.image-column {
    position: relative;
    background-color: var(--color-primary);
    padding: var(--frame-width);
    padding-right: 0;
}

.image-frame {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center left;
}

/* Headline über dem Bild */
.headline {
    position: absolute;
    top: 1.5rem;
    right: 1rem;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    text-align: right;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
}

/* Logo mittig im Bild, auf Höhe des Badges */
.logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo {
    width: 320px;
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.4));
}

/* Rechte Spalte - Content */
.content-column {
    background-color: var(--color-primary);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem;
    padding-left: 2rem;
}

.content-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.description {
    font-size: 1.05rem;
    color: var(--color-text);
    line-height: 1.65;
    max-width: 300px;
}

/* Kontakt */
.contact {
    color: var(--color-white);
}

.contact address {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.7;
}

.contact strong {
    font-weight: 700;
}

.contact a {
    color: var(--color-white);
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/* Badge - im normalen Flow */
.badge {
    background-color: var(--color-text);
    color: var(--color-white);
    padding: 2rem;
    border-radius: 50%;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.35;
    width: 270px;
    height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    margin: 2rem 0;
}

/* Responsive - Tablet */
@media (max-width: 1100px) {
    .headline {
        font-size: 1.6rem;
    }

    .description {
        font-size: 0.95rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    :root {
        --frame-width: 8px;
    }

    .split-layout {
        grid-template-columns: 1fr;
        grid-template-rows: 55vh auto;
    }

    .image-column {
        padding: var(--frame-width);
        padding-bottom: 0;
    }

    .headline {
        top: 1rem;
        right: 1rem;
        font-size: 1.4rem;
    }

    .logo-overlay {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .logo {
        width: 200px;
    }

    .badge {
        width: 160px;
        height: 160px;
        font-size: 1.1rem;
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .content-column {
        padding: 2rem 1.5rem;
        padding-top: 3rem;
    }

    .description {
        margin-bottom: 2rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.description {
    animation: fadeIn 0.8s ease-out;
}

.headline {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.badge {
    animation: fadeIn 0.6s ease-out 0.4s both;
}
