/* ==================== Coming Soon Page Styles ==================== */

body {
    background-image: url('../media/default_page_media/slideshow1.webp');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.coming-soon-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    position: relative;
}

.coming-soon-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.coming-soon-content {
    position: relative;
    z-index: 2;
    text-align: center;
    background-color: var(--white);
    padding: 80px 60px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    max-width: 600px;
}

.logo-large {
    width: 150px;
    height: 150px;
    margin-bottom: 30px;
}

.coming-soon-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.coming-soon-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .coming-soon-content {
        padding: 60px 40px;
    }

    .coming-soon-content h1 {
        font-size: 2rem;
    }

    .coming-soon-content p {
        font-size: 1rem;
    }

    .logo-large {
        width: 120px;
        height: 120px;
    }
}
