/* Fenistrator - Simplified Coming Soon Aesthetic */

:root {
    --feni-white: #FFFFFF;
    --feni-red-orange: #FF5349;
    --feni-jasmine: #E1EF7E;
    --feni-malibu: #7ED4EF;
    --feni-marigold: #FFB347;
    --text-dark: #1A1A1A;
    --text-muted: #4B5563;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--feni-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('assets/IMG_7002.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.content {
    width: 100%;
    max-width: 600px;
    animation: fadeIn 1.5s ease-out;
    z-index: 1;
    /* Ensure content is above any background layers */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.logo-container {
    margin-bottom: 2.5rem;
}

.brand-logo {
    max-width: 320px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: 3rem;
    color: var(--feni-white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.message p {
    font-size: 1.25rem;
    color: var(--feni-jasmine);
    font-weight: 500;
    letter-spacing: 0.15rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.email-link {
    display: inline-block;
    font-size: 1.25rem;
    color: var(--feni-white);
    text-decoration: none;
    border-bottom: 2px solid var(--feni-marigold);
    padding-bottom: 4px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.email-link:hover {
    color: var(--feni-marigold);
    border-color: var(--feni-white);
    transform: translateY(-2px);
}

.footer {
    position: absolute;
    bottom: 2rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.2rem;
    }

    .brand-logo {
        max-width: 240px;
    }
}