/* Override body background for ComingSoon page */
body:has(.coming-soon-container) {
    background: linear-gradient(135deg, #1a4d6f 0%, #2d7aa0 100%);
    margin: 0;
    padding: 0;
}

.coming-soon-container {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: system-ui, -apple-system, sans-serif;
    overflow: hidden;
    background: linear-gradient(135deg, #1a4d6f 0%, #2d7aa0 100%);
}

.gradient-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a4d6f 0%, #2d7aa0 100%);
    z-index: -1;
}

.coming-soon-content {
    text-align: center;
    z-index: 1;
    max-width: 600px;
    padding: 2rem;
    animation: fadeIn 0.6s ease-in-out;
    border: none;
    outline: none;
}

/* Reset any global heading styles */
.coming-soon-content h1,
.coming-soon-content h2,
.coming-soon-content h3,
.coming-soon-content p {
    border: none;
    outline: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-section {
    margin-bottom: 2rem;
}

.logo {
    font-size: 6rem;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
    display: inline-block;
    user-select: none;
}

.logo:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.4));
}

.coming-soon-title {
    font-size: 3.5rem;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    letter-spacing: -1px;
    border: none;
    outline: none;
    padding: 0;
    background: transparent;
}

.coming-soon-slogan {
    font-size: 1.5rem;
    color: #ff6b35;
    margin: 0 0 1rem 0;
    font-weight: 500;
}

.coming-soon-description {
    font-size: 1rem;
    color: #d0d0d0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Countdown Styles */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.countdown-box {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    min-width: 100px;
    backdrop-filter: blur(10px);
}

.countdown-number {
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 0.75rem;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Button Styles */
.button-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.btn-primary {
    background-color: #ff6b35;
    color: #ffffff;
    width: 100%;
}

.btn-primary:hover:not(:disabled) {
    background-color: #e55a26;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    width: 100%;
}

.btn-secondary:hover:not(:disabled) {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Alert Styles */
.alert {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 8px;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background-color: rgba(39, 174, 96, 0.2);
    color: #27ae60;
    border-left: 4px solid #27ae60;
}

.alert-error {
    background-color: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border-left: 4px solid #e74c3c;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-out;
}

.modal {
    background-color: #ffffff;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.modal-header h2 {
    margin: 0;
    color: #1a4d6f;
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: #333;
}

.modal-body {
    padding: 2rem;
}

.modal-body p {
    margin: 0 0 1.5rem 0;
    color: #666;
    line-height: 1.6;
}

.modal-footer {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid #f0f0f0;
    justify-content: flex-end;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #1a4d6f;
    box-shadow: 0 0 0 3px rgba(26, 77, 111, 0.1);
}

.form-textarea {
    resize: vertical;
}

.form-error {
    display: block;
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 2.5rem;
    }

    .coming-soon-slogan {
        font-size: 1.25rem;
    }

    .logo {
        font-size: 4rem;
    }

    .countdown-container {
        gap: 0.5rem;
    }

    .countdown-box {
        min-width: 70px;
        padding: 1rem 0.75rem;
    }

    .countdown-number {
        font-size: 1.75rem;
    }

    .countdown-label {
        font-size: 0.65rem;
    }

    .button-group {
        margin: 1.5rem 0;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .modal-footer {
        flex-direction: column-reverse;
    }

    .modal-footer .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .coming-soon-content {
        padding: 1rem;
    }

    .coming-soon-title {
        font-size: 1.75rem;
    }

    .coming-soon-slogan {
        font-size: 1rem;
    }

    .coming-soon-description {
        font-size: 0.9rem;
    }

    .logo {
        font-size: 3rem;
    }

    .countdown-container {
        gap: 0.25rem;
    }

    .countdown-box {
        min-width: 60px;
        padding: 0.75rem 0.5rem;
    }

    .countdown-number {
        font-size: 1.25rem;
    }

    .countdown-label {
        font-size: 0.6rem;
    }
}

/* Footer Styles */
.coming-soon-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 1.5rem 1rem;
    z-index: 1;
    background: transparent;
}

.coming-soon-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .coming-soon-footer {
        padding: 1rem;
    }

    .coming-soon-footer p {
        font-size: 0.75rem;
    }
}
