html {
    scroll-behavior: smooth;
}

.navbar.scrolled {
    background-color: #ACE5D7; 
    transition: background-color 0.3s ease; 
    width: 100%;
    z-index: 1;
}

.navbar {
    position: fixed;
    padding: 2rem 8rem;
    transition: background-color 0.3s ease; 
    width: 100%;
    z-index: 0;
}


.ul-navbar{
    display: flex;
    align-items: center;
    gap: 5rem;
}

.ul-navbar li{
    list-style: none;
}

.ul-navbar li a{
    text-decoration: none;
    color: black;
}

.section-banner{
    padding: 3rem 0;
}

.banner-init {
    display: flex;
}

.banner-img {
    z-index: -1;
    position: absolute;
    right: 100px;
}

.banner-img img {
    width: 100%;
}

.banner-text {
    max-width: 576px;
    margin-top: 15rem;
    margin-left: 7rem;
}

.banner-text h1 {
    font-size: 68.5px;
    line-height: 5rem;
}

.banner-text p {
    font-size: 37.91px;
    font-weight: 200;
    margin-top: 1rem;
}

.banner-text input {
    padding: 1rem 3rem;
    background-color: #FF9B54;
    color: white;
}

.banner-btns {
    display:  flex;
    margin-top: 3rem;
    gap: 3rem;
}

.banner-btns input{
    border: none;
    border-radius: 2rem;
}

.content-services {
    margin-top: 8rem;
    display: flex;
    justify-content: center;
    gap: 8rem;
    flex-wrap: wrap;
}

.services {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-about {
    display: flex;
    justify-content: end;
    gap: 5rem;
    margin-top: 10rem;
}


.about-text{
    margin-right: 7rem;
}

.about-text p {
    font-size: 39.81px;
    max-width: 605px;
    color: var(--primary-color);
}

.about-img{
    position: absolute;
    left: 100px;
}

.about-img img {
    width: 100%;
}

.section-numbers {
    background-color: #4F000B;
    color: white;
    text-align: center;
    margin: 15rem 1rem;
}

.section-numbers h2 {
    padding-top: 5rem;
    font-size: 57.75px;
}

.section-numbers p {

    font-size: 28.09px;
    max-width: 772px;
    margin: 1rem auto;
}


.content-numbers {
    display: flex;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.section-contacts {
    display: flex;
    align-items: center;
    margin-left: 7rem;
    margin-bottom: 7rem;
}



.content-text h2 {
    font-size: 58.9px;
}

.content-text p {
    font-weight: 300;
    font-size: 39.8132px;
    line-height: 106.8%;
    max-width: 800px;
}

.content-text input {
    padding: 1rem 3rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 2rem;
    font-size: 22.32px;
    margin-top: 40px;
}

.contacts {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    align-items: center;
}

.contacts-right {
    position: absolute;
    left: 50%;
    z-index: -1;
}

.contacts-right img {
    width: 100%;
}

.content-contacts {
    margin-top: 80px;
    font-size: 1.7rem;
}


.footer {
    background-color: #ACE5D7;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.container-footer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5rem;
    padding: 5rem;
}

.container-footer p {
    font-size: 23.64px;
}

.container-footer h3 {
    font-size: 28.13px;
    font-weight: bold;
}

.footer-texts {
    max-width: 350px;
}

.footer-terms {
    background-color: #83ada4;
    color: white;
    display: flex;
    justify-content: space-evenly;
    padding: 1rem;
}

.footer-terms a{
    color: white;
}



input[type="button"] {
    transition: background-color 0.3s ease, transform 0.2s ease;
}

input[type="button"]:hover {
    background-color: #FF7B3A; 
    transform: scale(1.05); 
    cursor: pointer; 
}




.banner-text input,
.content-text input {
    padding: 1rem 3rem;
    background-color: #FF9B54;
    color: white;
    border: none;
    border-radius: 2rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.banner-text input:hover,
.content-text input:hover {
    background-color: #FF7B3A; 
    transform: scale(1.05); 
    cursor: pointer; 
}



.ul-navbar li a {
    transition: color 0.3s ease, transform 0.2s ease;
}

.ul-navbar li a:hover {
    color: #FF7B3A; 
    transform: scale(1.05); 
}

#loading-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #f7f7f7;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 1; 
    transition: opacity 0.5s ease; 
}

.loading-icon {
    width: 100px; 
    height: 100px; 
    border: 10px solid #ccc; 
    border-top: 10px solid #ff4081;
    border-radius: 50%; 
    animation: spin 1s linear infinite; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.paw {
    width: 50px; 
    height: 50px; 
    background: url('./assets/imgs/paw-icon.png') no-repeat center center; 
    background-size: contain; 
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    margin-top: 20px;
    font-size: 1.5rem;
    font-family: Arial, sans-serif;
    color: #333;
}

.hamburger{
    display: none;
    font-size: 3rem;
    background-color: transparent;
    border: none;
    font-weight: bold;
}

.hamburger:hover{
    cursor: pointer;
}

.menu {
    display: none; 
    position: fixed; 
    top: 65%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    background-color: #ACE5D7;
    width: 100%; 
    height: 100%; 
    z-index: 2; 
    overflow-y: auto; 
    padding: 1rem; 
}

.menu a {
    color: white;
    text-decoration: none;
    display: flex;
    justify-content: center;
    padding: 1rem;
}

.menu a:hover {
    background-color: white;
    color: black;
    transition: .6s;
}

.menu.show {
    display: block;
}






@media (max-width: 800px) {
    .ul-navbar li:nth-child(2),
    .ul-navbar li:nth-child(3),
    .ul-navbar li:nth-child(4),
    .ul-navbar li:nth-child(5) {
        display: none;
    }

    .banner-img {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .ul-navbar {
        justify-content: space-around;
    }

    .banner-text {
        margin-left: 0;
    }

    .banner-init{
        justify-content: center;
    }

    .about-img {
        display: none;
    }

    .about-text {
        justify-content: center;
    }

    .contacts-left {
        justify-content: center;
    }

    .contacts-right {
        display: none;
    }


    .banner-text {
        margin-inline: 2rem;
    }

    .about-text{
        margin: 0 2rem;
    }

    .section-contacts{
        justify-content: center;
        margin: 0 2rem;
    }
}

@media (max-width: 1350px) {
    .banner-text {
        background-color: rgba(81, 158, 138, 0.7);
        border-radius: 3rem;
        padding: 2rem;
    }

    .about-text{
        background-color: rgba(255, 155, 84, 0.7);
        border-radius: 3rem;
        padding: 2rem;
    }

    .contacts-left{
        background-color: rgba(252, 252, 98, 0.7);
        border-radius: 3rem;
        padding: 2rem;
    }

    
}





