.home-wrap {
    width: 98%;
    height: 630px;

    margin: 0 auto;
    margin-top: 70px;

    border-radius: 35px;
    background: #FDD6B5;
}

.home-content {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.home-right {
    margin-left: 80px;
}

.subtitle {
    color: #6f4e37;
    font-family: "GeneraLight";
    font-size: 28px;

    margin: 0;
}

.title {
    color: #1B1A18;
    font-family: 'GeneraBold';
    font-size: 64px;

    margin-top: 7px;
    margin-bottom: 14px;
}

.title span {
    color: #6f4e37;
}

.paragraph {
    max-width: 450px;
    width: 100%;

    color: #1b1a18bd;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 20px;

    margin: 0;
}

.home-btn {
    padding: 17px 42px;
    margin-top: 20px;

    border-radius: 9999px;
    border: none;
    background-color: #1B1A18;

    cursor: pointer;

    text-decoration: none;
    color: #fff;
    font-family: 'Godber';
    font-size: 22px;

    transition: all 0.3s ease;
}

.home-btn:hover {
    background-color: #6f4e37;
    transform: scale(1.05);
}

.home-btn:active {
    background-color: #1B1A18;
    transform: scale(0.95);
}


.home-right {
    width: auto;
    height: auto;
    margin-right: auto;
}

.home-image {
    width: 800px;
    margin-right: 60px;
}

/* --- Media Queries for home.css --- */
@media screen and (max-width: 1300px) {
    .home-image {
        width: 600px;
    }
}
@media screen and (max-width: 1024px) {
    .home-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 40px;
    }
    .home-right {
        margin: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .home-image {
        width: 500px;
        margin-right: 0;
    }
    .title {
        font-size: 50px;
    }
    .home-wrap {
        width: 96%;
        height: auto;
        padding: 50px 0;
    }
}
@media screen and (max-width: 768px) {
    .home-image {
        width: 90%;
    }
    .subtitle {
        font-size: 20px;
    }
    .title {
        font-size: 40px;
    }
    .paragraph {
        width: 90%;
        font-size: 15px;
    }
}