:root {
  --pastel-pink: #f875a9;
  --pastel-green: #2cccc0;
  --dark-pink: #f8458d;
  --dark-green: #32ada5;
  --white: #ffffff;
  --black: #333333;
  --gray: #f5f5f5;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-display: optional;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--pastel-pink);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--pastel-green);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dark-green);
}

body {
  font-family: sans-serif;
  color: var(--black);
  background-color: white;
  overflow-x: hidden;
}

/* LANDING */
.landing {
  background: white;
  height: 100svh;
  width: 100svw;
  z-index: 100;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landingImg {
  height: 491px;
  width: 1152px;
  filter: drop-shadow(0 1svh 1svh);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100svw;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255);
  box-shadow: 0 2px 10px var(--pastel-pink);
  z-index: 10;
}

.logo ,.logoCont {
  width: 211px;
  height: 90px;
  animation:fader 2s linear 1;
}

@keyframes fader{
  from{opacity:0}
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: var(--dark-pink);
}

.nav-links {
  display: flex;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  color: var(--primary-dark);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--pastel-green);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  margin-right: 2svh;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--pastel-pink);
  transition: all 0.3s ease;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--pastel-pink);
  z-index: 1050;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu nav {
  text-align: center;
}

.mobile-menu ul {
  list-style: none;
  margin-bottom: 3rem;
}

.mobile-menu li {
  margin: 1.5rem 0;
}

.mobile-menu a {
  color: var(--dark-green);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--pastel-green);
}

.container {
  height: 86svh;
  width: 100svw;
  overflow-y: scroll;
  position: absolute;
  top: 14svh;
  overflow-y: scroll;
  scroll-snap-type: y proximity;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
}

/* HERO */
.hero {
  height: 86vh;
  background: rgba(0, 0, 0, 0.301);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content {
  max-width: 800px;
  z-index: 5;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--pastel-pink);
}

.hero p {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: var(--pastel-green);
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--pastel-green);
  color: var(--black);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--dark-green);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-pink {
  background-color: var(--pastel-pink);
}

.btn-pink:hover {
  background-color: var(--dark-pink);
  color: var(--white);
}

section {
  padding: 80px 5%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--pastel-pink),
    var(--pastel-green)
  );
  border-radius: 2px;
}

/* ABOUT */
.about {
  background: var(--white);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}

.about-text {
  flex: 1;
  min-width: 300px;
  padding-right: 30px;
}

.about-text h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--dark-pink);
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.about-image {
  flex: 1;
  min-width: 300px;
  margin-top: 30px;
}

.about-image img {
  width: 100%;
  height: 60svh;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* MISSION */
.mission {
  background-color: var(--pastel-green);
  padding: 60px 5%;
  border-radius: 10px;
  margin: 30px 0;
}

.mission h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--dark-green);
  text-align: center;
}

.mission p {
  text-align: center;
  font-style: italic;
  line-height: 1.6;
}

/* OBJECTIVES */
.objectives {
  margin-top: 50px;
}

.objectives h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--dark-green);
  text-align: center;
}

.objectives-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.objective-item {
  flex: 1;
  min-width: 250px;
  background-color: var(--pastel-pink);
  padding: 30px;
  border-radius: 10px;
  margin: 10px;
  text-align: center;
  transition: transform 0.3s;
  box-shadow: 0 1svh 1svh #f8458d6c;
}

.objective-item:hover {
  transform: translateY(-10px);
}

.objective-item i {
  font-size: 40px;
  color: var(--white);
  margin-bottom: 20px;
}

.objective-item h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--black);
}

/* DONATION */
.donation {
  padding: 80px 5%;
  text-align: center;
}

.donation h2{
    color:var(--pastel-pink);
}

.donation span{
    color:var(--pastel-green);
  font-size: large;
  font-weight: bold;
}

.donate-para{
    color:var(--pastel-pink);
  font-weight:bold;
}



