/* 
   THE GENTLEMAN - COMING SOON
   Strict 100vh One-Pager
*/

:root {
    --bg-color: #0E0E0E;
    --text-color: #F4EFEA;
    --accent-gold: #B49A6A;
    --accent-cognac: #7A4A2E;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

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

html,
body {
    height: 100%;
    width: 100%;
    overflow: hidden;
    /* NO SCROLL */
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
}

.one-pager-container {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 80px 100px;
    /* Generous margins */
    position: relative;
    z-index: 10;
}

/* Hero Content */
.hero-content {
    margin-top: 10vh;
    /* Balance vertical placement */
    max-width: 800px;
}

.eyebrow {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #888;
    margin-bottom: 2rem;
    font-weight: 300;
}

h1 {
    font-family: var(--font-serif);
    font-size: 5.5rem;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.subline {
    font-size: 1.5rem;
    color: #999;
    font-weight: 300;
    margin-bottom: 4rem;
    max-width: 500px;
}

/* Status Block */
.status-block {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.status-line {
    width: 60px;
    height: 1px;
    background-color: var(--accent-cognac);
    opacity: 0.6;
}

.status-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
}



/* Impressum Footer */
.impressum-block {
    width: 100%;
}

.impressum-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(180, 154, 106, 0.2), transparent);
    margin-bottom: 2rem;
}

.impressum-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    opacity: 0.7;
}

.impressum-col {
    font-size: 0.8rem;
    line-height: 1.6;
    color: #888;
}

.impressum-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.7rem;
    color: #555;
    margin-bottom: 0.5rem;
}

/* Overlays */
.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    /* Very subtle */
    filter: grayscale(100%) contrast(1.2);
    z-index: 0;
}

.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

.vignette-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle at top right, rgba(180, 154, 106, 0.08), transparent 70%);
    pointer-events: none;
    z-index: 2;
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
}

.fade-in {
    animation: fadeIn 1.5s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Mobile Adjustments */
@media (max-width: 900px) {
    .one-pager-container {
        padding: 40px;
        height: auto;
        min-height: 100vh;
        overflow-y: auto;
        /* Allow scroll on mobile if content overflows */
    }

    h1 {
        font-size: 3.5rem;
    }

    .hero-content {
        margin-top: 5vh;
        margin-bottom: 4rem;
    }

    .impressum-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}