@charset "UTF-8";
/* Hero Section */
.hero-section {
  background-color: #e5d4c3;
  color: #222;
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}
.hero-section .hero-title {
  color: #3f524f;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}
.hero-section .hero-subtitle {
  margin-top: 1rem;
  font-size: 1.25rem;
  color: rgb(29.7620689655, 38.7379310345, 37.3206896552);
}

/* Intro Section */
.intro-section {
  background-color: #3f524f;
  color: white;
}
.intro-section .intro-image img {
  border: 4px solid white;
}
.intro-section .intro-title {
  font-weight: 700;
  margin-bottom: 1rem;
}
.intro-section .intro-description {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Current Event Section */
.current-event-section {
  background-color: #d3bca4;
  position: relative;
  padding: 0;
  overflow: hidden;
}
.current-event-section .current-event-hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.current-event-section .current-event-hero .bg-preview {
  position: absolute;
  border-radius: 8px;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.55);
  z-index: 0;
  transition: transform 1.5s ease;
}
.current-event-section .current-event-hero .bg-preview:hover {
  transform: scale(1.08);
  border-radius: 8px;
}
.current-event-section .current-event-hero .overlay-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 900px;
}
.current-event-section .current-event-hero .overlay-content .text-background {
  background-color: rgba(0, 0, 0, 0.55);
  border-radius: 10px;
  padding: 2.5rem;
  width: 100%;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  /* ✨ Event Schedule Styling */
}
.current-event-section .current-event-hero .overlay-content .text-background .gallery-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.current-event-section .current-event-hero .overlay-content .text-background .gallery-description {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.current-event-section .current-event-hero .overlay-content .text-background h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffd166; /* warm golden tone */
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1.5rem;
  text-shadow: 0 0 6px rgba(255, 209, 102, 0.4);
}
.current-event-section .current-event-hero .overlay-content .text-background ul {
  list-style: none;
  padding: 1rem 1.25rem;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  border-left: 3px solid #ffd166;
  border-radius: 6px;
  display: inline-block;
  text-align: left;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #f5f5f5;
  font-weight: 500;
}
.current-event-section .current-event-hero .overlay-content .text-background ul li {
  padding: 0.25rem 0;
}
.current-event-section .current-event-hero .overlay-content .text-background ul li:before {
  content: "🕓 ";
  font-size: 1rem;
}
.current-event-section .current-event-hero .overlay-content .artwork-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.current-event-section .current-event-hero .overlay-content .artwork-grid .artwork-item {
  flex: 0 0 140px;
  border-radius: inherit;
}
.current-event-section .current-event-hero .overlay-content .artwork-grid .artwork-item img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.current-event-section .current-event-hero .overlay-content .artwork-grid .artwork-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.upcoming-events-section {
  background-color: #1a2954;
}
.upcoming-events-section h2 {
  color: #fff;
  font-weight: 700;
}
.upcoming-events-section .event-banner {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  min-height: 200px;
}
.upcoming-events-section .event-banner h4 {
  font-weight: 600;
  color: #222;
}
.upcoming-events-section .event-banner p {
  color: #555;
}
.upcoming-events-section .event-banner a.btn {
  border-radius: 30px;
}
.upcoming-events-section .carousel-control-prev-icon,
.upcoming-events-section .carousel-control-next-icon {
  filter: invert(1);
}

/* Gallery Showcase Section */
.gallery-showcase {
  position: relative;
  padding: 4rem 1rem 3rem;
  color: #fff;
  text-align: center;
  background-color: #222;
  min-height: 50vh;
}
.gallery-showcase .background-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/gallery_interior.jpg") center center/cover no-repeat;
  filter: brightness(0.4);
  z-index: 0;
  background-color: rgba(255, 0, 0, 0.3);
}
.gallery-showcase .overlay-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto 2rem;
}
.gallery-showcase .overlay-content .gallery-title {
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
  margin-bottom: 1rem;
}
.gallery-showcase .overlay-content .gallery-description {
  font-size: 1.3rem;
  line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}
.gallery-showcase .artwork-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-showcase .artwork-grid .artwork-item {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #222;
  transition: transform 0.3s ease;
}
.gallery-showcase .artwork-grid .artwork-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}
.gallery-showcase .artwork-grid .artwork-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 350px;
}
.gallery-showcase .artwork-grid .artwork-item .artwork-title {
  padding: 0.5rem 1rem 1rem;
  font-weight: 600;
}

.btn-primary {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #004085;
  box-shadow: 0 4px 12px rgba(0, 64, 133, 0.6);
}

/* Upcoming Events Section */
.upcoming-events-section {
  background-color: #1a2954;
}
.upcoming-events-section h2 {
  color: gray;
  font-weight: 700;
}
.upcoming-events-section .upcoming-event-card {
  border: none;
  border-radius: 10px;
}
.upcoming-events-section .upcoming-event-card img {
  border-radius: 10px 10px 0 0;
  height: 200px;
  object-fit: cover;
  width: 100%;
}
.upcoming-events-section .upcoming-event-card .card-body {
  padding: 1rem 1.25rem;
}
.upcoming-events-section .upcoming-event-card .btn-outline-primary {
  border-color: #3f524f;
  color: #3f524f;
}
.upcoming-events-section .upcoming-event-card .btn-outline-primary:hover {
  background-color: #3f524f;
  color: white;
}
.upcoming-events-section .no-upcoming-events-message {
  color: gray;
  font-style: italic;
}

/* 🌍 Language Switcher */
.language-switcher {
  margin-left: auto;
  margin-right: 0;
}
.language-switcher .btn {
  background-color: transparent;
  border: 2px solid #ccc;
  border-radius: 50px;
  padding: 0.4rem 0.8rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.language-switcher .btn:hover {
  border-color: #3f524f;
  box-shadow: 0 0 6px rgba(0, 150, 136, 0.3);
}
.language-switcher .btn span {
  font-size: 1.2rem;
}
.language-switcher .dropdown-menu {
  min-width: 80px;
  padding: 0.3rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.language-switcher .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0;
  transition: background-color 0.2s ease;
}
.language-switcher .dropdown-menu .dropdown-item:hover {
  background-color: rgba(0, 150, 136, 0.1);
}
.language-switcher .dropdown-menu .dropdown-item span {
  font-size: 1.2rem;
}

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