.hero-section {
    width: 100%;
    height: 100vh;
    display: flex;
    background: #386924;
    color: #ffffff;
}

.hero-left {
    width: 50%;
    padding: 140px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: 54px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-text {
    font-size: 16px;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 35px;
}

.hero-btn {
    background: #ffa64d;
    padding: 14px 32px;
    border: none;
    color: rgb(244, 244, 244);
    font-size: 17px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #4a3219;
}

.hero-right {
    width: 50%;
    height: 100vh;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* CLICKABLE FACEBOOK BUTTON */
.fb-link {
    color: #ffffff !important;  /* FORCE WHITE TEXT */
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #1a4d28; /* darker green for button feel */
    padding: 8px 14px;
    border-radius: 8px;
    transition: 0.2s;
}

.fb-link:hover {
    background: #246a3a; /* lighter green on hover */
    color: #ffffff !important; /* STILL WHITE ON HOVER */
}



