* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: Arial, sans-serif; line-height: 1.6; color: #333; 
}

.navbar {
    background: #006400;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}
.active{
    color: #ffd700;
}
.logo h2 {
    font-size: 1.8rem;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}
.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.nav-links a:hover, .nav-links a.active {
    color: #ffd700;
} 

.slider {
    position: relative;
    height: 80vh;
    overflow: hidden;
}
.slides {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease;
}
.slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background: rgba(0,0,0,0.4);
    padding: 2rem;
    border-radius: 10px;
}
.btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 12px 25px;
    background: #313029;
    color: #006400;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.welcome, .highlights, .testimonials {
    padding: 3rem 5%;
    text-align: center;
}
.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.card {
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.card:hover {
    transform: scale(1.05);
}
.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

footer {
    background: #006400;
    color: white;
    text-align: center;
    padding: 2rem;
}

.mbale-gallery{
    padding: 50px 20px;
    background: #fafafa;
    text-align: center;
}
.mbale-gallery h2{
    font-size: 30px;
    margin-bottom: 8px;
    color: #1b5e20;
}
.subtitle{
    color: #555;
    margin-bottom: 30px;
}
.grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}
.cad{
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.cad img{
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.cad:hover img{
    transform: scale(1.08);

}
.over{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px 15px 15px;
    text-align: left;
    transform: translateY(30%);
    transition: 0.3s ease;
}
.cad:hover.over{
    transform: translateY(0);
}
.over h3{
    margin: 0 0 5px;
    font-size: 18px;

}
.over p{
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}
.explore-mbale{
    padding: 60px 20px;
    background: #f7f5f2;
    text-align: center;
}
.explore-mbale h2{
    font-size: 30px;
    color: #1b5e20;
    margin-top: 5px;
}
.subtitl{
    color: #555;
    margin-bottom: 40px;
    font-size: 18px;
}
.contact-container{
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}
.info-card{
    background: white;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.info-card h3{
    margin: 0 0 8px;
    font-size: 18px;
    color: #2e7d32;
}
.info-card p, .info-card a{
    margin: 0;
    color: #333;
    text-decoration: none;
    line-height: 1.6;
    transition: 3s ease;
}
.info-card a:hover{
    color: #2e7d32;
    transform: scale(1.8);
}
.contact-form{
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.contact-form h3{
    margin: 0 0 20px;
    color: #2e7d32;
}
.contact-form input, .contact-form textarea{
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
}
.contact-form input:focus, .contact-form textarea:focus{
    outline: none;
    border-color: #2e7d32;
}
.contact-form button{
    width: 100%;
    padding: 14px;
    background: #2e7d32;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}
.contact-form button:hover{
    background: #1b5e20;
}
@media (max-width: 768px){
    .contact-container{
        grid-template-columns: 1fr;
    }
}

.about-container {
    max-width: 1100px;
    margin: 50px auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.about-header {
    text-align: center;
    margin-bottom: 40px;
}
.about-header h1 {
    color: #2d5a27;
    font-size: 2.5rem;
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.info-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}
.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
} 
.card-body {
    padding: 25px;
    text-align: center;
}
.card-body h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 1.5rem;
}
.card-body p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}
.culture-card {
    border-bottom: 5px solid #d35400;
}
.nature-card {
    border-bottom: 5px solid #2d5a27;
} 
.coffee-card {
    border-bottom: 5px solid #5d4037;
}

.about-pillars{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}
.pillar{
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    border-left: 4px solid #2e7d32;
}
.num{
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    color: #2e7d32;
    background: #e8f5e9;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.pillar h3{
    margin: 0 0 10px;
    font-size: 20px;
    color: #1b5e20;
}
.pillar p{
    margin: 0;
    line-height: 1.7;
    color: #444;
}