﻿/* ===========================
   General Reset & Body
=========================== */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f9f4;
    color: #333;
}

/* ===========================
   Header Banner / Slider
=========================== */
.header-banner {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.dx-ImageSlider img {
    object-fit: cover;
    width: 100% !important;
    height: 350px !important;
}

.dx-ImageSlider .dxisl-slide-text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    background-color: rgba(0, 128, 0, 0.7);
    padding: 10px 20px;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 5px;
}

/* ===========================
   Navigation Menu
=========================== */
/* Fancy Centered ASPxMenu */
.menu-container {
    display: flex;
    justify-content: center; /* horizontal centering */
}

.menu {
    background-color: #2e7d32;
    border-radius: 10px;
    padding: 5px 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    width: auto; /* let it shrink to fit content */
}

/* ===========================
   Welcome Section
=========================== */
.welcome-section {
    text-align: center;
    padding: 60px 20px 40px 20px;
    background-color: #e8f5e9;
}

    .welcome-section h1 {
        font-size: 2.5rem;
        color: #2e7d32;
        margin-bottom: 20px;
    }

        .welcome-section h1 span {
            color: #1b5e20;
        }

    .welcome-section p {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
    }

/* ===========================
   Feature Boxes
=========================== */
.features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 40px 20px;
    gap: 20px;
}

.feature-box {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 30px;
    flex: 1 1 300px;
    max-width: 350px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .feature-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .feature-box h3 {
        color: #2e7d32;
        margin-bottom: 15px;
        font-size: 1.4rem;
    }

    .feature-box p {
        font-size: 1rem;
        color: #555;
        line-height: 1.6;
    }

/* ===========================
   Responsive Design
=========================== */
@media (max-width: 992px) {
    .features {
        flex-direction: column;
        align-items: center;
    }

    .dx-ImageSlider img {
        height: 250px !important;
    }
}

.map-section {
    margin-top: 50px;
    text-align: center;
}

    .map-section h2 {
        margin-bottom: 20px;
        font-size: 28px;
        font-weight: 600;
    }

#map {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

@media (max-width: 576px) {
    .welcome-section h1 {
        font-size: 2rem;
    }

    .welcome-section p {
        font-size: 1rem;
    }

    .feature-box {
        max-width: 90%;
        padding: 20px;
    }
}
