.comming_soon header,
.comming_soon #banner-row,
.comming_soon footer{
    display:none;
}
.comming_soon #main-content {
    margin:0!important;
     background: rgba(0, 0, 0, 0.65);
}

.coming-soon {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.overlay {
    position: absolute;
}

.content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 20px;
}

.content h1 {
    font-size: 80px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.content p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.contact-info a:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .content h1 {
        font-size: 48px;
    }

    .content p {
        font-size: 18px;
    }

    .contact-info a {
        font-size: 18px;
    }
}