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

body {
    font-family: 'Montserrat', sans-serif;
    color: #f0f0f0;
    background-color: #0d0d0d;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    background: radial-gradient(circle, #1b1b1b, #000);
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 4rem;
    color: #32a852;
    text-transform: uppercase;
    z-index: 2;
    position: relative;
}

.hero .tagline {
    font-size: 1.5rem;
    color: #ddd;
    margin: 10px 0;
    z-index: 2;
}

.hero .subheading {
    color: #999;
    font-size: 1.2rem;
    z-index: 2;
    position: relative;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('130.jpg'), rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* About Section */
.about {
    padding: 50px 20px;
    background: #161616;
    text-align: center;
    border-top: 3px solid #32a852;
}

.about h2 {
    color: #32a852;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.1rem;
    color: #ccc;
}

/* Projects Section */
.projects {
    padding: 50px 20px;
    background: #101010;
    text-align: center;
}

.projects h2 {
    color: #32a852;
    margin-bottom: 20px;
}

.project-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.project-card {
    background: #222;
    padding: 20px;
    border: 1px solid #333;
    width: 300px;
    border-radius: 10px;
    transition: transform 0.3s, background-color 0.3s;
}

.project-card:hover {
    transform: translateY(-10px);
    background: #32a852;
}

.project-card h3 {
    color: #32a852;
    margin-bottom: 10px;
}

.project-card p {
    color: #ccc;
}

/* Legacy Section */
.legacy {
    padding: 50px 20px;
    background: #161616;
    text-align: center;
    border-top: 3px solid #32a852;
}

.legacy h2 {
    color: #32a852;
    margin-bottom: 20px;
}

/* Contact Section */
.contact {
    padding: 50px 20px;
    background: #101010;
    text-align: center;
}

.contact h2 {
    color: #32a852;
    margin-bottom: 10px;
}

.contact p {
    margin-bottom: 20px;
}

.contact-button {
    background: #32a852;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s, box-shadow 0.3s;
}

.contact-button:hover {
    background: #288a3e;
    box-shadow: 0px 4px 15px rgba(50, 168, 82, 0.5);
}

.project-card {
    display: block;
    text-decoration: none;
    color: inherit; /* Ensures the text color stays the same */
}

.project-card:hover {
    transform: translateY(-10px);
    background: #32a852;
    color: #fff; /* Adjust text color on hover if needed */
}

.hero {
    background: url('pics/jump.jpg') no-repeat center center/cover;
    color: #fff;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 1;
}
.hero .container {
    position: relative;
    z-index: 2;
}

footer.contact {
    background: url('pics/airfield.jpg') no-repeat center center/cover;
    color: #fff;
    position: relative;
}
footer.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 1;
}
footer .container {
    position: relative;
    z-index: 2;
}

.legacy {
    padding: 100px 20px;
    background: url('pics/nvgs.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    position: relative;
}

.legacy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 1;
}

.legacy .container {
    position: relative;
    z-index: 2;
}

.legacy h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #32a852;
}

.legacy p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.projects {
    padding: 100px 20px;
    background: url('pics/130.jpg') no-repeat center center/cover;
    position: relative;
    color: #fff;
    text-align: center;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 1;
}

.projects .container {
    position: relative;
    z-index: 2;
}

.project-card {
    background: #222; /* Card background color */
    padding: 20px;
    border: 1px solid #333;
    width: 300px;
    border-radius: 10px;
    transition: transform 0.3s, background-color 0.3s;
    color: #fff;
    text-decoration: none;
    display: inline-block;
}

.project-card:hover {
    transform: translateY(-10px);
    background: #32a852;
    color: #fff;
}

.project-card h3 {
    color: #32a852;
    margin-bottom: 10px;
}

.project-card p {
    color: #ccc;
}

.about {
    padding: 100px 20px;
    background: url('pics/shoot.jpg') no-repeat center center/cover;
    position: relative;
    color: #fff;
    text-align: center;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for readability */
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #32a852;
}

.about p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: #f0f0f0;
}
