html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #111;
  color: #fff;
}

:root {
  --overlay: rgba(0, 0, 0, 0.45);
  --text-light: #fff;
}

/* =========================
   MOBILE FULLSCREEN MENU
========================= */

.mobile-menu {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(8px);
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.mobile-menu-nav li {
  margin: 1.2rem 0;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.mobile-menu.is-open .mobile-menu-nav li {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.is-open .mobile-menu-nav li:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.is-open .mobile-menu-nav li:nth-child(2) { transition-delay: 0.12s; }
.mobile-menu.is-open .mobile-menu-nav li:nth-child(3) { transition-delay: 0.16s; }
.mobile-menu.is-open .mobile-menu-nav li:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu.is-open .mobile-menu-nav li:nth-child(5) { transition-delay: 0.24s; }

.mobile-menu-nav a {
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.mobile-menu-nav a:hover {
  opacity: 0.65;
}

.mobile-menu-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

@media (min-width: 992px) {
  .mobile-menu {
    display: none;
  }
}










.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-logo {
  display: block;
  max-width: min(420px, 70vw);
  width: auto;
  height: auto;
  object-fit: contain;
}

/* base sticky */
.navbar-custom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 1.25rem 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
  transition: background 0.35s ease, padding 0.35s ease, backdrop-filter 0.35s ease;
}

.navbar-custom.scrolled {
  position: fixed;
  padding: 0.75rem 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
}

.navbar-custom .navbar-nav {
  gap: 2rem;
}

.navbar-custom .nav-link {
  position: relative;
  display: inline-block;
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 6px;
  opacity: 0.9;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.navbar-custom .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.navbar-custom .nav-link:hover {
  opacity: 1;
}

.navbar-custom .nav-link:hover::after {
  transform: scaleX(1);
  opacity: 0.45;
}

.navbar-custom .nav-link.active {
  opacity: 1;
}

.navbar-custom .nav-link.active::after {
  transform: scaleX(1);
  opacity: 1;
}

.carousel,
.carousel-inner,
.carousel-item {
  height: 100vh;
}

.carousel-item {
  position: relative;
  overflow: hidden;
}

.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  z-index: 1;
  pointer-events: none;
}

.carousel-bg {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  /* transform: scale(1.02); */
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 1.6s ease-in-out !important;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active {
  transform: none !important;
}

.carousel-control-prev,
.carousel-control-next,
.carousel-indicators {
  z-index: 3;
}

.section-placeholder {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem;
  background: #161616;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.section-placeholder:nth-of-type(even) {
  background: #1d1d1d;
}

.section-placeholder h2 {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.35);
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 1rem;
    background: rgba(0, 0, 0, 0.75);
    padding: 1rem;
    border-radius: 0.75rem;
  }

  .navbar-custom .navbar-nav {
    gap: 0.75rem;
  }
}

/* =========================
   WORKS SECTION
========================= */

.works-section {
  padding: 6rem 0;
  background: #161616;
}

.works-section h2 {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0;
}

.works-swiper {
  overflow: hidden;
  padding-bottom: 4rem;
}

.work-card {
  background: #1d1d1d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 100%;
  transition: border-color 0.3s ease;
}

.work-card-trigger {
  cursor: pointer;
}

.work-image-wrap {
  position: relative;
  overflow: hidden;
  height: 420px;
  background: #111;
}

.work-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.6s ease;
  will-change: transform;
}

.work-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.work-card:hover .work-image {
  transform: scale(1.06);
}

.work-content {
  padding: 1.25rem 1.25rem 1.5rem;
}

.work-content h3 {
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.work-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.works-swiper .swiper-button-prev,
.works-swiper .swiper-button-next {
  color: #fff;
}

.works-swiper .swiper-button-prev::after,
.works-swiper .swiper-button-next::after {
  font-size: 1.2rem;
}

.works-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.works-swiper .swiper-pagination-bullet-active {
  background: #fff;
}

@media (max-width: 991.98px) {
  .work-image-wrap {
    height: 360px;
  }
}

@media (max-width: 767.98px) {
  .work-image-wrap {
    height: 280px;
  }

  .works-swiper .swiper-button-prev,
  .works-swiper .swiper-button-next {
    display: none;
  }
}

/* =========================
   MODAL / BACKDROP PREMIUM
========================= */

.modal {
  background: rgba(0, 0, 0, 0.18);
}

.modal-backdrop {
  opacity: 0;
  transition: opacity 0.35s ease;
}

.modal-backdrop.show {
  opacity: 1;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(10px);
}

header,
main {
  transition: filter 0.45s ease, transform 0.45s ease;
}

body.modal-open header,
body.modal-open main {
  filter: blur(6px);
  transform: scale(1.015);
}

.work-modal-content {
  background: #111;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.modal.show .work-modal-content {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.work-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 20;
}

/* =========================
   NEW GALLERY SYSTEM
========================= */

.work-detail-media {
  padding: 1.5rem;
  background: #0d0d0d;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.work-detail-main {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  min-height: 520px;
  overflow: hidden;
}

.work-detail-main-image {
  width: 100%;
  height: 520px;
  object-fit: contain;
  display: block;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.45s ease, transform 0.55s ease;
}

.work-detail-main-image.is-visible {
  opacity: 1;
  transform: scale(1);
}

.work-detail-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.work-detail-thumb {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #111;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.work-detail-thumb:hover {
  transform: translateY(-2px);
}

.work-detail-thumb img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  display: block;
}

.work-detail-thumb.active {
  border-color: #fff;
  opacity: 1;
}

/* =========================
   TEXT
========================= */

.work-detail-content {
  padding: 3rem 2rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease 0.08s, transform 0.45s ease 0.08s;
}

.modal.show .work-detail-content {
  opacity: 1;
  transform: translateY(0);
}

.work-detail-content h3 {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.work-detail-content p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991.98px) {
  body.modal-open header,
  body.modal-open main {
    filter: blur(4px);
    transform: scale(1.01);
  }

  .work-detail-main {
    min-height: 360px;
  }

  .work-detail-main-image {
    height: 360px;
  }

  .work-detail-content {
    padding: 2rem 1.5rem;
  }

  .work-detail-thumb img {
    height: 70px;
  }
}



/* =========================
   PUBLICATIONS SECTION
========================= */

.publications-section {
  background: #111;
}

.publications-section h2 {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0;
}

.publications-left {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 620px;
}

.publications-inner {
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 2rem;
}

.publications-intro {
  max-width: 560px;
}

.publications-intro p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

/* moitié gauche alignée sur le container bootstrap */
@media (min-width: 576px) {
  .publications-inner {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .publications-inner {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .publications-inner {
    max-width: 480px;
  }
}

@media (min-width: 1200px) {
  .publications-inner {
    max-width: 570px;
  }
}

@media (min-width: 1400px) {
  .publications-inner {
    max-width: 660px;
  }
}

.publications-right {
  min-height: 620px;
  padding: 0 !important;
  display: flex;
  align-items: center;
}

.publications-swiper {
  width: 100%;
  overflow: hidden;
  padding: 2rem 0 4rem 0;
}

.publications-swiper .swiper-slide {
  height: auto;
}

.publication-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 100%;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.publication-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.publication-image-wrap {
  position: relative;
  overflow: hidden;
  height: 520px;
  background: #111;
}

.publication-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.6s ease;
}

.publication-card:hover .publication-image {
  transform: scale(1.05);
}

.publication-content {
  padding: 1.25rem 1.25rem 1.5rem;
}

.publication-content h3 {
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}

.publications-swiper .swiper-button-prev,
.publications-swiper .swiper-button-next {
  color: #fff;
}

.publications-swiper .swiper-button-prev::after,
.publications-swiper .swiper-button-next::after {
  font-size: 1.2rem;
}

.publications-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
}

.publications-swiper .swiper-pagination-bullet-active {
  background: #fff;
}

@media (max-width: 991.98px) {
  .publications-left,
  .publications-right {
    min-height: auto;
  }

  .publications-inner {
    max-width: none;
    padding: 0 1.5rem 2rem;
  }

  .publications-swiper {
    padding: 0 1.5rem 3rem;
  }

  .publication-image-wrap {
    height: 420px;
  }
}

@media (max-width: 767.98px) {
  .publication-image-wrap {
    height: 340px;
  }

  .publications-swiper .swiper-button-prev,
  .publications-swiper .swiper-button-next {
    display: none;
  }
}


/* =========================
   PUBLICATION MODAL
========================= */

.publication-modal-content {
  background: #111;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.modal.show .publication-modal-content {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.publication-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 20;
}

.publication-detail-media {
  background: #0d0d0d;
  min-height: 100%;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.publication-detail-image {
  width: 100%;
  max-height: 760px;
  object-fit: contain;
  display: block;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.45s ease, transform 0.55s ease;
}

.publication-detail-image.is-visible {
  opacity: 1;
  transform: scale(1);
}

.publication-detail-content {
  padding: 3rem 2rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease 0.08s, transform 0.45s ease 0.08s;
}

.modal.show .publication-detail-content {
  opacity: 1;
  transform: translateY(0);
}

.publication-detail-content h3 {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.publication-detail-text {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.85;
}

.publication-detail-text p {
  margin-bottom: 1.25rem;
}

.publication-detail-actions {
  margin-top: 2rem;
}

.publication-detail-fulltext-wrap {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.35s ease, margin-top 0.35s ease;
  margin-top: 0;
}

.publication-detail-fulltext-wrap.is-open {
  max-height: 1200px;
  opacity: 1;
  margin-top: 1rem;
}

#publicationDetailToggle {
  text-decoration: none;
}

#publicationDetailToggle:hover {
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .publication-detail-content {
    padding: 2rem 1.5rem;
  }

  .publication-detail-image {
    max-height: 520px;
  }
}






/* =========================
   NEWS SECTION
========================= */

.news-section {
  padding: 6rem 0;
  background: #161616;
}

.news-section h2 {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0;
}

.news-swiper {
  overflow: hidden;
  padding-bottom: 4rem;
}







.news-card {
  background: #1d1d1d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 100%;
  transition: border-color 0.3s ease;
}

.news-card-trigger {
  cursor: pointer;
}

.news-image-wrap {
  position: relative;
  overflow: hidden;
  height: 420px;
  background: #111;
}

.news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.6s ease;
  will-change: transform;
}

