/* General Body and Background Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    color: #ffffff;
    line-height: 1.6;
    background-color: #0a0a1a;
    overflow-x: hidden;
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(circle at -20% -20%, rgba(74, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 120% -20%, rgba(255, 74, 194, 0.1) 0%, transparent 50%),
        linear-gradient(
            -45deg,
            #0a0a1a,
            #1a1a3a,
            #2a2a5a,
            #0a0a1a
        );
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.particle {
    position: absolute;
    background-color: rgba(74, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(60px);
    animation: particleFloat 20s infinite linear;
    opacity: 0;
}

@keyframes particleFloat {
    0% { transform: translate(0, 0) rotate(0deg); opacity: 0; }
    25% { opacity: 0.3; }
    50% { transform: translate(50px, -50px) rotate(180deg); opacity: 0.5; }
    75% { opacity: 0.3; }
    100% { transform: translate(0, 0) rotate(360deg); opacity: 0; }
}

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 10, 26, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coda-logo img {
    max-height: 40px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

nav a:hover {
    color: #4affff;
}

/* Main Content and Sections */
main {
    padding-top: 80px; /* Adjust based on header height */
}

section {
    padding: 6rem 2rem;
    text-align: center;
}

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

h2 {
    font-size: 2.5rem;
    color: #4affff;
    margin-bottom: 1.5rem;
}

p {
    font-size: 1.1rem;
    color: #8f9ba8;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

/* Hero Section */
#hero {
    min-height: calc(100vh - 80px); /* Full viewport height minus header */
    display: flex;
    align-items: center;
    justify-content: center;
}

.strikeline-logo img {
    max-width: 100%;
    max-height: 250px;
    object-fit: contain;
}

.tagline {
    font-size: 1.5rem;
    margin: 1rem 0;
    color: #8f9ba8;
}

.description {
    max-width: 800px;
    margin: 0 auto;
}

/* About Section */
.mission-statement {
    font-style: italic;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.feature-box h3 {
    margin-bottom: 1rem;
    color: #4affff;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #4affff;
}

.team-member h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

/* Jobs Section */
.jobs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.job-listing {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.job-listing h3 {
    color: #4affff;
    margin-bottom: 1rem;
}

.apply-button {
    display: inline-block;
    background-color: #4affff;
    color: #0a0a1a;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.apply-button:hover {
    background-color: #ffffff;
}

/* Contact Section */
.email-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4affff;
    text-decoration: none;
    transition: color 0.3s;
}

.email-link:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #0a0a1a;
    padding: 2rem;
    text-align: center;
}

.social-icons a {
    color: #ffffff;
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #4affff;
}

footer p {
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 1rem;
    }

    nav ul {
        display: none; /* Simple responsive solution, could be replaced with a hamburger menu */
    }

    section {
        padding: 4rem 1rem;
    }

    h2 {
        font-size: 2rem;
    }
}