/* 1. Global Reset & Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;600;800&display=swap');

body {
    /* Lexend is a rounded, highly readable font that feels friendly and modern */
    font-family: 'Lexend', sans-serif;
    color: #2c3e50; /* Softer dark blue-gray instead of harsh black */
    line-height: 1.7;
    background-color: #fcfdf9; /* "Bone" white/very light cream */
    margin: 0;
    padding: 0;
}

/* 2. Typography */
h1, h2, h3, h4, h5, h6 {
    color: #27ae60; /* Doodle Duty Grass Green */
    font-weight: 800;
    margin-top: 1.2em;
    letter-spacing: -0.5px;
}

a {
    color: #0000FF; /* Fetch Blue accent */
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

a:hover {
    color: #1e8449; /* Darker green on hover */
    text-decoration: none;
    opacity: 0.85;
}

/* 3. Mobile-First Layout */
.container {
    width: 92%;
    margin: 0 auto;
    padding: 25px 0;
}

/* 3.5 Top Header Bar (The "Collar" Bar) */
.top-header {
    background-color: #0000FF; /* Bold Fetch Blue */
    color: #ffffff;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.top-header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0;
}

.top-header a {
    color: #ffffff;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.top-header a:hover {
    border-bottom: 1px solid #ffffff;
    color: #ffffff;
}

/* Desktop adjustment for Top Header */
@media (min-width: 768px) {
    .top-header .container {
        flex-direction: row;
        justify-content: flex-end;
        40px;
    }
}

/* 4. Navigation & Buttons (The "Play" Elements) */
.main-navigation {
    background: #ffffff;
    border-bottom: 4px solid #27ae60; /* Thick "Grass" border */
    padding: 10px 0;
}

button, .button, input[type="submit"] {
    background-color: #27ae60;
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 50px; /* Fully rounded "Pill" shape feels friendlier */
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 4px 0 #1e8449; /* 3D "Pushable" button effect */
    transition: all 0.2s ease;
}

button:hover, .button:hover {
    background-color: #0000FF; /* Swaps to blue on hover */
    transform: translateY(2px); /* Sinks in slightly when clicked */
    box-shadow: 0 2px 0 #0000aa;
}

/* 5. Responsive Adjustments for Desktop */
@media (min-width: 768px) {
    .container {
        width: 85%;
        max-width: 1200px;
    }
    
    .site-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 25px 0;
    }
}

/* 6. Utility & Thematic Classes */
.accent-bg { 
    background-color: #0000FF; 
    color: white; 
    border-radius: 12px; 
}

.grass-text { 
    color: #27ae60; 
}

/* Logo styling with a "Badge" feel */
.site-logo img, 
.custom-logo {
    max-width: 200px;
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Card Styling (Great for pricing tiers or features) */
.card {
    background: white;
    border-radius: 20px;
    border: 1px solid #eef2ed;
    padding: 30px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
}

.location-badge {
    display: inline-block;
    background: rgba(39, 174, 96, 0.1); /* Very light green */
    color: #27ae60;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin: 5px;
    border: 1px solid #27ae60;
}
