@import url('https://fonts.cdnfonts.com/css/folklore');
@import url('https://fonts.cdnfonts.com/css/poppins');


:root {
    --main: #b49253;
}

* {
    box-sizing: border-box;
    outline: none;
    border: none;
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-style: normal;
    color: var(--black);
}

body {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    background-color: #f8f4f4;
}

a{
    cursor: pointer;
    text-decoration: none;
}

header{
    width: calc(100% - 20px);
    background-color: rgba(0, 0, 0, 0.918);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    position: fixed;
    top: 10px;
    left: 10px;
    border-radius: 10px;
}

header h2{
    color: white;
    font-size: 18px;
    font-weight: 500;
}

header div{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

header div a{
    color: white;
    opacity: 0.7;
    transition: opacity 0.3s;
}

header div a:hover{
    opacity: 1;
}

.herosection{
    background-image: url('images/bg.jpg');
    background-position: left;
    background-size: 130%;
    width: 100%;
    height: 1000px;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    padding-left: 10%;
}

h6{
    font-family: 'Folklore', sans-serif;
    font-size: 50px;
    color: white;
    line-height: 50px;
    letter-spacing: 1px;
}

.herosection p{
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    height: 60px;
}

.herosection p box-icon{
    width: 25px;
    height: 25px;
}

.herosection form{
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.158);
    border: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    gap: 5px;
    align-items: start;
    margin-top: 10px;
}

.herosection form h2{
    color: white;
    font-weight: 600;
    font-size: 40px;
}

label{
    display: inline-block;
}

.herosection form div{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.herosection form div span{
    display: flex;
    flex-direction: column;
    width: 49%;
    gap: 5px;
}

.herosection form input[type="text"]{
    width: 100%;
}

.herosection form label{
    color: white;
}

.herosection form input{
    padding: 10px;
    border-radius: 5px;
    font-weight: 500;
}

.herosection form textarea{
    padding: 10px;
    border-radius: 5px;
    font-weight: 500;
    margin-bottom: 10px;
    width: 100%;
}

.herosection form input[type="submit"]{
    background-color: black;
    color: white;
    padding: 10px;
    font-size: 20px;
    padding-left: 30px;
    padding-right: 30px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.herosection form input[type="submit"]:hover{
    opacity: 0.5;
}

.gold{
    color: var(--main);
}

h1{
    font-size: 70px;
    font-weight: 500;
    letter-spacing: -5px;
    margin-top: 100px;
    margin-bottom: 100px;
    text-align: center;
}

.cases{
    width: 100%;
    background-color: white;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid black;
}

.case{
    border: 1px solid black;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.case img{
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 50px;
}

.case h2{
    font-size: 50px;
    font-weight: 500;
    letter-spacing: -5px;
}

.case p{
    font-weight: 400;
}

.areas{
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.area{
    width: 32%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: start;
}

.area img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.area h2{
    font-weight: 600;
    font-size: 40px;
    color: #222;
    letter-spacing: -2px;
}

.area a{
    background-color: black;
    color: white;
    padding: 10px;
    font-size: 20px;
    padding-left: 30px;
    padding-right: 30px;
    cursor: pointer;
    transition: opacity 0.3s;
    border-radius: 5px;
}

.area a:hover{
    opacity: 0.5;
}

.steps{
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.step{
    width: 32%;
    display: flex;
    flex-direction: column;
    align-items: start;
    border: 1px solid #dedede;
    background-color: white;
    border-radius: 10px;
    padding: 30px;
}

.step img{
    width: 100px;
    height: 100px;
    border-radius: 5px;
    margin-bottom: 50px;
    object-fit: cover;
}

.step h2{
    letter-spacing: -2px;
    font-size: 30px;
    color: #222;
    font-weight: 600;
}

footer{
    width: calc(100% - 20px);
    background-color: rgba(0, 0, 0, 0.918);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    margin: 10px;
    border-radius: 10px;
    margin-top: 100px;
}

.spend{
    margin-top: 30px;
    background-color: white;
    border: 1px solid #dedede;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 80%;
}

.spend h2{
    font-weight: 600;
    color: #222;
    font-size: 30px;
}

.spend form{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.spend input{
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 19%;
    padding: 20px;
    font-weight: 500;
}

.spend textarea{
    width: 49%;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 20px;
    font-weight: 500;
}

.spend form input[type="submit"]{
    width: 10%;
    background-color: black;
    color: white;
    padding: 20px;
    padding-left: 30px;
    padding-right: 30px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.spend form input[type="submit"]:hover{
    opacity: 0.5;
}

footer div{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

footer div a{
    color: white;
    opacity: 0.7;
    transition: opacity 0.3s;
}

footer div a:hover{
    opacity: 1;
}

.avresi{
    position: fixed;
    right: 10px;
    bottom: 10px;
    background-color: white;
    border: 2px solid #999;
    padding: 20px;
    display: flex;
    flex-direction: column;
    width: calc(100% - 20px);
    max-width: 400px;
    border-radius: 10px;
    gap: 10px;
    transition: opacity 1s ease-in-out;
}

.avresi img{
    width: 100%;
    max-width: 200px;
}

.avresi p{
    font-weight: 400;
}

.avresi div{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.avresi div a{
    width: 49%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    background-color: #222;
    color: white;
    font-weight: 600;
    border-radius: 10px;
    transition: opacity 0.3s;
}

.avresi div a.blue{
    background-color: oklch(.546 .245 262.881);
}

.avresi div a:hover{
    opacity: 0.7;
}

@media screen and (max-width: 1300px) {
    .cases{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 1000px) {
    .cases{
        grid-template-columns: repeat(2, 1fr);
    }
    .case{
        padding: 10px;
    }
    .case h2{
        font-size: 30px;
        letter-spacing: -2px;
    }
    .steps{
        width: 95%;
    }
    .spend{
        width: 95%;
    }
    .areas{
        width: 95%;
    }
}

@media screen and (max-width: 1150px) {
    header div{
        display: none;
    }
}

@media screen and (max-width: 800px) {
    footer a{
        display: none;
    }
    .areas{
        flex-wrap: wrap;
    }
    .area{
        width: 100%;
        margin-bottom: 20px;
    }
    .steps{
        flex-wrap: wrap;
    }
    .step{
        width: 100%;
        margin-bottom: 20px;
    }
    .spend form{
        flex-direction: column;
    }
    .spend input{
        width: 100%;
        margin-bottom: 10px;
    }
    .spend textarea{
        width: 100%;
        margin-bottom: 10px;
    }
    .spend form input[type="submit"]{
        width: 100%;
    }
    h1{
        font-size: 40px;
        letter-spacing: 0px;
    }
}