.news-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.news-card:hover .news-image {
  transform: scale(1.06);
}

.news-content {
  padding: 1.25rem 1.25rem 1.5rem;
}

.news-content h3 {
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: none;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.news-content p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.news-swiper .swiper-button-prev,
.news-swiper .swiper-button-next {
  color: #fff;
}

.news-swiper .swiper-button-prev::after,
.news-swiper .swiper-button-next::after {
  font-size: 1.2rem;
}

.news-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.news-swiper .swiper-pagination-bullet-active {
  background: #fff;
}


.news-swiper .swiper-slide {
  height: auto;
}

.news-card {
  background: #1d1d1d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease;
}

.news-card-trigger {
  cursor: pointer;
}

.news-image-wrap {
  position: relative;
  overflow: hidden;
  height: 420px;
  background: #111;
  flex: 0 0 auto;
}

.news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.6s ease;
  will-change: transform;
}

.news-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.news-card:hover .news-image {
  transform: scale(1.06);
}

.news-content {
  padding: 1.25rem 1.25rem 1.5rem;
  min-height: 110px;
  display: flex;
  align-items: flex-start;
}

.news-content h3 {
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: none;
  line-height: 1.45;
  margin: 0;
}



/* =========================
   NEWS MODAL
========================= */

.news-modal-content {
  background: #111;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.modal.show .news-modal-content {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.news-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 20;
}

