/* Cover Image Section */
.cover-image {
    position: relative;
    background-image: url('https://getwallpapers.com/wallpaper/full/6/7/a/1486825-amazing-cool-moving-wallpapers-for-mac-1920x1080-for-1080p.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh; /* Full height of the viewport */
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Overlay for a dark filter on the cover image */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Darkens the image */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.cover-image h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 10px;
}
.cover-image p {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.cover-image .btn {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
}
.cover-image .btn:hover {
    background-color: #0056b3;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: skyblue;
}
header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}
nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
}
section {
    padding: 20px;
    margin: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    #upload {
    color: white; /* Sets all text in the #upload section to white */
    }
}

/* Key Features Section */
#features {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

#features h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.feature {
    background: #fff;
    padding: 20px;
    margin: 20px;
    max-width: 300px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
}

.feature img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #007BFF;
}

.feature p {
    font-size: 1rem;
    color: #555;
}


/* Make the layout responsive */
@media (max-width: 768px) {
    .features-container {
        flex-direction: column;
        align-items: center;
    }
}

h1, h2 {
    color: #333;
}
.btn {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
}

/* About Section */
#about {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

#about h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
}

.project-story, .team-members, .github-repo {
    margin-bottom: 40px;
    text-align: left;
}

.project-story p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.team-members h3 {
    margin-bottom: 20px;
}

.team-member {
    margin-bottom: 30px;
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.team-member h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #007BFF;
}

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

.team-member ul li {
    display: inline-block;
    margin-right: 15px;
}

.team-member ul li a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    transition: color 0.3s;
}

.team-member ul li a:hover {
    color: #007BFF;
}

.github-repo a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}

.github-repo a:hover {
    text-decoration: underline;
}

/* Make the layout responsive */
@media (max-width: 768px) {
    .about-container {
        padding: 0 20px;
    }

    .team-member img {
        width: 120px;
        height: 120px;
    }
}
