/* --- Coming Soon Page Styles --- */
.coming-soon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f7e9c5; /* Your light yellow-orange color */
    text-align: center;
}

.coming-soon-content {
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 600px;
}

.coming-soon-content .logo {
    width: 150px;
    margin-bottom: 20px;
}

.coming-soon-content h1 {
    font-size: 2.5em;
    color: #1d204a; /* Your dark blue color */
    margin-bottom: 10px;
}

.coming-soon-content p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 30px;
}

.home-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ff8f4a; /* Your vibrant orange color */
    color: #1d204a; /* Your dark blue color */
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.home-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}