/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap'); */

/* base CSS */
*{
   box-sizing: border-box;
   margin: 0;
   padding: 0;
}

body{
   font-family: 'Roboto', sans-serif;
   font-size: 16px;
   line-height: 1.5rem;
   color: #F1F1F1;
   color:rgba(24, 21, 19, 1);
   /* background-color: rgba(24, 21, 19, 1); */
   background-color: rgba(212, 183, 153, 1);
}

img {
   max-width: 100%;
   margin: 20px 0;
   /* margin-right: -30px; */
}

h1, h2{
   margin-bottom: 15px;
}

ul{
   list-style-type: none;
}

a {
   text-decoration: none;
   color: inherit;
}

.container{
   max-width: 1100px;
   margin: 0 auto;
}

/* main code */
.navbar{
   color: rgba(212, 183, 153, 1);
   background-color: rgba(24, 21, 19, 1);  
   position: fixed;
   width: 100vw;
   top: 0;
}

.navbar .container{
   display: flex;
   align-items: center;
   height: 70px;
   justify-content: space-between;
}

.navbar .logo{
   font-size: 24px;
   font-weight: 900;
}

.navbar .nav-items ul{
   display: flex;
   gap: 30px;
}


/* hero section */
.landing-page{
   margin-top: 70px;
   color : rgba(212, 183, 153, 1);
   background-color:  rgba(24, 21, 19, 1);
   border-top: 1px solid rgba(212, 183, 153, 1);
}

.landing-page .container{
   min-height: 100vh;
   margin-top: -30px;
   display: flex;
   align-items: center;
   gap: 50px;
}

.landing-page h1{
   font-size: 40px;
   line-height: 1.1em;
}

.landing-page p{
   font-size: 18px;
}

.landing-page button{
   border: 0.08rem solid rgba(212, 183, 153, 1);
   background-color:  rgba(24, 21, 19, 1);
   color: rgba(212, 183, 153, 1);
   border-radius: .25rem;
   font-weight: 600;
   min-height: 3rem;
   padding: 8px 25px;
   margin-top: 15px;
}

.landing-page .landing-image{
   width: 80%;
}


/* usp section */
.usp .container {
   padding-bottom: 150px;
}
.usp .container h1{
   font-size: 40px;
   line-height: 1.1em;
   display: table;
   margin: 80px auto;
}

.usp-cards {
   display: flex;
   justify-content: space-evenly;
}
.usp-card {
   width: 220px;
   border: 3px solid rgba(24, 21, 19, 1);
   border-radius: 1em;
   padding: 20px;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: space-around;
   gap: 15px;
}

.usp-card p{
   font-size: 18px;
   font-weight: bold;
   text-align: center;
}

.usp-card img{
   width: 80px;
}


/* testimonials */
.testimonial {
   background-color: #D4A373;
}

.testimonial .container{
   padding: 140px 0;
   max-width: 900px;
}

.testimonial .quote{
   font-size: 30px;
   line-height: 1.3em;
   font-style: italic;
   text-align: justify;
   color: rgba(24, 21, 19, 0.8);
}

.testimonial .dog {
   font-size: 24px;
   font-weight: bold;
   margin-top: 20px;
   text-align: end;
} 


/* footer section */
footer .container {
   padding: 10px 0;
}

footer h2{
   margin: 15px 0;
   font-weight: 900;
}

.footer-content{
   display: flex;
   justify-content: space-between;
}

.footer-content .right-content .links{
   display: flex;
   gap: 70px;
}

.links .right-links {
   flex-basis: 60%;
}

.footer-content .left-content {
   flex-basis: 35%;
   color: rgba(24, 21, 19, 0.8);
}

.right-links ul>li:nth-child(1), .left-links ul>li:nth-child(1) {
   font-weight: bold;
   font-size: 1.1em;
   margin-bottom: 5px;
   color: rgba(24, 21, 19, 0.8);
}

.socials  ul{
   display: flex;
   gap: 30px;
   margin: 30px 0;
}

.socials ul li{
   font-size: 25px;
}

.left-content p {
   font-weight: 600;
}

.left-content .newsletter, .left-content button{
   background-color: rgba(212, 183, 153, 1);
   border: 0.14em solid rgba(24, 21, 19, 0.3);
   padding: 15px;
   margin: 10px 0;
   border-radius: 5px 0 0 5px;
   font-weight: bold;
   color: rgba(24, 21, 19, 0.8);
}

.left-content form button {
   border-radius: 0 5px 5px 0;
   color: rgba(24, 21, 19, 1);
   margin-left: -6px;
}

input[type="checkbox"] {
   width: 1rem;
   height: 1rem;
   accent-color:rgba(212, 183, 153, 1);
}

form label {
   font-size: 0.8rem;
   font-weight: 600;
}


footer hr {
   border: 0.02em solid rgba(24, 21, 19, 0.5);
   margin-bottom: 15px;
}

footer .container>p {
   line-height: 1.6em;
   color: rgba(24, 21, 19, 0.8);
}