/* ==========================
   JOYGRUPP
==========================*/

body{
    margin:0;
    padding:0;
    font-family:Arial,Helvetica,sans-serif;
    background:#f5f5f5;
    color:#222;
}

.joy-hero{
    min-height:100vh;
    background:linear-gradient(rgba(0,0,0,.70),rgba(0,0,0,.70)),
    url("../img/hero.jpg");
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.joy-overlay{
    width:100%;
    padding:80px 20px;
}

.joy-container{
    max-width:1100px;
    margin:auto;
}

.joy-container h1{
    color:#32b44a;
    font-size:72px;
    margin-bottom:20px;
    font-weight:800;
    letter-spacing:4px;
}

.joy-container h2{
    color:#ffffff;
    font-size:42px;
    margin-bottom:25px;
}

.joy-container p{
    color:#e5e5e5;
    font-size:22px;
    line-height:1.8;
    margin-bottom:40px;
}

.joy-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-green{
    background:#2fb344;
    color:#fff;
    text-decoration:none;
    padding:18px 40px;
    border-radius:40px;
    font-size:20px;
    font-weight:bold;
    transition:.3s;
}

.btn-green:hover{
    background:#238636;
}

.btn-dark{
    background:#111;
    color:#fff;
    text-decoration:none;
    padding:18px 40px;
    border-radius:40px;
    font-size:20px;
    font-weight:bold;
    transition:.3s;
}

.btn-dark:hover{
    background:#444;
}

/*========================
SERVICII
========================*/

.joy-services{

    padding:100px 20px;

    background:#ffffff;

}

.joy-services h2{

    text-align:center;

    font-size:42px;

    margin-bottom:60px;

    color:#222;

}

.services-grid{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

}

.service-box{

    background:#fff;

    border-radius:15px;

    padding:35px;

    box-shadow:0 10px 25px rgba(0,0,0,.12);

    transition:.3s;

}

.service-box:hover{

    transform:translateY(-8px);

}

.service-box h3{

    color:#2fb344;

    margin-bottom:15px;

    font-size:26px;

}

.service-box p{

    line-height:1.8;

    font-size:18px;

}

.joy-gallery{
    padding:80px 20px;
    background:#f3f3f3;
}

.joy-gallery h2{
    text-align:center;
    margin-bottom:40px;
}

.gallery-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:20px;
}

.gallery-grid img{
    width:100%;
    border-radius:12px;
    display:block;
}

/* ===============================
   SERVICII
=================================*/

.services{
    padding:90px 20px;
    background:#f7f7f7;
}

.services-title{
    text-align:center;
    font-size:42px;
    font-weight:700;
    margin-bottom:60px;
    color:#222;
}

.services-grid{
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.service-box{

    background:#fff;

    border-radius:15px;

    padding:35px;

    box-shadow:0 10px 25px rgba(0,0,0,.12);

    transition:.35s;
}

.service-box:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.service-icon{

    font-size:55px;

    margin-bottom:20px;

}

.service-box h3{

    color:#2f6b44;

    font-size:26px;

    margin-bottom:15px;

}

.service-box p{

    line-height:1.8;

    font-size:18px;

    color:#666;

}