:root {
    --pramy-red: #2F562A;
}

body {
    background: linear-gradient(135deg, #c11a2033 0%, #c11a2033 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    font-family: 'Arial', sans-serif;
    background-image: url(../images/10794882.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.logo {
    max-width: 200px;
    margin-bottom: 10px;
}

.coming-soon-container {
    background-color: #ffffff0d;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 3rem 2rem;
    text-align: center;
}

.coming-soon-text {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--pramy-red);
    margin-bottom: 1rem;
}

.under-construction {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.message {
    color: #495057;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    color: white;
}

@media (max-width: 576px) {
    .coming-soon-container {
        padding: 2rem 1rem;
        margin: 1rem;
    }

    .coming-soon-text {
        font-size: 2rem;
    }
}