.facofest-coming-soon {
    min-height: 100vh;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.facofest-container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.facofest-logo {
    flex: 1;
    text-align: center;
}

.facofest-logo img {
    max-width: 100%;
    width: 550px;
}

.facofest-content {
    flex: 1;
    text-align: center;
}

.facofest-subtitle {
    display: block;
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 30px;
    opacity: .9;
}

.facofest-content h1 {
    font-size: 5rem;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 15px;
}

.facofest-location {
    font-size: 3rem;
    letter-spacing: 18px;
    font-weight: 200;
    margin-bottom: 15px;
}

.facofest-date {
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

.facofest-divider {
    width: 120px;
    height: 2px;
    background: rgba(255,255,255,.4);
    margin: 0 auto 40px;
}

.facofest-content h2 {
    font-size: 2.3rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
    color: #000;
}

.facofest-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: .85;
}

.facofest-btn {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid #000;
    color: #000;
    text-decoration: none;
    transition: .3s ease;
    letter-spacing: 2px;
}

.facofest-btn:hover {
    background: #000;
    color: #fff;
}

@media (max-width: 991px) {

    .facofest-container {
        flex-direction: column;
        gap: 40px;
    }

    .facofest-logo img {
        width: 320px;
    }

    .facofest-content h1 {
        font-size: 3rem;
    }

    .facofest-location {
        font-size: 1.8rem;
        letter-spacing: 10px;
    }

    .facofest-date {
        font-size: 1rem;
    }

    .facofest-content h2 {
        font-size: 1.5rem;
    }

    .facofest-subtitle {
        font-size: 1rem;
    }
}