@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

body {
  background-image: linear-gradient(
    to bottom right,
    rgb(101, 189, 240),
    rgb(245, 243, 122)
  );
  overflow-x: hidden;
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  margin: 0;
}

body .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 60vw;
  margin: 0 auto;
  font-size: 1.5rem;
}

img {
  object-fit: cover;
}

a {
  text-decoration: none;
}

.nav-menu {
  display: none;
}

.header {
  box-shadow: 0 0 10px 10px white;
  width: 80vw;
  margin: 0 auto;
}

.header .cover {
  background: white;
  width: 80vw;
  margin: 0 auto;
}

.header .tab-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  width: calc(80vw - 40px);
  margin: 0 auto;
  margin-top: 14px;
  background-color: #f9fed3;
  padding: 20px;
}

.header .tab-menu button {
  font-size: 1.5rem;
  font-weight: bold;
  border: none;
  background: transparent;
  color: #645384;
  border-radius: 8px;
  padding: 4px 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.header .tab-menu button:hover {
  transform: translateY(-10px);
}

.title {
  color: #175fac;
  font-size: 2.5rem;
}

.home {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.gallery {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 20px;
}

.gallery img {
  width: 100%;
  height: 200px;
}

.home .info,
.home .images,
.home .event,
.home .upcomming,
.home .clients {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease-in-out;
}

.home .info.show,
.home .images.show,
.home .event.show,
.home .upcomming.show,
.home .clients.show {
  opacity: 1;
  transform: translateY(0);
}

.description {
  font-size: 1.5rem;
  color: #444;
  margin-bottom: 18px;
  line-height: 1.7;
  background: #fff8fa;
  border-left: 4px solid #e75480;
  padding: 12px 16px;
  border-radius: 6px;
}

.small-title {
  font-size: 1.25rem;
  font-weight: bold;
  font-style: italic;
  color: #e75480;
}

.event .small-title {
  margin-bottom: 60px;
}

.upcomming img {
  cursor: pointer;
}

footer {
  background: rgb(101, 189, 240);
}

footer .container {
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 40px;
  padding: 0 20px;
  width: 80vw;
}

footer .title {
  font-size: 1.5rem;
  margin: 20px 0;
}

footer .contact {
  flex: 1;
}

footer .social {
  float: right;
}

footer .social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

footer .social-icons a {
  transition: all 0.3s ease-in-out;
}

footer .social-icons a:hover {
  transform: translateY(-10px);
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.image-container img {
  object-fit: contain;
}

.image-container a {
  transition: all 0.3s ease-in-out;
  height: 200px;
  align-content: center;
}

.image-container a:hover {
  transform: scale(1.2);
}

@media (max-width: 1024px) {
  body .container {
    width: 80vw;
  }

  .gallery {
    grid-template-columns: repeat(2, 320px);
    justify-content: center;
  }

  .event iframe,
  .upcomming img,
  .description {
    max-width: 80vw;
  }

  footer .container {
    flex-wrap: wrap;
    row-gap: 20px;
    justify-content: center;
  }

  footer .contact {
    flex: unset;
  }

  footer .social-icons {
    margin-bottom: 20px;
  }
}

@media (max-width: 764px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery img {
    height: 400px;
  }

  footer .contact {
    text-align: center;
  }
}
