@import url("https://fonts.googleapis.com/css2?family=Cormorant+Unicase:wght@300;400;500;600;700&family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #b0b182;
  height: auto;
}

header .event-title {
  text-align: left;
  padding-top: 20px;
  margin-left: 100px;
  margin-right: 100px;
}
header .event-title h1 {
  font-size: 3.125rem;
  text-shadow: -5px 3px 4px rgba(0, 0, 0, 0.33);
  color: #fbf6e0;
  margin-bottom: 20px;
  font-family: "Cormorant Unicase";
}
header .event-title p {
  font-size: 1.125rem;
  font-family: "Jost";
}

#events-section .events-container {
  margin-left: 100px;
  margin-right: 100px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
}
#events-section .events-container .event-card {
  background: #f7f7f7;
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#events-section .events-container .event-card h3 {
  font-size: 1.5em;
  font-family: "Cormorant Unicase";
  margin-bottom: 5px;
}
#events-section .events-container .event-card p {
  font-size: 1rem;
  font-family: "Jost";
}
#events-section .events-container .event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.gallery-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.gallery-overlay .gallery-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.gallery-overlay .gallery-content .scrollable-gallery {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  max-height: 300px;
  padding: 10px;
  scroll-behavior: smooth;
}
.gallery-overlay .gallery-content .scrollable-gallery img {
  max-height: 250px;
  border-radius: 5px;
  transition: transform 0.3s ease;
}
.gallery-overlay .gallery-content .scrollable-gallery img:hover {
  transform: scale(1.05);
}
.gallery-overlay .gallery-content .close-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 24px;
  cursor: pointer;
  background: #f44336;
  color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
  z-index: 1000;
}
.gallery-overlay .gallery-content .close-btn:hover {
  background: #d32f2f;
}

.fullscreen-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1100;
  justify-content: center;
  align-items: center;
}
.fullscreen-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.fullscreen-overlay .close-fullscreen {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
  background: #f44336;
  color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}
.fullscreen-overlay .close-fullscreen:hover {
  background: #d32f2f;
}

@media only screen and (max-width: 480px) {
  header .event-title {
    margin: 0;
    padding: 20px 20px 0 20px;
  }
  header .event-title h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  header .event-title p {
    font-size: 0.7rem;
  }
  #events-section .events-container {
    margin: 0;
    padding: 10px;
  }
  #events-section .events-container .event-card h3 {
    font-size: 1.125rem;
  }
  #events-section .events-container .event-card p {
    font-size: 0.9rem;
  }
}/*# sourceMappingURL=events.css.map */