:root {
    --primary-bg: #1a1a1a;
    --text-color: #ffffff;
    --accent-color: #9ab491; /* A soft sage green to match the rural theme */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

/* Background setup */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/_cerrado/fondo-portada.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    filter: brightness(0.85);
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    z-index: -1;
}

.container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 2rem;
    text-align: center;
}

/* Logos at the top */
.logos {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    animation: fadeInDown 1.2s ease-out;
}

.logo-stars {
    height: 60px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.logo-main {
    height: 60px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Central content */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
}

.status {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
    animation: scaleIn 1.5s ease-out;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: clamp(1rem, 3vw, 1.35rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    max-width: 600px;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.8);
    opacity: 0.9;
    animation: fadeInUp 1.2s ease-out 0.5s both;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .container {
        padding: 2rem 1rem;
    }
    
    .logos {
        flex-direction: column;
        gap: 1rem;
    }

    .logo-stars, .logo-main {
        height: 50px;
    }

    .status {
        line-height: 1.1;
    }
}
