/*Name: Farheen Naqvi
Date: 09/25/2024
File Name: save the Earth!
*/
/*CSS Reset */
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f4f9;
}

/* Hero Section */
.hero {
    background-image: url("hero-image.jpg");
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
}

.hero-content {
    z-index: 1;
}

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

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

.hero-buttons a {
    margin: 0 10px;
    padding: 10px 25px;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #28a745;
    color: white;
}

.btn-primary:hover {
    background-color: #218838;
}

.btn-secondary {
    background-color: #0069d9;
    color: white;
}

.btn-secondary:hover {
    background-color: #0056b3;
}

.btn-tertiary {
    background-color: #ffc107;
    color: black;
}

.btn-tertiary:hover {
    background-color: #e0a800;
}

/* Key Statistics Section */
.stats {
    background-color: #fff;
    padding: 50px 0;
    text-align: center;
}

.stats h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    background-color: #f4f4f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #28a745;
}

/* Featured Campaign Section */
.featured-campaign {
    background-color: #0069d9;
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.featured-campaign h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

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

/* Sustainability Tips Section */
.sustainability-tips {
    background-color: #e9ecef;
    padding: 50px 20px;
    text-align: center;
}

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

.sustainability-tips ul {
    list-style-type: none;
    margin: 20px 0;
}

.sustainability-tips li {
    font-size: 1.2rem;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #343a40;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-contact p {
    margin-bottom: 10px;
}

.social-links a {
    color: white;
    margin: 0 10px;
    font-size: 1.5rem;
}

.social-links a:hover {
    color: #ffc107;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 20px;
    }
}
<script src="scripts.js"></script>