/*@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&display=swap');*/
/*@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Great+Vibes&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Great+Vibes&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');

.comforta {
    font-family: "Comfortaa", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}


.great-vibes-regular {
    font-family: "Great Vibes", cursive;
    font-weight: 400;
    font-style: normal;
}

.playfair {
   font-family: "Playfair", serif;
   font-optical-sizing: auto;
   font-weight: 400;
   font-style: normal;
   font-variation-settings:
           "wdth" 100;
}




body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
}

header {
    background-color: #2c3e50;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

nav {
    background-color: #34495e;
    overflow: hidden;
}

nav a {
    float: left;
    display: block;
    color: #fff;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
}

/*nav a:hover {*/
/*    background-color: #2980b9;*/
/*}*/

.hero {
    background-image: url('https://via.placeholder.com/1920x600');
    background-size: cover;
    height: 400px;
    position: relative;
    text-align: center;
    color: #6ea2e0;
}

.hero h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3em;
}

.services {
    padding: 40px 20px;
    text-align: center;
}

.service-item {
    background-color: #ecf0f1;
    /*margin: 20px auto;*/
    margin-bottom: 50px;
    padding: 20px;
    border-radius: 8px;
    /*max-width: 800px;*/
}

footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin-top: 30px;
}

.img-item {
    max-height: 300px;
}

.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 20px;
    /*background: #25D366;*/
    /*color: white;*/
    /*width: 60px;*/
    /*height: 60px;*/
    /*border-radius: 50%;*/
    text-align: center;
    /*font-size: 20px;*/
    /*line-height: 60px;*/
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
}



/***********************************************************/
@media (max-width: 768px) {
    .img-item {
        max-height: 100px;
    }
}

@media (max-width: 480px) {
    .img-item {
        max-height: 50px;
    }
}