@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&family=Tilt+Prism&family=Ubuntu:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@500&display=swap');

/* Navbar */
/* styles.css */

body {
    margin: 0;
    font-family: 'Baloo Bhai 2', cursive;
}
/*CSS for navbar */
.navbar input[type="checkbox"],
.navbar .hamburger-lines{
    display: none;
}

.container{
    max-width: 1200px;
    width: 90%;
    margin: auto;
}

.navbar{
    position: fixed;
    width: 100%;
    height: 74px;
    background: rgb(20, 6, 6);
    color: rgb(255, 195, 161);
    opacity: 0.85;
    z-index: 100;
}

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

.menu-items{
    order: 2;
    display: flex;
}
.logo{
    order: 1;
    font-size: 2.3rem;
}
.logo:hover{
    color:#6ea59a;
}

.menu-items li{
    list-style: none;
    margin-left: -0.5rem;
    font-size: 1.3rem;
}

.navbar a{
    color:  rgb(255, 195, 161);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.navbar a:hover{
    color: #6ea59a;
}

@media (max-width: 768px){
    .navbar{
        opacity: 0.95;
    }

    .navbar-container input[type="checkbox"],
    .navbar-container .hamburger-lines{
        display: block;
    }

    .navbar-container{
        display: block;
        position: relative;
        height: 64px;
    }

    .navbar-container input[type="checkbox"]{
        position: absolute;
        display: block;
        height: 32px;
        width: 30px;
        top: 20px;
        left: 20px;
        z-index: 5;
        opacity: 0;
        cursor: pointer;
    }

    .navbar-container .hamburger-lines{
        display: block;
        height: 28px;
        width: 35px;
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .navbar-container .hamburger-lines .line{
        display: block;
        height: 4px;
        width: 100%;
        border-radius: 10px;
        background: rgb(255, 195, 161);
    }
    
    .navbar-container .hamburger-lines .line1{
        transform-origin: 0% 0%;
        transition: transform 0.3s ease-in-out;
    }

    .navbar-container .hamburger-lines .line2{
        transition: transform 0.2s ease-in-out;
    }

    .navbar-container .hamburger-lines .line3{
        transform-origin: 0% 100%;
        transition: transform 0.3s ease-in-out;
    }

    .navbar .menu-items{
        padding-top: 100px;
        background: #050202;
        color:rgb(255, 195, 161);
        height: 100vh;
        max-width: 300px;
        transform: translate(-150%);
        display: flex;
        flex-direction: column;
        margin-left: -40px;
        padding-left: 40px;
        transition: transform 0.5s ease-in-out;
        box-shadow:  5px 0px 10px 0px #aaa;
        overflow: scroll;
    }

    .navbar .menu-items li{
        margin-bottom: 1.8rem;
        font-size: 1.1rem;
        font-weight: 500;
    }

    .logo{
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 2.5rem;
    }

    .navbar-container input[type="checkbox"]:checked ~ .menu-items{
        transform: translateX(0);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1{
        transform: rotate(45deg);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2{
        transform: scaleY(0);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3{
        transform: rotate(-45deg);
    }

}

@media (max-width: 500px){
    .navbar-container input[type="checkbox"]:checked ~ .logo{
        display: none;
    }
}
/* CSS for Scrollbar */

::-webkit-scrollbar {
    width: 10px;
    color: transparent;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #161623;
}

::-webkit-scrollbar-thumb {
    background-color: #000000;
    border: 2px solid #555555;
    border-radius: 6px;
}

/* Scrollbar for Personality class */

.personality ul::-webkit-scrollbar {
    width: 6px;
    color: transparent;
}

.personality ul::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: transparent;
}

.personality ul::-webkit-scrollbar-thumb {
    background-color: #171723;
    border: 2px solid #555555;
    border-radius: 6px;
}

/* CSS of all classes in the same order of HTML  */
html{
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background: url(../assets/slider_img/background.png);
    margin: 0;
    text-shadow: -1px 0px 0px black;
}

.swiper {
    width: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
}

.swiper-slide img {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    object-fit: cover;
}

.welcome {
    display: block;
    background-color: rgba(0, 0, 0, 0.559);
    position: absolute;
    z-index: 1;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    max-width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: justify;
    color: white;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
}

.welcome h2 {
    text-align: center;
    margin-bottom: 18px;
    font-family: 'Tilt Prism', sans-serif;
    font-size: 4em;
    letter-spacing: 10px;
}

.welcome p {
    text-align: center;
    margin: 10px;
    padding: 10px;
}

#petcommunity {
    font-family: "Ubuntu", sans-serif;
    font-size: 40px;
    font-weight: 800;
}

#describe {
    padding: 30px;
    text-align: center;
    font-size: 20px;
    font-family: cursive;
    font-weight: 500;
}

#submit {
    font-size: 25px;
    font-family: 'Josefin Sans', sans-serif;
}

nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 50px;
}

