/* Basic styles for Deo Soil Sampling Robot website */

body {
    font-family: 'Roboto Mono', monospace;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #eee;
    background: #1f1f1f;
}

header {
    background-color: #4CAF50;
    color: white;
    padding: 1rem;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 1rem;
}

nav a {
    color: white;
    text-decoration: none;
}

main {
    padding: 0 2rem 2rem;
}

#robot-video {
    display: block;
    width: 100vw;
    height: 55vh;
    max-height: 520px;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    object-fit: cover;
}

.process-video {
    width: 100%;
    max-width: 900px;
    display: block;
    margin: 1rem auto;
    border: 3px solid #4CAF50;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

section a {
    color: #4CAF50;
    text-decoration: none;
}

section a:hover {
    text-decoration: underline;
}

section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #2a2a2a;
    border-radius: 14px;
    color: #eee;
}

.team-members {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
    margin: 1rem;
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #4CAF50;
}

#Realising\ The\ Concept img {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 1rem auto;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

#Realising\ The\ Concept img.concept-wide {
    max-width: 700px;
}

#Realising\ The\ Concept h3 {
    color: #4CAF50;
    margin-top: 1.5rem;
}

.chassis-images {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.chassis-images img {
    width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.chassis-images img:nth-child(2) {
    object-position: center;
}


#Design\ Elements h3 {
    color: #4CAF50;
}

