/* Color Palette:
   Dark Blue: #1d204a
   Vibrant Orange: #ff8f4a
*/

/* --- Welcome Page Styles --- */
.welcome-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f7e9c5;
    text-align: center;
}

.welcome-content {
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 600px;
}

.welcome-content .logo {
    width: 150px;
    margin-bottom: 20px;
}

.welcome-content h1 {
    font-size: 2.5em;
    color: #1d204a;
    margin-bottom: 10px;
}

.welcome-content p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 30px;
}

.welcome-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.welcome-button {
    display: inline-block;
    background-color: #ff8f4a;
    color: #1d204a;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.welcome-button i {
    margin-right: 8px;
}

.welcome-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.home-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ff8f4a;
    color: #1d204a;
    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);
}

/* Media Queries for Welcome Page */
@media (max-width: 992px) {
    .welcome-links {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .welcome-content {
        padding: 40px 20px;
    }
}