.news-detail-media {
  padding: 1.5rem;
  background: #0d0d0d;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.news-detail-main {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  min-height: 520px;
  overflow: hidden;
}

.news-detail-main-image {
  width: 100%;
  height: 520px;
  object-fit: contain;
  display: block;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.45s ease, transform 0.55s ease;
}

.news-detail-main-image.is-visible {
  opacity: 1;
  transform: scale(1);
}

.news-detail-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

.news-detail-thumb {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #111;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.news-detail-thumb:hover {
  transform: translateY(-2px);
}

.news-detail-thumb img {
  width: 100%;
  height: 85px;
  object-fit: cover;
  display: block;
}

.news-detail-thumb.active {
  border-color: #fff;
  opacity: 1;
}

.news-detail-content {
  padding: 3rem 2rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease 0.08s, transform 0.45s ease 0.08s;
}

.modal.show .news-detail-content {
  opacity: 1;
  transform: translateY(0);
}

.news-detail-content h3 {
  text-transform: none;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.news-detail-content p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.news-detail-date {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}

@media (max-width: 991.98px) {
  .news-image-wrap {
    height: 360px;
  }

  .news-detail-main {
    min-height: 360px;
  }

  .news-detail-main-image {
    height: 360px;
  }

  .news-detail-content {
    padding: 2rem 1.5rem;
  }

  .news-detail-thumb img {
    height: 70px;
  }

   .news-content {
    min-height: 96px;
  }
}

@media (max-width: 767.98px) {
  .news-image-wrap {
    height: 280px;
  }

    .news-content {
    min-height: auto;
  }

  .news-swiper .swiper-button-prev,
  .news-swiper .swiper-button-next {
    display: none;
  }
}







/* =========================
   Current event
========================= */
.current-event {
  padding-bottom: 2.5rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.current-event-swiper {
  overflow: hidden;
  position: relative;
  background: #111;
}

.current-event-image {
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
}

.current-event-content {
  max-width: 560px;
}

.current-event-label {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.current-event-title {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.current-event-date {
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.current-event-text {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.current-event-swiper .swiper-button-prev,
.current-event-swiper .swiper-button-next {
  color: #fff;
}

.current-event-swiper .swiper-button-prev::after,
.current-event-swiper .swiper-button-next::after {
  font-size: 1.2rem;
}

.current-event-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
}

.current-event-swiper .swiper-pagination-bullet-active {
  background: #fff;
}

@media (max-width: 991.98px) {
  .current-event-image {
    height: 420px;
  }
}

@media (max-width: 767.98px) {
  .current-event-image {
    height: 300px;
  }

  .current-event-swiper .swiper-button-prev,
  .current-event-swiper .swiper-button-next {
    display: none;
  }
}





/* =========================
   CONTACT SECTION
========================= */

.contact-section {
  padding: 6rem 0;
  background: #111;
}

.contact-section h2 {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0;
}

.contact-info {
  max-width: 420px;
}

.contact-intro {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.contact-link,
.contact-text {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  line-height: 1.7;
}

.contact-link:hover {
  color: #fff;
}

.contact-qr-panel {
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
}

.contact-qr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.contact-qr-item {
  text-align: center;
}

.contact-qr-item img {
  width: 100%;
  max-width: 160px;
  display: block;
  margin: 0 auto;
  background: #fff;
  padding: 6px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.contact-qr-item:hover img {
  transform: scale(1.05);
  opacity: 0.92;
}

.contact-qr-item span {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 991.98px) {
  .contact-info {
    max-width: none;
  }
}

@media (max-width: 767.98px) {
  .contact-qr-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}











/* =========================
   FOOTER
========================= */

.site-footer {
  padding: 2rem 0;
  background: #0d0d0d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: inline-block;
  text-decoration: none;
}

.footer-logo {
  max-width: 100px;
  width: 100%;
  height: auto;
  display: block;
}

.footer-text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.footer-link {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  margin-left: 1rem;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.footer-link:hover {
  color: #fff;
}

@media (max-width: 767.98px) {
  .footer-logo {
    margin: 0 auto;
    max-width: 90px;
  }

  .footer-link {
    display: inline-block;
    margin-left: 0.75rem;
    margin-top: 0.35rem;
  }
}