/* Coming Soon Section */
.coming-soon {
    padding: 4rem 2rem;
    text-align: center;
    background: var(--tertiary-color);
    color: white;
    position: relative;
}

.coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: var(--stripe-thickness);
    background: var(--stripe-pattern);
}

.coming-soon h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

.coming-soon p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.notify-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
}

.notify-form input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 0;
    font-size: 1rem;
    background: var(--secondary-color);
    color: white;
}

.notify-form input::placeholder {
    color: #999;
}

.notify-form button {
    padding: 1rem 2rem;
}

@media (max-width: 768px) {
    .notify-form {
        flex-direction: column;
    }
}