/* Start custom CSS for html, class: .elementor-element-acbd3ff *//* --- Coming Soon Section Styles --- */
.coming-soon-section {
    background:# ; /* Orange to Gold Gradient */
    color: #000;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden; /* To contain any background elements if added later */
    margin-top: 50px; /* Adjust spacing from previous sections */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.coming-soon-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative; /* For z-index if background effects are added */
    z-index: 1; /* Ensure content is above any background layers */
}

.coming-soon-section .section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.coming-soon-section .section-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.4em;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Countdown Timer within Section */
.countdown-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.countdown-section .countdown-item {
    background: rgba(255, 255, 255, 0.2); /* Slightly transparent white */
    padding: 20px 30px;
    border-radius: 10px;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.countdown-section .countdown-item span:first-child {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2em;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-section .countdown-item span:last-child {
    font-size: 1em;
    text-transform: uppercase;
    opacity: 0.7;
}

/* Subscribe Form within Section */
.subscribe-prompt {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.coming-soon-subscribe-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.coming-soon-subscribe-form input[type="email"] {
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    width: 100%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    outline: none;
    transition: all 0.3s ease;
}

.coming-soon-subscribe-form input[type="email"]::placeholder {
    color: #888;
}

.coming-soon-subscribe-form input[type="email"]:focus {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.6);
}

.coming-soon-subscribe-form button {
    background: #000000; /* Black button for contrast */
    color: #fff;
    padding: 15px 35px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    min-width: 150px;
}

.coming-soon-subscribe-form button:hover {
    background: #333333;
    transform: translateY(-2px);
}

.subscribe-message { /* Re-using style from previous snippet if it exists, or define here */
    margin-top: 10px;
    font-size: 1em;
    color: #ffeb3b; /* A yellow that stands out on the dark background */
}

/* Social Media Links within Section */
.coming-soon-social {
    margin-top: 30px;
}

.coming-soon-social a {
    color: #fff;
    font-size: 2em;
    margin: 0 18px;
    transition: transform 0.3s ease, color 0.3s ease;
    text-decoration: none; /* Remove underline */
}

.coming-soon-social a:hover {
    color: #000000; /* Black on hover for contrast */
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .coming-soon-section .section-title {
        font-size: 2.5em;
    }

    .coming-soon-section .section-description {
        font-size: 1.2em;
    }

    .countdown-section {
        gap: 20px;
    }

    .countdown-section .countdown-item {
        padding: 15px 20px;
        min-width: 100px;
    }

    .countdown-section .countdown-item span:first-child {
        font-size: 2.5em;
    }

    .coming-soon-subscribe-form {
        flex-direction: column;
        align-items: center;
    }

    .coming-soon-subscribe-form input[type="email"] {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .coming-soon-section {
        padding: 60px 15px;
    }
    .coming-soon-section .section-title {
        font-size: 1.8em;
    }
    .coming-soon-section .section-description {
        font-size: 1em;
    }
    .countdown-section .countdown-item span:first-child {
        font-size: 2em;
    }
    .coming-soon-subscribe-form input,
    .coming-soon-subscribe-form button {
        font-size: 0.9em;
        padding: 12px 20px;
    }
    .coming-soon-social a {
        font-size: 1.8em;
        margin: 0 12px;
    }
}/* End custom CSS */