@font-face {
  font-family: "Bnbdb";
  src: url("../fonts/Kabel_md.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
body {
  background: #fff;
  background-size: cover;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  color: rgba(30, 30, 30, 0.7);
  transition: opacity 0.6s ease;
}
body.fade-out {
  opacity: 0;
}

body,
input,
select,
textarea {
  color: rgba(30, 30, 30, 0.7);
  font-family: "Bnbdb", sans-serif;
  font-size: 13pt;
  font-weight: 400;
  line-height: 1.65em;
}

b,
strong {
  color: rgba(20, 20, 30, 0.9);
}

/* Animation spinner */
/* MAIN */
main {
  padding: 4em 0;
}
main .hero {
  text-align: center;
  margin-bottom: 2rem;
}
main .hero h2 {
  font-size: 13pt;
  line-height: 17pt;
  font-weight: 400 !important;
  margin-bottom: 0.5rem;
  color: rgba(30, 30, 30, 0.6);
}
main .hero h2 b {
  color: rgba(20, 20, 30, 0.9);
}
main #imgGal h2 {
  text-shadow: 0 3px 0 rgba(223, 222, 221, 0.85), 0 4px 8px rgba(0, 0, 0, 0.15), 0 4px 2px rgba(0, 0, 0, 0.1), 0 5px 30px rgba(0, 0, 0, 0.1);
  font-size: 2em;
  text-align: center;
  line-height: 1em;
}
main .project,
main .event {
  margin-bottom: 1rem;
}
main .project h3,
main .event h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
main .project p,
main .event p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
main .project a,
main .event a {
  display: inline-block;
  background-color: #333;
  color: #fff;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 5px;
}
main .project a:hover,
main .event a:hover {
  background-color: #555;
}
main .presentation {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  min-height: 100vh;
}
main .presentation__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  main .presentation__content {
    flex-direction: row;
    /* align-items: flex-start; */
    justify-content: space-between;
    flex-wrap: wrap;
    align-content: center;
  }
}
main .presentation__text {
  flex: 1;
  max-width: 600px;
}
main .presentation__text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
main .presentation__text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
main .presentation__image {
  flex: 1;
  max-width: 80vw;
  text-align: center;
}
@media (min-width: 768px) {
  main .presentation__image {
    max-width: 60%;
  }
}
main .presentation__image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15), 0 0.15rem 0.1rem rgba(0, 0, 0, 0.1);
}
main .events {
  margin: 3rem auto;
  text-align: center;
}
main .events h2 {
  margin-bottom: 2rem;
}
main .events .events-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
main .events .event-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-width: 340px;
  width: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
main .events .event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
main .events .event-card .event-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 1rem;
}
main .events .event-card .event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
main .events .event-card .event-img img:hover {
  transform: scale(1.05);
}
main .events .event-card h3 {
  color: rgba(30, 30, 30, 0.6);
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}
main .events .event-card .date {
  font-weight: 600;
  color: rgba(5, 5, 5, 0.6);
  margin-bottom: 0.4rem;
}
main .events .event-card .location {
  font-size: 1rem;
  color: rgba(30, 30, 30, 0.7);
  margin-bottom: 1rem;
}
main .events .event-card .desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}
main .events .event-card .event-link {
  display: inline-block;
  background: rgba(30, 30, 30, 0.6);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}
main .events .event-card .event-link:hover {
  background: rgba(5, 5, 5, 0.6);
  transform: translateY(-2px);
}
main .workshops {
  margin: 3rem auto;
  text-align: center;
}
main .workshops h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
}
main .workshops .workshops-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
main .workshops .workshop-card {
  background: white;
  padding: 1.8rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-width: 320px;
  width: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
main .workshops .workshop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
main .workshops .workshop-card h3 {
  color: rgba(30, 30, 30, 0.6);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
main .workshops .workshop-card .address,
main .workshops .workshop-card .contact {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(30, 30, 30, 0.7);
  margin-bottom: 1rem;
}
main .workshops .workshop-card .contact {
  font-weight: 600;
  color: rgba(5, 5, 5, 0.6);
}

/* FOOTER */
footer {
  background: #f2f2f2;
  background-size: cover;
  padding: 2em 0;
  border-top: 1px solid #d2d2d2;
  -webkit-box-shadow: 0 -1px 1em rgba(39, 38, 38, 0.2);
  box-shadow: 0 -1px 1em rgba(39, 38, 38, 0.2);
}
footer p {
  font-size: 0.9em;
  line-height: 1.275em;
  text-align: center;
}
footer .copyright {
  color: #8b8b8b;
  font-size: 0.9em;
  margin: 2em 0 0 0;
  padding: 0;
  text-align: center;
}
footer .copyright li {
  border-left: solid 1px rgba(144, 144, 144, 0.25);
  display: inline-block;
  list-style: none;
  margin-left: 1.5em;
  padding-left: 1.5em;
}
footer .copyright li:first-child {
  border-left: 0;
  margin-left: 0;
  padding-left: 0;
}

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