@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&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");
body {
  font-family: "Poppins", serif;
  font-weight: 500;
  background-color: #fff;
  color: #343a40;
  line-height: 1.6;
  background-color: #f4f4f4;
  padding: 0;
  margin: 0;
}

.container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  background-color: #f4f4f4;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  min-height: 465px;
}
.container h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

button, .icone {
  padding: 12px;
  font-size: 1.25rem;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  margin-top: 20px;
}
button.btn-secondary, .icone.btn-secondary {
  background-color: #333;
  color: #fff;
}
button.btn-success, .icone.btn-success {
  background-color: #ff385c;
  color: #fff;
}
button:hover, .icone:hover {
  opacity: 0.85;
}

#backToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  background-color: #555;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

#backToTopBtn.show {
  opacity: 1;
}

html {
  scroll-behavior: smooth;
}

nav {
  background-color: white;
  padding: 10px 0;
  position: relative;
}
nav .container-fluid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
nav .logo {
  width: 60px;
}
nav .menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: relative;
  font-size: 24px;
  color: #333;
  transition: color 0.3s ease;
}
nav .menu-toggle .fa-bars {
  display: block;
}
nav .menu-toggle .fa-xmark {
  display: none;
}
nav .menu-toggle.open .fa-bars {
  display: none;
}
nav .menu-toggle.open .fa-xmark {
  display: block;
}
nav .menu-toggle:focus {
  outline: none;
}
nav .navbar {
  display: flex;
  align-items: center;
}
nav .navbar a {
  text-decoration: none;
  color: #333;
  padding: 10px;
  transition: color 0.3s ease;
}
nav .navbar a:hover {
  color: #ff385c;
}
@media (max-width: 1024px) {
  nav {
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }
  nav .navbar {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    padding: 10px;
    z-index: 1;
  }
  nav .navbar a {
    padding: 10px;
    font-size: 18px;
  }
  nav .navbar.open {
    display: flex;
  }
  nav .menu-toggle {
    display: block;
  }
}

footer {
  background: #222;
  color: #fff;
  padding: 40px 0;
  text-align: center;
  font-size: 14px;
}
footer .containerr {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
footer p {
  margin-bottom: 15px;
  font-size: 14px;
  opacity: 0.8;
}
footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
footer .footer-links li {
  margin: 5px 15px;
}
footer .footer-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
footer .footer-links li a:hover {
  color: #ff385c;
}
footer .footer-social {
  margin-top: 10px;
}
footer .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}
footer .footer-social a:hover {
  background: #ff385c;
  color: #fff;
}
@media (max-width: 1024px) {
  footer .footer-links {
    flex-direction: column;
    align-items: center;
  }
  footer .footer-links li {
    margin: 5px 0;
  }
  footer .footer-social a {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

.grid {
  gap: 20px;
  display: grid;
}

.card {
  position: relative;
  width: 80%;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  transition: transform 0.3s ease-in-out;
}
.card:hover {
  transform: scale(1.05);
}

.activity-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  text-align: center;
}
.activity-image .card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.activity-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.card h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  z-index: 9;
}

.card .btn {
  position: absolute;
  bottom: 10px;
  right: 20px;
  background-color: #ff385c;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
  z-index: 9;
}
.card .btn:hover {
  background-color: #ff2d55;
}

.activity-image-details {
  position: relative;
  width: 100%;
  overflow: hidden;
  text-align: center;
}
.activity-image-details .card-img-top {
  width: 70%;
  height: 70%;
  object-fit: cover;
}

/*# sourceMappingURL=activity.css.map */
