﻿@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
}

.heading-font {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.body-font {
    font-family: 'Roboto', sans-serif;
}

.main-cta {
    background: #AA8166;
    padding: 14px 75px;
    color: #fff;
    border-radius: 5px;
    transition: all 200ms ease-in-out;
}

.main-cta:hover {
    color: #fff;
    text-decoration: unset;
    background: #ebaa7f;
}

nav {
    padding: 10px 25px;
}

.top-fold {
    background-image: url(../images/top-fold-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 300px 0;
    position: relative;
    height: 100vh;
}


    .top-fold h1 {
        font-size: 50px;
    }

    .top-fold h3 {
        background: #F4DBC7;
        padding: 10px 10px 7px 10px;
        width: 180px;
        border-radius: 7px;
        text-align: center;
    }

.sec-1 {
    padding: 60px 0;
}

    .sec-1 h1 {
        color: #AA8166;
        font-size: 45px;
    }

.sec-2 {
    margin-top: -120px;
    padding: 120px 0 60px 0;
    background: #F4DBC7;
}

.box {
    background: #AA8166;
    color: #fff;
    padding: 40px 20px;
    margin-top: 50px;
    border-radius: 10px;
    min-height: 280px;
}

.box-active {
    background: #FFFFFF;
    color: #333;
    padding: 40px 20px;
    box-shadow: 0 15px 15px rgb(0 0 0 / 10%);
    border-radius: 10px;
    min-height: 310px;
}

.sec-3 {
    padding: 60px 0;
    background-image: url(../images/below-fold-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
}

    .sec-3 h1 {
        color: #AA8166;
        font-size: 58px;
    }

    .sec-3 img {
        position: relative;
        top: 110px;
        left: -50px;
        width: 410px;
    }

.sec-4 {
    padding: 60px 0;
    background: #FFFDF2;
}

.product-box {
    border-radius: 10px;
    background: #F4DBC7;
    padding: 20px;
    transform: scale(0.95);
    min-height: 362px;
}


footer {
    background: #262624;
    padding: 60px 0 10px 0;
}

footer a {
    color: #fff;
    font-size: 14px !important;
}

footer p {
    font-size: 14px !important;
}

footer hr {
    border-color: #ddd;

}
@media (max-width: 768px) {
    .content-top {
        position: absolute;
        bottom: 100px;
    }

    .top-fold {
        background-position: 7%;
    }
}

@media (max-width: 600px) {
    .top-fold h1 {
        font-size: 35px;
    }

    nav {
        padding: 10px;
    }

    .main-cta {
        padding: 10px 20px;
        font-size: 14px;
    }

    .sec-3 img {
        left: unset;
    }

    .sec-4 h2 {
        font-size: 26px;
    }

    .sec-4 h1 {
        font-size: 33px;
    }

    .product-box {
        min-height: unset;
    }

    .box {
        margin: 0;
    }
}