/* styles.css */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff; /* Background color of the loading screen */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    border: 6px solid #f3f3f3; /* Loader color */
    border-top: 6px solid #3498db; /* Loader color */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

.loading-logo {
    width: 100px;
    height: 100px;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

body {
    background-color: rgb(20, 23, 34);
    color: white; /* Optional: Adjust text color for better readability */
}

/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #fff;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #222;
    padding: 10px 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.menu .menu-btn {
    background: none;
    border: none;
    color: white;
    margin-right: 15px;
    font-size: 16px;
    cursor: pointer;
}

.auth-buttons button {
    margin-left: 10px;
    padding: 5px 15px;
    cursor: pointer;
}

.container {
    display: flex;
}

.sidebar {
    width: 20%;
    background-color: #333;
    padding: 20px;
    height: 100vh;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar li {
    margin: 15px 0;
}

.main-content {
    width: 80%;
    padding: 20px;
}

.hero-section h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.hero-section .sign-up {
    background-color: #00aaff;
    padding: 10px 20px;
    border: none;
    color: #fff;
    cursor: pointer;
}

.images-section {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.image-card {
    flex: 1;
    background-color: #444;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Style for the loading screen */
#loadingScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Spinning loader */
.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

/* Animation for the spinning effect */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}