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

/* Full-screen background image */
body {
    background-image: url('png/pwp1stBKG.png');
    background-size: cover;         /* Makes the image cover the entire page */
    background-position: center;    /* Centers the image */
    background-attachment: fixed;   /* Ensures the background stays in place when scrolling */
    background-repeat: no-repeat;   /* Prevents the image from repeating */
    background-color: #333;         /* Fallback background color in case the image doesn’t load */
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Firefox-specific CSS */
@-moz-document url-prefix() {
    /* Add your Firefox-specific styles here */
    body {
        background-image: url('png/pwp1stBKG.png'); /* For Firefox-specific background */
    }
}


/* Dark Mode - applied automatically if user prefers dark mode 
@media (prefers-color-scheme: dark) {
    body {
        background-color: #121212;
        color: #e0e0e0;
    }

    .header, .navbar, .content {
        background-color: #1e1e1e;
        color: #f1f1f1;
    }

    a {
        color: #ff6347;
    }
}*/

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background: #000;
    color: #fff;
    padding: 1rem;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.logo img {
    height: 50px; /* Adjust the size of the logo */
    width: auto;
}

.logo h1 {
    font-size: 1.5rem;
    margin: 0;
}

/* Styling for the logo and text */
.logo-text-container {
    display: flex;
    align-items: center;
}

.logo-text-container img {
    height: 50px; /* Adjust logo size */
    width: auto;
    margin-right: 10px; /* Space between logo and text */
}

.logo-text-container h1 {
    font-size: 1.5rem;
    color: white;
    margin: 0;
}

/* Existing styles for the navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.navbar nav ul {
    display: flex;
    list-style: none;
}

.navbar nav ul li {
    margin-left: 2rem;
}

.navbar nav ul li a {
    color: #fff;
    text-decoration: none;
}

.hero {
    background: url('png/Pantheum_Waterfront_Plaza_bkgd.png') no-repeat center center/cover;
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #ff6347;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
}

.btn:hover {
    background: #ff4500;
}

#about, #deck, #contact, #vision, #economic-impact, #key-features, #sustainability, #community-engagement {
    padding: 2rem;
    background-color: #fff;
    margin: 2rem auto;
    max-width: 900px;
    text-align: center;
}

#key-features ul li {
    font-size: 1.1rem;
    font-weight: bold;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}
