/* style.css */

/* Define a custom color palette */
:root {
    --melba-primary: #007bff; /* Primary Blue */
    --melba-background: #f4f7f6; /* Light Grey Background */
    --melba-dark: #212529; /* Dark text */
}

/* Apply a clean, centered background to the body */
body {
    background-color: var(--melba-dark);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 20px;
}

/* Container to center content and apply background gradient */
.coming-soon-container {
    padding: 40px 20px;
    border-radius: 15px;
    max-width: 900px;
    width: 100%;
    /* Optional subtle gradient background */
    background: linear-gradient(145deg, rgba(0, 123, 255, 0.1) 0%, rgba(33, 37, 41, 0.5) 100%);
}

/* Card styling for the main content block */
.card {
    border: none;
    border-radius: 10px;
    background-color: #ffffff; /* White card */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Primary button style */
.btn-primary {
    background-color: var(--melba-primary);
    border-color: var(--melba-primary);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3; /* Darker blue on hover */
    border-color: #0056b3;
    transform: translateY(-2px);
}

/* Icon animation */
.icon {
    color: var(--melba-primary);
    animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}