@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: url('../images/lspb2.webp') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    min-height: 100vh;
    position: relative;
    margin: 0;
    padding: 0;
}

/* Add an overlay to make text more readable against the background */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: #1a1a1a;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
}

nav {
    display: flex;
    align-items: center;
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.login-btn {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

.login-btn:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.register-btn {
    background-color: #4CAF50;
    color: #ffffff;
    border: 1px solid #4CAF50;
}

.register-btn:hover {
    background-color: #45a049;
}

/* Main Content */
main {
    padding: 60px 0;
}

.content {
    text-align: center;
    margin-top: 80px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 8px;
}

.content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    padding: 20px 0;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* Responsive design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav {
        justify-content: center;
    }
    
    .content h2 {
        font-size: 2rem;
    }
}

/* Navigation Styles */
.page-nav {
    margin: 20px 0;
}

.page-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.page-nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-nav a:hover {
    color: #4CAF50;
}

.page-nav a.active {
    color: #4CAF50;
    font-weight: bold;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .page-nav ul {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}