/* GALLERY */
.gallery {
  background: var(--pastel-pink);
  padding: 80px 5%;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 1svh 1svh #f8458d;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--white);
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* PARTNERS */
.partners {
  padding: 80px 5%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
}

.partners-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 50px 0;
  gap: 50px;
}

.partner-logo {
  max-width: 150px;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

#partner-logo1 {
  width: 150px;
  height: 55px;
}
#partner-logo2 {
  width: 150px;
  height: 29px;
}

.thanks-container {
  width: 60%;
}
.thanks-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.thanks-item figure,
.thanks-item article {
  width: 100%;
  text-align: justify;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.specialLogo {
  width: 1031px;
  height: 317px;
}

/* SEEN ON TV */
.onTv {
  background: #f875a9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.tvCont {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
}

.onTv video {
  margin: 1svh;
  width: 75%;
}

.vid-caption{
  color:white;
}

/* CONTACT */
.contact {
  background-color: var(--gray);
  padding: 80px 5%;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  padding-right: 30px;
}

.contact-info h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--dark-green);
}

.contact-info p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.contact-info i {
  margin-right: 10px;
  color: var(--dark-pink);
}

.contact-form,
.adoptVolun-form {
  flex: 1;
  min-width: 300px;
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
}

.contact-form h3,
.adoptVolun-form {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--dark-pink);
}

.contact-form textarea,
.adoptVolun-form {
  width: 100%;
}

/* ADOPT/VOLUNTEER FORM */
.adoptFormCont {
  height: 100svh;
  width: 100svw;
  visibility: hidden;
  z-index: 2000;
  position: absolute;
}

.adoptVolun-form {
  background: white;
  height: 80%;
  width: 50%;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 2svh;
}

.adoptVolun-form form {
  width: 90%;
}

.adoptVolun-form form textarea {
  width: 100%;
}

/* FOOTER */
footer {
  background-color: var(--black);
  background-image: linear-gradient(120deg, var(--black), black);
  background-size: 20px 20px;
  color: var(--white);
  padding: 50px 5% 20px;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
}

.footer-column h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--pastel-pink);
}

.footer-logo {
  height: 90px;
  width: 211px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: var(--pastel-green);
}

.social-icons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: var(--pastel-pink);
  color: var(--black);
  border-radius: 50%;
  margin: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s;
}

.social-icons a:hover {
  background-color: var(--pastel-green);
  transform: translateY(-3px);
}

.copyright {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

#sick {
  color: #ddd;
}

/* MEDIA QUERIES */
@media (max-width: 1200px) {
  .landing img {
    height: auto;
    width: 60svw;
  }


}
@media (max-width: 768px) {

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
    font-weight: normal;
  }

  .nav-links {
    display: none;
  }

  .about-text,
  .about-image {
    flex: 100%;
    padding-right: 0;
  }

  .objective-item {
    flex: 100%;
  }

  .contact-info,
  .contact-form {
    flex: 100%;
    padding-right: 0;
    margin-bottom: 30px;
  }
  .adoptVolun-form {
    height: 80%;
    width: 90%;
  }
  /* mobile menu */
  .mobile-menu-toggle {
    display: block;
  }

  .mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .mobile-links {
    position: fixed;
    top: 80px;
    left: 0%;
    width: 100%;
    height: calc(100vh - 80px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 999;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 15px 0;
  }
  .specialLogo {
    width: 100%;
    height: 20%;
  }

 .footer-logo{
    width:277.19px;
    height:118.22px
  }
}

@media (max-width: 450px) {
     header{
  box-shadow: none;
 }
  .landing {
    display: none;
  }
  .container {
    background-image: none;
  }
 
  .hero-content p {
    font-weight: normal;
  }
   .specialLogo {
    width: 235.44px;
    height: 72.38px;
  }


}

@media (max-width: 360px) {
  .adoptVolun-form h3 {
    font-size: smaller;
  }
}
