@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body.page-template-page-coming-soon {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

.coming-soon-container {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    animation: fadeIn 1s ease-out;
}

.coming-soon-container h1 {
    color: #3a7bd5;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.coming-soon-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
    font-weight: 300;
}

.coming-soon-form {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.coming-soon-form input[type="email"] {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 30px 0 0 30px;
    width: 250px;
    font-size: 1rem;
}

.coming-soon-form button {
    background-color: #3a7bd5;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.coming-soon-form button:hover {
    background-color: #2c5ea3;
}

.coming-soon-message {
    margin-top: 1rem;
    font-weight: 300;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.coming-soon-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.5" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,213.3C672,224,768,224,864,213.3C960,203,1056,181,1152,181.3C1248,181,1344,203,1392,213.3L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: 1440px 100px;
    animation: wave 10s linear infinite;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes wave {
    0% { background-position-x: 0; }
    100% { background-position-x: 1440px; }
}