/* style.css - Minimalist & Clean Architecture */
:root {
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-serif: 'Playfair Display', serif;
    --color-text-primary: #ffffff;
    --color-text-secondary: rgba(255, 255, 255, 0.9);
    --color-overlay: rgba(0, 0, 0, 0.1); /* Very subtle dark overlay */
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: var(--font-primary);
    background-color: #000;
    color: var(--color-text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow: hidden;
}

/* Full-bleed Container */
.full-bleed {
    width: 100vw;
    height: 100vh;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.landing-container {
    position: relative;
    overflow: hidden; /* Contains the background scaling */
}

/* Background Image with gentle scale/pan animation */
.landing-bg {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-image: url('src/img/REVO-MaintenancePage.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: gentlePan 30s ease-in-out infinite alternate;
    z-index: 0;
}

/* Overlay */
.landing-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-overlay);
    z-index: 1;
    pointer-events: none;
}

/* Middle Content Layout (Logo & Message) */
.content-middle {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6vw;
    z-index: 2;
}

.brand-logo {
    font-family: var(--font-serif);
    font-size: clamp(4rem, 12vw, 10rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.02em;
}

.brand-message {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 400;
    text-align: right;
    line-height: 1.2;
}

/* Bottom Footer Layout (Maintenance & Copyright) */
.content-bottom {
    position: absolute;
    bottom: 3vh;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 4vw;
    z-index: 2;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: var(--color-text-secondary);
}

.bottom-left p {
    margin: 0;
    line-height: 1.5;
    animation: breatheText 4s ease-in-out infinite;
}

/* Animations */
@keyframes gentlePan {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.05) translate(-1%, -1%);
    }
}

@keyframes breatheText {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
}

.bottom-right p {
    margin: 0;
}
