/* ===================================
   Dailey Forest Management
   Clean Website Styles
=================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f5f2;
    color: #333;
    line-height: 1.7;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ======================
   Header
====================== */

header {
    position: sticky;
    top: 0;
    background: #173d21;
    z-index: 1000;
    box-shadow: 0 3px 12px rgba(0,0,0,.2);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    padding: 10px 0;
}


.logo img {
    height: 80px;
    width: auto;

}




nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    align-items: center;
}



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

nav a:hover {
    color: #d7b64a;
}

/* ======================
   Hero
====================== */

.hero {
    background: linear-gradient(rgba(20,60,30,.75), rgba(20,60,30,.75));
    color: white;
    text-align: center;
    padding: 120px 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}
.hero-tagline {
    font-size: 2rem;
    font-weight: 700;
    color: #c9a227;
    margin-bottom: 20px;
}
.hero p {
    max-width: 850px;
    margin: auto;
    font-size: 1.2rem;
}

.buttons {
    margin-top: 35px;
}

.btn {
    display: inline-block;
    background: #c9a227;
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 6px;
    margin: 8px;
    font-weight: bold;
}

.btn:hover {
    background: #a98717;
}/* ======================
   Sections
====================== */

section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    color: #173d21;
    font-size: 2.3rem;
    margin-bottom: 40px;
}

/* ======================
   About
====================== */

#about {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-grid img {
    width: 100%;
    max-width: 350px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
}

.about-grid h3 {
    color: #173d21;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.about-grid p {
    margin-bottom: 18px;
}

/* ======================
   Services
====================== */

#services {
    background: #eef4ee;
}

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

.service-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
    transition: transform .25s ease;
}

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

.service-card h3 {
    color: #173d21;
    margin-bottom: 15px;
}

/* ======================
   Gallery
====================== */

#gallery {
    background: white;
}

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

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(0,0,0,.15);
}/* ======================
   Contact
====================== */

#contact {
    background: #173d21;
    color: white;
    text-align: center;
}

#contact h2,
#contact h3 {
    color: white;
}

#contact p {
    max-width: 800px;
    margin: 0 auto 20px;
}

#contact .btn {
    margin: 10px;
}

/* ======================
   Footer
====================== */

footer {
    background: #102a17;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

footer p,
footer h3 {
    margin: 8px 0;
}

/* ======================
   Mobile
====================== */

/* ======================
   Mobile
====================== */

@media (max-width: 768px) {

    .logo img {
        height: 70px;
    }

    header .container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .hero {
        padding: 80px 20px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-grid img {
        max-width: 300px;
    }

    section h2 {
        font-size: 2rem;
    }
}
footer a {
    color: white;
    text-decoration: none;
}

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