/* ====== BODY ====== */

body {
    padding: 0 0;
    padding-top: 7.6vw;
    margin: 0 0;
}

div[id=Hometop] {
    background-image: url('/images/HomeBG.webp');
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0 0;
    margin-top: 2vw;
    padding-bottom: 25.5vw;
}

@keyframes hometop {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }    
}

div[id=Topinfo] {
    font-family: 'Libre', serif;
    font-size: 1.6vw;
    width: 21vw;
    background: rgba(40, 40, 40, 0.4);
    backdrop-filter: blur(12px);
    border: 2px solid white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    border-radius: 15px;
    padding: 0 1.3vw;
    padding-bottom: 3vw;
    margin-left: 70vw;
    color: rgb(255, 255, 255);
    line-height: 1;
    position: relative;
    top: 5.5vw;
    animation: hometop 1s ease-in;
}

h1[id=ctaheading] {
    margin-left: 3.8vw;
}

span[id=ctaheading2] {
    background: linear-gradient(110deg, #ffe8a3, #cea51e);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 4vw;
    margin-left: 1vw;
}

p[id=ctatext] {
    font-family: 'Playfair';
    font-size: 1.3vw;
    line-height: 1.2;
    margin-right: 0.4vw;
    text-align: center;
}

a[id=ctabutton] {
    text-decoration: none;
    margin-left: 2.3vw;
    padding: 0.8vw 4vw;
    background: linear-gradient(110deg, #ffe082, #b98f06);
    border: 1px solid white;
    border-radius: 30px;
    color: #ffffff;
    font-family: 'Cormorant';
    font-size: 2vw;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgb(255, 255, 255);
}

#ctabutton:hover {
    box-shadow: 0 0 5px rgb(36, 36, 36);
    border-color: rgb(90, 90, 90);
}

#Homeimages {
    margin: 5vw 0;
    display: flex;
    flex-direction: column;
    width: 100%;
}

#imagesheading {
    width: fit-content;
    font-family: 'Montserrat';
    font-size: 1.8vw;
    margin: 1.5vw 0;
    margin-left: 41vw;
    border: 0 solid rgba(0, 0, 0, 0.4);
    border-bottom-width: 1px;
}

#homeimage1 {
    width: 100%;
    margin: 0 0;
    padding: 0 0;
}

.trustpilot-widget {
    margin-bottom: 5vw;
}

/* ====== MOBILE LAYOUT ====== */

@media (max-width: 430px) {
    body {
        padding-top: 10vw;
    }

    div[id=Hometop] {
    background-size: cover;
    background-position: -30vw center;
    padding-bottom: 35vw;
    }

    div[id=Topinfo] {
        width: 50vw;
        height: 66vw;
        font-size: 3vw;
        padding: 0 2vw;
        margin-left: 40vw;
        border-radius: 5vw;
        position: relative;
        top: 7vw;
    }

    #ctaheading {
        margin-left: 13vw;
        margin-bottom: 0;
    }

    #ctaheading2 {
        font-size: 8vw;
        margin-left: 1.1vw;
    }

    #ctatext {
        font-size: 3.3vw;
        margin-top: 2vw;
    }

    #ctabutton {
        padding: 2.5vw 6vw;
        font-size: 4vw;
        margin: 0 0;
        display: block;
        text-align: center;
    }

    #imagesheading {
        font-size: 4vw;
        margin-left: 34.5vw;
    }
}