@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
:root{
    --accent: #ff9a24;
    --black: #131313;
}
body{
    min-height: 100vh;
}
section{
    min-width: 100%;
    min-height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* NAVBAR */
nav{
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--black);
    background-color: white;
    padding: 30px 50px;
    transition: all .4s ease-out;
    filter: drop-shadow(5px 5px 10px transparent);
}
nav.sticky{
    background-color: white;
    filter: drop-shadow(5px 5px 10px #ffbe745e);
}
.brand{
    text-decoration: none;
    transition: all ease-in-out 0.4s;
    color: var(--black);
}
.brand h1{
    font-size: 32px;
    font-weight: 900;
}
.accent{
    color: var(--accent);
}
.brand:hover{
    opacity: 0.8;
}
.menu{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.menu a{
    display: inline-block;
    position: relative;
    color: var(--black);
    text-decoration: none;
    font-size: 24px;
    font-weight: 400;
    border-radius: 32px;
    background-color: white;
    padding: 10px;
    transition: all .3s ease-out;
}
.menu a:hover{
    background-color: var(--accent);
    color: white;
}
.btn{
    color: white;
    font-size: 25px;
    cursor: pointer;
    display: none;
}
.btn-2{
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 24px;
    font-weight: 500;
    color: var(--black);
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: 0.3 ease-in-out;
}
.btn-2 i{
    font-size: 32px;
    transition: all .2s ease-out;
    transition: 0.3 ease-in-out;
}
.btn-2:hover .fa-circle-arrow-right{
    color: var(--accent);
}

/* Hero Page */
.heropage{
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url('../images/hero-background.jpg');
}
.hero-headlines{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 750px;
    margin-top: 100px;
    text-align: center;
}
.hero-headlines h1{
    font-size: 64px;
    font-weight: 900;
}
.hero-headlines p{
    font-size: 24px;
    font-weight: 600;
}
.hero-headlines-buttons {
    display: flex;
    gap: 24px;
    margin-top: 24px;
}
.btn-3{
    width: 200px;
    height: 50px;
    background-color: var(--black);
    font-size: 24px;
    color: white;
    border-radius: 15px;
    border: 1px solid var(--black);
    transition: all .2s ease-out;
}
.btn-3:hover{
    background-color: var(--accent);
    border: 1px solid var(--accent);
}
.btn-transparent{
    background-color: transparent;
    color: var(--black);
}
.btn-transparent:hover{
    background-color: var(--accent);
    color: white;
}
.hero-images{
    display: flex;
    margin-top: 60px;
    gap: 35px;
}
.hero-images img{
    border-radius: 15px;
}
/* requirements section */
#requirements{
    align-items: center;
    justify-content: center;
    display: flex;
    background-image: url('../images/req-bg.png');
}
.require-headlines{
    width: 660px;
}
.require-headlines h1{
    font-size: 64px;
    font-weight: 900;
}
.require-headlines p{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 50px;
}
.r-item-container{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.r-item{
    display: flex;
    gap: 15px;
    align-items: center;
}
.r-logo{
    width: 50px;
    height: 50px;
    border: 1px solid var(--black);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.r-logo{
    font-size: 24px;
}
.r-item h5{
    font-size: 28px;
    font-weight: 600;
}
/* PETS SECTION */
.pets{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 70px;
}
.pets-headlines{
    display: flex;
    gap: 25px;
    align-items: center;
}
.pets-headlines .fa-paw{
    font-size: 42px;
    color: #7291ff;
}
.pets-headlines h1{
    font-size: 54px;
    font-weight: 600;
}
.pets-collection{
    display: flex;
    gap: 25px;
    margin-top: 70px;
}
.pet-item{
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    transition: .5s ease-out;
}
.pet-item img{
    border-radius: 20px;
}
.pet-item h3{
    font-size: 32px;
    font-weight: 600;
}
.btn-pets{
    width: 270px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 0px;
    margin-top: 50px;
    cursor: pointer;
}
/* About us */
.about{
    display: flex;
    padding: 0px 50px;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.about-headlines{
    display: flex;
    flex-direction: column;
    width: 900px;
}
.about-headlines h1{
    font-size: 56px;
    font-weight: 600;
}
.about-headlines p{
    font-size: 28px;
    font-weight: 400;
}
.about-info{
    display: flex;
    margin-top: 20px;
    justify-content: center;
    gap: 70px;
    margin-top: 40px;
}
.about-info-item{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about-info-item h5{
    font-size: 36px;
    font-weight: 600;
}
.about-info-item h6{
    font-size: 24px;
    font-weight: 600;
}
/* testimonals */
.testimonals{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 150px;
}
.testimonals h6{
    font-size: 24px;
    font-weight: 800;
    color: var(--accent);
}
.testimonals h1{
    font-size: 64px;
    font-weight: 900;
}
.testimony-container{
    display: flex;
    margin-top: 34px;
    gap: 20px;
}
.testimony-item{
    display: flex;
    flex-direction: column;
    width: 430px;
    border: 1px solid var(--black);
    border-radius: 12px;
    padding: 24px 30px;
}
.testimony-people{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.testimony-people .icon{
    font-size: 50px;
    color: #ff9a24;
}
.testimony-name{
    display: flex;
    gap: 15px;
}
.testimony-name img{
    width: 50px;
    border-radius: 50px;
}
.testimony-name h4{
    font-size: 20px;
    font-weight: 800;
}
.testimony-name p{
    opacity: 0.8;
}
.testimony-text{
    font-weight: 600;
    margin-top: 28px;
    font-size: 14px;
}
/* FOOTER */
footer{
    background-color: var(--black);
    color: white;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
    overflow-x: hidden;
}
.footer-container{
    display: flex;
}
.footer-links{
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    justify-content: center;
    padding: 30px 50px;
}
.footer-links h2{
    font-size: 24px;
    font-weight: 800;
}
.link-container{
    display: flex;
    gap: 60px;
}
.links{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.links a{
    color: white;
    text-decoration: none;
    transition: all 0.3s ease-out;
}
.links a:hover{
    color: var(--accent);
}
.footer-brand{
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-top: none;
    padding: 30px 120px;
}
.footer-brand h1{
    font-size: 48px;
    font-weight: 800;
}
.footer-brand p{
    font-size: 24px;
}
.socials{
    display: flex;
    gap: 20px;
    margin-top: 15px;
}
.socials a{
    color: white;
    border: 1px solid white;
    border-radius: 32px;
    padding: 8px 12px;
    background-color: var(--black);
    transition: all 0.3s ease-out;
}
.socials a:hover{
    background-color: var(--accent);
}
.footer-contact-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 32px 50px;
}
.contact-info-item{
    display: flex;
    gap: 15px;
    align-items: center;
}
.contact-info-item i{
    font-size: 24px;
}
.contact-info-item p{
    font-size: 24px;
}
.copyright{
    margin-top: 20px;
}