@import url('hearder.css');
@import url('boxes.css');
@import url('form.css');
@import url('footer.css');
@import url('hero.css');
@import url('about.css');
@import url('testimonials.css');
@import url('services.css');
@import url('promotion.css');
@import url('contact.css');
@import url('advise.css');
@import url('about-page.css');
@import url('service-page.css');


:root{
	--primary-color: #723729;
    --primary-dark-color: #552014;
    --primary-light-color: #B6796B;
    --accent-color: #eda0a8;
    --accent-color-light: #F9C9CE;
    --salmon: #FF9589;
    --sand: #E8D8C8;
	--white: #ffffff;
    --black: #111111;
    --light-grey: #f5f5f5;
    --dark-grey: #212121;
    --grey-text: #B4B4B4;
    --blue: #0F4C5C;
    --light-blue: #90B9C4;
    --titleSize: 3rem;
    --subtitleSize : 2rem;
    --subtitleMobileSize : 1.7rem;
    --importantText: 1.3rem;
    --normalText: 1rem;
    --smallText: 0.8rem;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;  
}
html{
    scroll-behavior: smooth;
}
body{
    background-color: var(--light-grey);
}

.title{
    color: var(--black);
    font-size: var(--titleSize);
    font-weight: 700;
    text-align: center;
    margin: 1rem 0;
}
.subtitle{
    color: var(--primary-color);
    font-size: var(--subtitleSize);
    font-family: 'Museo', sans-serif;  
    font-weight: 600;
    text-align: left;
    margin: 1rem 0;
    z-index: 2;
}
.justify-text{
    text-align: justify;
}
.center-text{
    text-align: center;
}

.my-link{
    text-decoration: none;
    cursor: pointer;
}

.icon-layout{
    opacity: 0.5;
    width: 100px;
    z-index: 1;
}

.btn-whatsapp{
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 70px;
    background-color: var(--blue);
    color: var(--white);
    border-radius: 50%;
    font-size: var(--subtitleSize);
    text-decoration: none;
    box-shadow: 0px 4px 16px rgba(0,0,0,0.18);
    z-index: 2;
    transition: background-color 0.3s ease;
    animation: btnWhats 1s infinite linear alternate;
}
.btn-whatsapp:hover{
    background-color: var(--primary-color);
}

@keyframes btnWhats {
    from{
        transform: scale(1);
    }
    to{
        transform: scale(1.1);
    }
}


@media screen and (max-width: 600px) {
    .title{
        text-align: center;
        font-size: var(--subtitleSize);
    }
    .subtitle{
        text-align: center;
        font-size: var(--subtitleMobileSize);
    }
}
