:root {
    --text-color: #F8F5F2;
    --accent-color: #8C9784;
    /* Soft olive green */
    --overlay-color: rgba(28, 28, 28, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    overflow: hidden;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.background-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-color);
    backdrop-filter: blur(2px);
}

.content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1.5s ease-out forwards;
}

.logo-container {
    margin-bottom: 4rem;
    text-align: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 8rem;
    font-weight: 200;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.logo-a {
    position: relative;
    display: inline-block;
}

.logo-a::after {
    display: none;
}

.logo-living {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.6em;
    text-transform: uppercase;
    opacity: 0.9;
    margin-top: 1rem;
}

.tagline {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-top: 1.5rem;
    font-weight: 300;
}

.status-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.status-text {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    opacity: 0.9;
}

.loader {
    margin-top: 5rem;
    width: 100px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.loader .line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--text-color);
    transform: translateX(-100%);
    animation: loading 3s infinite ease-in-out;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loading {
    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 3.5rem;
    }

    .status-title {
        font-size: 2.2rem;
    }
}