nav a {
    margin: 10px;
    padding: 27px;
    transition: 0.5s ease-in-out;
    color: rgb(255, 195, 161);
    text-decoration: none;
}

nav a:hover {
    cursor: pointer;
    color: rgba(255, 255, 255, 0.751);
}

.navbar-button {
    background-color: rgb(240, 154, 125, 0.712);
    border: none;
    border-radius: 15px;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 25px;
    margin: 10px 2px;
    cursor: pointer;
    transition-duration: 0.5s;
}

.navbar-button:hover {
    background-color: rgb(210, 125, 125);
    color: white;
}

#photo {
    display: block;
    margin: 0 auto 56px auto;
    width: 100vw;
    object-fit: cover;
    height: 100vh;
}


#list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    grid-template-columns: repeat(auto-fill, 350px);
    grid-gap: 30px;
    font-family: Arial, Helvetica, sans-serif;
}

.card {
    z-index: 10;
    color: aliceblue;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 350px;
    /* adjust the width as needed */
    height: 37.1875em;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 5px #7373b7f9,
        0 0 6px #7373b7f9,
        0 0 10px #7373b7f9,
        0 0 18px #7373b7f9,
        0 0 20px #7373b7f9;
    margin: 20px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);   
}
.card:hover{
    transition: 0.3s;
    transform:scale(1.2);
}

.card img {
    width: 100%;
    height: 200px;
    /* adjust the height as needed */
    max-height: 300px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.content {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.2rem;
    margin: 2rem;
    padding: 2px;
    line-height: 38px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.content strong {
    font-family: 'Josefin Sans', sans-serif;
}

.content .name strong {
    color: aquamarine;
}

.content .animal strong {
    color: goldenrod;
}

.content .age strong {
    color: cadetblue;
}

.content .personality {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content .personality strong {
    color: coral;
}

.content ul {
    padding: 0 0 0 34px;
    margin: 0 auto 0 -10px;
    line-height: 29px;
    flex-direction: column;
}

.content .toy strong {
    color: chocolate;
}

.content .owner strong {
    color: #4cf74c;
}

.content .owner a {
    color: whitesmoke;
}

.content .owner a:hover {
    text-decoration: none;
    color: bisque;
    font-size: 1.3rem;
}
/* 
footer {
    color: whitesmoke;
    background-color: #24262b;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    height: 115px;
    margin-top: 10px;
    font-family: Arial, Helvetica, sans-serif;
}

.logo {
    font-size: 20px;
    margin-left: 5rem;
}

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

.social-media {
    display: flex;
}

.social-media p {
    font-size: 20px;
}

.social-media ul {
    display: flex;
    list-style-type: none;
    margin-right: 3rem;
}

.list-item {
    margin-right: 1rem;
    margin-top: 5px;
}

.list-item:hover .fa-facebook {
    color: #3b5998;
}

.list-item:hover .fa-twitter {
    color: #1da1f2;
}

.list-item:hover .fa-tiktok {
    color: #000000;
}

.list-item:hover .fa-instagram {
    color: #e1306c;
}

.list-item:hover .fa-github {
    color: #333333;
}

.social-media ul li i {
    color: rgba(255, 255, 255, 0.621);
} */

/* .copyright {
    background-color: rgba(13, 13, 19, 0.712);
    display: flex;
    justify-content: center;
    font-size: small;
}

.copyright p {
    text-align: center;
    font-size: 14px;
} */

/* Media Queiries */


@media (max-width: 833px) {

    .welcome h2 {
        font-size: 2.5em;
    }

    #describe {
        display: none;
    }

    #petcommunity {
        font-size: 30px;
    }

    .logo {
        display: none;
    }

    .social-media ul {
        margin-right: 1rem;
        margin-top: 0;
    }

    .list-item {
        margin-top: 17px;
    }

    .list-item i {
        font-size: 24px;
    }

    .footer-line {
        flex-direction: column;
        align-items: center;
    }

    .social-media {
        margin-top: 1rem;
    }

    .social-media p {
        font-size: 20px;
    }

    .copyright {
        margin-top: 3px;
    }

    .copyright p {
        font-size: 13px;
    }

}

@media (max-width:545px) {
    .welcome h2 {
        font-size: 24px;
    }

    #petcommunity,
    #submit {
        font-size: 20px;
    }

    .navbar-button {
        font-size: 20px;
    }
}

