@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@400;500;600&family=Lemon&family=Patua+One&family=Poppins:wght@200;400;500;600;700;800;900&display=swap');
*{
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
body{
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
nav{
    width:100%;
    height:10vh;
}
nav .wrapper{
    width:100%;
    height:100%;
    display: flex;
    justify-content: space-around;
}
nav .wrapper .logo img{
    width: 100%;
    height: 90%;
    margin-top: 7%;
}
nav .wrapper .links{
    display: flex;
    align-items: center;
}
nav .wrapper .links a{
    color: black;
    text-decoration: none;
    margin: 0 25px;
    position: relative;
    font-size: 1.4rem;
}
nav .wrapper .links a::before{
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    height: 4px;
    background-color: #288315;
    width: 0%;
    transition: 0.3s ease;
}
nav .wrapper .links a:hover::before{
    width: 100%;
    cursor: pointer;
}

section{
    width: 100%;
    height: 90vh;
    display: flex;
    justify-content: space-between;
    padding: 0 5%;
}
section .content{
    /* Use a base clamp for the main heading container so child text scales nicely */
    font-size: clamp(1rem, 1rem + 1.8vw, 3.7rem);
    margin: 6rem 2rem 0;
    line-height: 1.15;
    max-width: 45%;
    gap: 1rem;
    flex-direction: column;
}
section .content h1 {
    margin: 0 0 0.25rem 0;
    /* h1 will scale relative to the container font-size but keep visual hierarchy */
    font-size: clamp(2rem, 2rem + 4vw, 5rem);
    line-height: 1.03;
    font-weight: 700;
}
section .content h1 span{
    color: #007146;
    /* Slightly larger and bolder for emphasis */
    font-size: clamp(2.2rem, 2.2rem + 4.5vw, 5.5rem);
    font-weight: 800;
    display: inline-block;
}
section .content p{
    font-size: clamp(0.95rem, 0.95rem + 0.6vw, 1.2rem);
    margin: 0;
    margin-top: 1rem;
    line-height: 1.6;
    color: #333;
}

/* Small screens: ensure the content fits and remains readable */
@media (max-width: 720px) {
    section{
        padding: 0 6%;
    }
    section .content{
        max-width: 100%;
        margin: 4rem 0 0;
        font-size: clamp(0.95rem, 0.95rem + 2vw, 2rem);
    }
    section .content h1{
        font-size: clamp(1.6rem, 1.6rem + 3.5vw, 3rem);
    }
    section .content h1 span{
        font-size: clamp(1.8rem, 1.8rem + 3.8vw, 3.3rem);
    }
    section .content p{
        font-size: clamp(0.9rem, 0.9rem + 1.2vw, 1rem);
        margin-top: 0.75rem;
    }
}
section .content button{
    font-size: 1.2rem;
    width: 200px;
    height: 50px;
    background: #007146;
    border-radius:10px ;
    color: white;
    font-weight: 700;
    margin: 3rem 0 0 5.5rem;
    transition: 0.3s linear;
    margin: 0;
}
section .content button:hover{
    color: #007146;
    background-color: transparent;
    border: none;
    box-shadow: 3px 3px black;
    border-right: 2px solid #007146 ;
    border-bottom: 2px solid #007146 ;
}
section .image{
    width: 100%;
}
section .image .box{
    position: absolute;
    background: #007146;
    width: 900px;
    height: 900px;
    right: -370px;
    bottom: -370px;
    border-radius: 100%;
    pointer-events: none;
    transition:0.3s ease-in ;
}
section .image .box img{
    width: 300px;
    height: 450px;
    margin: -50px 0 0 0;
}
section .image .green{
    opacity: 1;
    transform: rotate(0deg);
    filter: drop-shadow(2px 2px 50px #007146);
}
section .image .green img{
    width: 330px;
    transform: rotate(-20deg);
    filter: drop-shadow(2px 2px 50px #007146);
}
section .image .orange img{
    width: 330px;
    transform: rotate(-20deg);
    filter: drop-shadow(2px 2px 50px orange);
}
section .image .orange{
    opacity: 0;
    background: #a6661a;
    transform: rotate(-90deg);
    filter: drop-shadow(2px 2px 50px orange);
}
section .image .pink {
    opacity: 0;
    transform: rotate(-90deg);
    background-color: #91116a;
    filter: drop-shadow(2px 2px 50px pink);
}
section .image .pink img{
    transform: rotate(-30deg);
    height: 520px;
    margin: -130px 0 0 -20px;
    filter: drop-shadow(2px 2px 50px pink);
}

.img-links{
    width: 20%;
    height: 10vh;
    position: absolute;
    bottom: 40px;
    gap: 20px;
    margin: 0 40%;
    display: flex;
    justify-content: space-between;
}
.img-links a{
    width: 100%;
    height: 100%;
    margin: 0 20px;
    cursor: pointer;
    transition: 0.2s linear;
}
.img-links a img{
    width: 50px;
    height: 90px;
}
.img-links a:hover{
    margin-top: -20px;
    filter: drop-shadow(2px 2px 10px #007146);
}
.img-links a:nth-child(2){
    margin: -6px 0 0 -20px;
}
.img-links a:nth-child(2):hover{
    margin-top: -24px;
    filter: drop-shadow(2px 2px 10px orange);
}
.img-links a:nth-child(3){
    margin: -16px 0 0 0;
}
.img-links a:nth-child(3):hover{
    margin-top: -40px;
    filter: drop-shadow(2px 2px 10px rgb(191,73,177));
}
.img-links a:nth-child(3) img{
    height: 90px;
}