body {
    background-image: url('https://karthik-v202.github.io/Disaster-Wise/src/login.jpg');
    background-size:cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: sans-serif; /* Added a default font */
    color: #fff; /* Default text color for contrast */
    margin: 0; /* Remove default body margin */
}

.navbar {
    background-color: white;
    width: 90%; /* Responsive width */
    max-width: 1200px; /* Set a maximum width */
    padding: 1rem;
    border-radius: 5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between logo and text */
}

.logo {
    height: 3rem;
    width: 3rem;
    border-radius: 50%; /* Make the logo round */
}

.site-title h1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333; /* Darker text for contrast on white background */
    margin: 0; /* Remove default h1 margin */
}

.site-title p {
    font-size: 0.875rem;
    color: #555; /* Slightly lighter text */
    margin: 0;
}


.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333; /* Darker text color */
}

.nav-link i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.nav-link span {
    font-size: 0.875rem;
}

.about-us {
    background-color: rgba(152, 136, 136, 0.501);
    width: 90%; /* Responsive width */
    max-width: 800px; /* Set a maximum width */
    margin-top: 5rem;
    padding: 5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-content {
    text-align: center; /* Center the content within the about section */
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333; /* Darker text color */
}

.about-us p {
    margin-bottom: 1rem;
    color: black; /* Slightly lighter text */
    line-height: 1.6; /* Improve readability */
}

.mission {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.explore-button {
    background-color: #ddd;
    color: #333;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color 0.2s ease; /* Smooth hover effect */
}

.explore-button:hover {
    background-color: #ccc;
}


/* Responsive Design - Example for smaller screens */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column; /* Stack navigation links vertically */
        gap: 1rem;
    }

    .nav-link {
        flex-direction: row; /* Align icon and text horizontally */
        align-items: center;
        gap: 1rem;
    }

    .nav-link i {
        margin-bottom: 0;
    }

    .about-us {
        padding: 1.5rem;
    }
}