/* --- Variables & Reset --- */
:root {
    --primary-green: #3A5F0B;
    --earth-brown: #A0522D;
    --off-white: #F9F9F9;
    --accent-yellow: #FFD700;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--off-white);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, blockquote {
    font-family: 'Playfair Display', serif;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Navigation --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: var(--primary-green);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Update the main logo container to align items */
.logo {
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;       /* Aligns image and text in a row */
    align-items: center; /* Vertically centers them */
    gap: 12px;           /* Space between logo and text */
}

/* Style the logo image itself */
.logo img {
    height: 100px;        /* Height of the navbar is usually around 60-80px */
    width: 100px;         /* Keep it square */
    border-radius: 50%;  /* This makes it a perfect Circle */
    object-fit: cover;   /* Ensures the image doesn't stretch */
    border: 2px solid white; /* Optional: Adds a clean white ring around it */
}

.nav-links { display: flex; gap: 2rem; align-items: center; }

.nav-links a { font-size: 0.9rem; transition: color 0.3s; }
.nav-links a:hover { color: var(--accent-yellow); }

.btn-nav {
    border: 1px solid var(--accent-yellow);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

/* --- Hero Section --- */
.hero {
    height: 85vh;
    background: linear-gradient(rgba(58, 95, 11, 0.7), rgba(58, 95, 11, 0.5)), url('pic1.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-main {
    padding: 1rem 2rem;
    background-color: var(--accent-yellow);
    color: var(--text-dark);
    border: none;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.2s;
}

.btn-main:hover { transform: scale(1.05); }

/* --- Mission Section --- */

.mission-section {
    background-color: var(--off-white);
    /* Massive vertical spacing to make it feel important */
    padding: 8rem 0;
}

/* We override the default container just for this section to center it perfectly */
.mission-section .container {
    padding: 0; /* Reset default container padding */
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 5rem; /* Increased gap between text and quote */
    background-color: white;
    /* More internal breathing room */
    padding: 5rem;
    border-radius: 12px; /* Slightly rounder corners */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Deeper shadow for depth */
}

.mission-text { flex: 1; }

.mission-text h2 {
    color: var(--earth-brown);
    font-size: 3rem; /* Bigger Headline */
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.mission-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.mission-quote {
    flex: 1;
    border-left: 6px solid var(--primary-green); /* Thicker border */
    padding-left: 3rem;
}

.mission-quote blockquote {
    font-size: 2.5rem; /* Massive quote text */
    color: var(--primary-green);
    font-style: italic;
    font-weight: 700;
    line-height: 1.3;
}

.mission-quote cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Adjustments for the new big section */
@media (max-width: 768px) {
    .mission-section { padding: 4rem 0; }
    .split-layout {
        flex-direction: column;
        gap: 3rem;
        padding: 2rem;
    }
    .mission-text h2 { font-size: 2.2rem; }
    .mission-quote blockquote { font-size: 1.8rem; }
    .mission-quote {
        border-left: none;
        border-top: 6px solid var(--primary-green);
        padding-left: 0;
        padding-top: 2rem;
    }
}

/* --- Projects Section --- */
.projects-section { background-color: var(--primary-green); color: white; }
.section-title { text-align: center; margin-bottom: 3rem; font-size: 2.5rem; }

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card img, .placeholder-img {
    width: 100%;
    /* 1 / 1 makes it a perfect square. Taller than before, but wider than a phone screen. */
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
}

.card:hover { transform: translateY(-5px); }

.card img, .placeholder-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.placeholder-img {
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: bold;
}

.card-content { padding: 1.5rem; }
.card-content h3 { color: var(--earth-brown); margin-bottom: 0.5rem; }

/* --- Footer --- */
footer { background-color: #222; color: #888; padding: 2rem 0; text-align: center; }
.footer-content { display: flex; justify-content: space-between; align-items: center; }
.socials a { margin-left: 1rem; color: white; }

/* --- Responsive Mobile --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .split-layout { flex-direction: column; gap: 2rem; padding: 1.5rem; }
    .nav-links { display: none; } /* Hide nav on mobile for simplicity */
    .mission-quote { border-left: none; border-top: 5px solid var(--primary-green); padding-left: 0; padding-top: 2rem; }
}
/* --- Contact Section --- */
.contact-section {
    background-color: var(--off-white);
    padding-bottom: 4rem;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.contact-info { flex: 1; min-width: 300px; }
.contact-info h3 { color: var(--earth-brown); margin-bottom: 1rem; font-size: 1.5rem; }
.contact-info p { margin-bottom: 2rem; color: #666; }
.info-list li { margin-bottom: 1rem; color: var(--text-dark); }

.contact-form { flex: 1; min-width: 300px; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; font-size: 0.9rem; }

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background-color: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    background-color: white;
}

/* Make sure the form button matches the hero button style */
.contact-form button {
    width: 100%;
    margin-top: 0.5rem;
}

/* Mobile fix for contact */
@media (max-width: 768px) {
    .contact-wrapper { flex-direction: column; gap: 2rem; padding: 1.5rem; }
}