

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background: url('../img/Backdrop.jpg');
    background-size: cover;
    position: relative;
    color: white;
}

body.lb-disable-scrolling {
  overflow: auto !important;
}


body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.center-wrapper {
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.logo {
    max-width: 220px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease-out forwards;
    animation-delay: 0.5s;
}

.text-content {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease-out forwards;
    animation-delay: 1s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.brand-memories {
    position: relative;
    z-index: 1;
    margin-bottom: 30%;
}

.swiper-container {
    max-width: 1200px;
    margin: 0 auto;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

.memory-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.memory-img:hover {
    transform: scale(1.05);
}

.swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    background: #f00;
    opacity: 1;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    top:220px;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
    min-height: 350px;
}

.memory-img {
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Fix Lightbox2 Close Button Visibility */
.lb-overlay,
.lb-outerContainer,
.lb-dataContainer,
.lb-close,
.lb-nav {
  z-index: 999999 !important;
  position: relative;
}

/* Force close button to top-right and always visible */
.lb-close {
  position: fixed !important;
  top: 30px !important;
  right: 30px !important;
  display: block !important;
  opacity: 1 !important;
  color: white !important;
  font-size: 40px !important;
}
