@import url(https://fonts.googleapis.com/css);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to right, #c6f6d5, #bee3f8);
  scroll-behavior: smooth;
}

br.divider {
    display: none;
}

.navbar {
  background-color: #2c7a7b;
  color: white;
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  position: fixed;
  z-index: 999;
}

.navbar .logo {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.navbar nav a {
  color: white;
  text-decoration: none;
  margin-left: 30px;
  font-weight: 600;
  font-size: 18px;
}

.navbar nav a:hover {
  color: lightgray;
}

.navbar .icons {
    position: absolute;
    right: 5%;
    font-size: 1.45rem;
    color: white;
    cursor: pointer;
    display: none;
}

#check {
    display: none;
}

@media (max-width: 740px) {
    .navbar .logo {
        font-size: 0.8rem;
    }
    
    .navbar .icons {
        display: inline-flex;
    }

    .icons .close {
        display: none;
    }

    #check:checked~.icons .menu {
        display: none;
    }

    #check:checked~.icons .close {
        display: block;
    }

    #check:checked~nav {
        height: 10.7rem;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        background-color: rgba(5, 120, 85, 0.5);
        backdrop-filter: blur(50px);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: 0.3s ease;
    }

    nav a {
        display: block;
        font-size: 1.1rem;
        margin: 1.5rem 0;
        text-align: center;
    }
}

.container {
  max-width: 1000px;
  margin: 30px auto;
  padding-top: 50px;
  padding-bottom: 100px;
  text-align: center;
}

.about-container {
    line-height: 1.5;
}

.about-container p {
    margin-bottom: 10px;
}

.card {
  background-color: white;
  padding: 20px 30px;
  margin: 20px 4vw;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}

.card select {
  margin: 5px;
  padding: 6px 8px;
  outline: none;
  border-radius: 8px;
  font-size: 16px;
}

.card option {
  padding: 6px 8px;
  font-size: 16px;
}

.card button {
  background-color: #48bb78;
  color: white;
  padding: 10px 20px;
  border: none;
  outline: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

.card button:hover {
  background-color: #38a169;
}

.card a {
    text-decoration: none;
    color: black;
    transition: 0.05s;
}

.contact-card a {
    margin-left: 4px;
    transition: 0.05s;
}

.card a:hover {
    text-decoration: underline;
    color: #48bb78;
}

.contact-card h2 {
    margin-bottom: 4px;
    font-size: 1.75rem;
}

.contact-card i {
    font-size: 1.15rem;
}

.contact-card i.env {
    color: #f9ce34;
    position: relative;
    bottom: -1.3px;
}

.contact-card i.li {
    color: #0a66c2;
}

.contact-card i.fb {
    color: #3b5998;
}

.contact-card i.ig {
  color: transparent;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  background-clip: text;
  -webkit-background-clip: text;
}

.contact-card i.gh {
    color: #24292f;
}

.pet-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.pet-card {
  background-color: white;
  width: 250px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  padding-bottom: 13px;
}

.pet-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.pet-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.pet-card h3 {
  margin: 10px 0;
  font-size: 1.3rem;
  font-weight: 700;
}

footer {
  font-weight: 500;
  background-color: #2c7a7b;
  color: white;
  text-align: center;
  padding: 10px 5px;
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

footer p {
    margin-bottom: 3px;
}

footer .footer-icons {
    margin-top: 8px;
}

footer a {
    text-decoration: none;
    color: white;
    font-size: 22px;
    margin-left: 8px;
    transition: font-size 0.3s, text-shadow 0.3s;
}

footer a:hover {
    font-size: 24px;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    color: lightgray;
}

@media (max-width: 980px) {
    .navbar {    
        padding: 15px 3.5%;
    }
    .navbar .icons {
        right: 3.5%;
        font-size: 1.4rem;
    }
}

@media (max-width: 610px) {
    .navbar .logo {
        font-size: 0.7rem;
    }

    #card-br {
        display: block;
    }
}

@media (max-width: 490px) {
    .navbar .logo {
        font-size: 0.6rem;
    }
    .navbar .icons {
        font-size: 1.3rem;
    }

    nav a {
        font-size: 0.85rem;
    }

    .card option {
        font-size: 12px;
    }
}

@media (max-width: 385px) {
    #footer-br {
        display: block;
    }

    #footer-creator {
        display: none;
    }
}