@media (max-width:375px) {
    .navbar-button {
        font-size: 15px;
    }

    .social-media p {
        font-size: 15px;
        margin-left: 20px;
    }

    .copyright p {
        font-size: 10px;
    }

    .welcome h2 {
        font-size: 18px;
    }

    #petcommunity,
    #submit {
        font-size: 20px;
    }
}

/* FOOTER */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");

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


.footer {
  position: relative;
  width: 100%;
  background: #3586ff;
  min-height: 100px;
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Poppins", sans-serif;
}

.social-icon,
.menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}

.social-icon__item,
.menu__item {
  list-style: none;
}

.social-icon__link {
  font-size: 2rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}
.social-icon__link:hover {
  transform: translateY(-10px);
}

.menu__link {
  font-size: 1.2rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.75;
  font-weight: 300;
}

.menu__link:hover {
  opacity: 1;
}

.footer p {
  color: #fff;
  margin: 15px 0 10px 0;
  font-size: 1rem;
  font-weight: 300;
}

.wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("https://i.ibb.co/wQZVxxk/wave.png");
  background-size: 1000px 100px;
}

.wave#wave1 {
  z-index: 1000;
  opacity: 1;
  bottom: 0;
  animation: animateWaves 4s linear infinite;
}

.wave#wave2 {
  z-index: 999;
  opacity: 0.5;
  bottom: 10px;
  animation: animate 4s linear infinite !important;
}

.wave#wave3 {
  z-index: 1000;
  opacity: 0.2;
  bottom: 15px;
  animation: animateWaves 3s linear infinite;
}

.wave#wave4 {
  z-index: 999;
  opacity: 0.7;
  bottom: 20px;
  animation: animate 3s linear infinite;
}

@keyframes animateWaves {
  0% {
    background-position-x: 1000px;
  }
  100% {
    background-positon-x: 0px;
  }
}

@keyframes animate {
  0% {
    background-position-x: -1000px;
  }
  100% {
    background-positon-x: 0px;
  }
}

/*CSS for contact section*/
.flex{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.cont{
    height: 350px;
    width:720px;
    background-color: rgb(160, 138, 39);
    color:rgb(99, 51, 6);
    margin:60px 0px;
    padding:30px;
    border:2px solid aliceblue;
    border-radius: 35px;
    font-weight: lighter;
}
.lead{
    margin:10px 0px
}
.logos{
    display: flex;
    justify-content: center;
}
#ims img{
    align-self: center;
    height: 60px;
    width: 60px;
    border-radius: 60px;
    margin-bottom: 20px;
    border: 2px solid white;

}
#ims img:hover{
    border-color: rgb(104, 50, 26);
}
.item{
    display: flex;
    flex-direction: column;
}
.small{
    margin:0px 7px;
}
.form{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.form input{
padding: 8px;
width: 276px;
margin-bottom: 10px;
border-radius: 12px;
color:rgb(68, 14, 14);
}
.form input:hover{
    background-color: #866969;
}
.folder{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 717px;
}
.file{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(66, 102, 131);
    color: white;
    width: 486px;
    height: 143px;
    border-radius: 30px;
    margin: 30px 0px;
    border: 2px solid white;
}
.file:hover{
    background-color: rgb(13, 56, 92);
} 
.file img{
    height: 90px;
    width: 100px;
    border: 2px solid white;
    border-radius: 10px;
    margin-right: 40px;
}
.write a{
    color:black;
}
.write a:hover{
    color:rgb(255, 255, 255);
}
