/* ---------------------------
   GLOBAL
---------------------------- */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #222;
}

h2 {
    color: #0D3822;
    margin-bottom: 20px;
}

.section {
    padding: 60px 40px;
    background: #ffffff;
}

.section.light {
    background: #e9eee9;
}

/* ---------------------------
   HERO SECTION
---------------------------- */
.hero {
    height: 75vh;
    background: url('images/hero.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.overlay {
    background: rgba(0,0,0,0.55);
    padding: 40px 60px;
    border-radius: 12px;
    color: white;
}

.logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

h1 {
    margin: 0;
    font-size: 58px;
    font-weight: bold;
}

h2 {
    font-size: 28px;
    margin-top: 10px;
    color: white;
}

.cta-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 15px 35px;
    background: #ffffff;
    color: #0D3822;
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
    border-radius: 6px;
}

/* ----------------------------------
   SERVICES GRID
----------------------------------- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.card {
    padding: 25px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    color: #0D3822;
}

/* ----------------------------------
   GALLERY
----------------------------------- */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.gallery img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* ----------------------------------
   FOOTER
----------------------------------- */
footer {
    background: #0D3822;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 60px;
    font-size: 16px;
    letter-spacing: 0.5px;
}
