/* css/style.css */

/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #fff;
    color: #333;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Loading Page Styles */
#loading-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease;
}

#loading-page.hidden {
    opacity: 0;
    pointer-events: none;
}

#loading-text {
    font-size: 4rem;
    text-align: center;
    color: #333;
    animation: fadeIn 2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Navbar Styles */
.navbar {
    display: none; /* Initially hidden */
    background-color: #f8f9fa;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar ul {
    list-style-type: none;
    display: flex;
    gap: 20px;
}

.navbar li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease;
}

.navbar li a:hover {
    color: #007bff;
}

/* Home Page Styles */
.home-page {
    display: none; /* Initially hidden */
    padding: 50px;
}

.home-page h1 {
    font-size: 3rem;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.home-page p {
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: center;
}