body{
    font-family:'Inter',sans-serif;
}

#home{
    /* position: relative; */
    /* margin-top: 350px; */
    background-image: url("banners/banner_shadow.png"), url("banners/banner_field_01.png");
    background-repeat: no-repeat;
    background-position-x: 0px, 100%;
    /* background-size: 100% auto; */
    /* height: 576px; */
    /* font-size: 30px; */
}

.text_dark h1{
    color:#1d5b35;
    font-size:25px;
    line-height:1.02;
    font-weight:800;
    text-transform:uppercase;
    margin-bottom:28px;
}

h1{
    color: whitesmoke;
    padding-bottom: 20px;
}

.text_dark h5{
    color:#2f6b3b;
    font-size:17px;
    font-weight:800;
    letter-spacing:.5px;
    /* margin-bottom:18px; */
}

.text_dark p{
    color:#434343;
    line-height:1.9;
    font-size:18px;
}

.home_description{
    color: whitesmoke;
    width: 475px;
    font-size: 18px;
}

#home_info{
    position: relative;
    margin: 100px 50px;
    top: 50px;
    padding: 15px 0px;
}

/* Shared button styles */
#home_info button {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    width: 210px;
    height: 60px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;

    text-decoration: none;
    cursor: pointer;

    border-radius: 6px;
    transition: all 0.25s ease;
}

/* Left button */
#button_home_products {
    background: #1D6A38;
    color: white;
    border: none;
}

#button_home_products:hover {
    background: #257F46;
    transform: translateY(-2px);
}

/* Right button */
#button_home_learnmore {
    background: transparent;
    color: white;
    border: 2px solid white;
}

#button_home_learnmore:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}

.feature-strip {
    background: #163d17;
    padding: 5px 20px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    flex: 1 1 280px;
    max-width: 350px;
    color: #fff;

    padding: 15px;
    /* border-radius: 10px; */

    transition: transform 0.25s ease, background-color 0.25s ease;
    transform-origin: center;
}

.feature-item:hover {
    transform: scale(1.05);
    background-color: rgba(255,255,255,0.05); /* Optional subtle highlight */
}

.feature-item:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,0.15);
    padding-right: 35px;
}

.feature-icon {
    flex-shrink: 0;
    margin-right: 18px;
}

.feature-icon img {
    width: 52px;
    height: 52px;
}

.feature-content h3 {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
}

.feature-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
}

/* Tablet */
@media (max-width: 992px) {
    .feature-strip {
        gap: 30px;
        padding: 30px 25px;
    }

    .feature-item {
        max-width: 100%;
    }

    .feature-item:not(:last-child) {
        border-right: none;
        padding-right: 0;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .feature-strip {
        flex-direction: column;
        gap: 25px;
        padding: 25px 20px;
    }

    .feature-item {
        align-items: flex-start;
    }

    .feature-icon img {
        width: 46px;
        height: 46px;
    }

    .feature-content h3 {
        font-size: 14px;
    }

    .feature-content p {
        font-size: 13px;
    }
}

#home_lower{
    width: 100%;
}

#tractor{
    background-image: url("banners/banner_tractor.png");
    background-size: 100% auto;
    background-repeat: no-repeat;
    width: 100%;
    position: auto 100% auto auto;
    background-position-x: 100%;
}

.home_about_blurb{
    width:100%;
    min-height:100vh;
    display:grid;
    grid-template-columns:58% 42%;
}

.blurb_left{
    background:linear-gradient(90deg,#faf9f4 0%,#f8f6f0 65%,#f5f1ea 100%);
    padding:60px;
    display:flex;
    align-items:center;
}

.blurb_content{
    width:100%;
    display:grid;
    grid-template-columns:58% 42%;
    gap:50px;
}

#about_us_button{
    margin-top:45px;
    background:#1e5b34;
    color:white;
    border:none;
    padding:18px 42px;
    font-size:18px;
    font-weight:700;
    border-radius:4px;
    cursor:pointer;
    transition:.35s;
    letter-spacing:.5px;
}

#about_us_button:hover{
    background:#154728;
    transform:translateY(-3px);
    box-shadow:0 14px 30px rgba(0,0,0,.15);
}

.features{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.feature{
    display:flex;
    gap:24px;
    padding:28px 0;
    border-bottom:1px solid #d9d6ce;
}

.feature:last-child{
    border:none;
}

.icon{
    width:72px;
    height:72px;
    min-width:72px;
    border-radius:50%;
    background:#e7e6cf;
    display:flex;
    justify-content:center;
    align-items:center;
}

.icon svg{
    width:34px;
    height:34px;
    stroke:#2d6d3c;
    stroke-width:2;
    fill:none;
}

.feature h3{
    color:#235f37;
    font-size:32px;
    margin-bottom:8px;
}

.feature p{
    font-size:18px;
    line-height:1.6;
}


.right{
    position:relative;
    overflow:hidden;
}

.right img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform 8s ease;
}

.right:hover img{
    transform:scale(1.08);
}

.overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg,rgba(0,0,0,.2),rgba(0,0,0,.35)),
        linear-gradient(0deg,rgba(0,0,0,.35),transparent 40%);
    /* background-image: url("banners/banner_tractor.png");
    background-repeat: no-repeat; */
}

.text{
    position:absolute;
    left:60px;
    bottom:70px;
    color:white;
}

.text h2{
    font-size:19px;
    line-height:1.08;
    font-weight:800;
    text-transform:uppercase;
}

.underline{
    width:140px;
    height:5px;
    margin-top:18px;
    background:#b4cb39;
}

/* RESPONSIVE */

@media(max-width:1200px){

.content{
    grid-template-columns:1fr;
}

.home_about_blurb{
    grid-template-columns:1fr;
}

.right{
    height:600px;
}

}

@media(max-width:700px){

.blurb_left{
    padding:35px;
}

.text_dark h1{
    font-size:20px;
}

.feature h3{
    font-size:15px;
}

.text{
    left:30px;
    bottom:40px;
}

.text h2 {
    font-size:36px;
}