/* Color Palette & Variables */
:root {
    --olive-drab: #1a3c22;
    --foliage-green: #2b5a32;
    --desert-tan: #f4ebd9;
    --accent-gold: #e6a817;
    --text-dark: #111111;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--desert-tan);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: var(--olive-drab);
}

/* Header & Nav */
header {
    background-color: var(--olive-drab);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 80px;
    border-radius: 50%; /* Keeps the circular logo clean */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

nav a {
    color: var(--desert-tan);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--accent-gold);
}

/* Buttons */
.btn-primary {
    background-color: var(--accent-gold);
    color: var(--text-dark);
    padding: 10px 20px;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    border: none;
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background-color: #c99212;
}

/* Hero Section */
.hero {
    background-color: var(--foliage-green);
    color: var(--desert-tan);
    text-align: center;
    padding: 100px 20px;
    border-bottom: 5px solid var(--accent-gold);
}

.hero h1 {
    color: var(--desert-tan);
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Services */
.services {
    padding: 60px 5%;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-top: 4px solid var(--foliage-green);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* About Section */
.about {
    background-color: #ffffff;
    color: var(--text-dark);
    padding: 80px 5%;
    text-align: center;
    border-bottom: 4px solid var(--olive-drab);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Contact Form */
.contact {
    background-color: var(--olive-drab);
    color: var(--desert-tan);
    padding: 60px 5%;
    text-align: center;
}

.contact h2 {
    color: var(--accent-gold);
    margin-bottom: 30px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 3px;
    font-family: 'Roboto', sans-serif;
    outline: none;
}

.contact-form input:focus, .contact-form textarea:focus {
    box-shadow: 0 0 0 2px var(--accent-gold);
}

/* Form Row Layout for First & Last Name */
.form-row {
    display: flex;
    flex-direction: row;
    gap: 15px;
    width: 100%;
}

.form-row input {
    flex: 1 1 50%;
}

/* Footer */
footer {
    background-color: #111;
    color: #777;
    text-align: center;
    padding: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}