body,
html {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    color: #111111;
    background-image: url('/images/expo-2026/bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    overflow: hidden;
    touch-action: pan-x pan-y; /* allow scrolling */
    overscroll-behavior: none; /* optional: stop bounce on some devices */
    -webkit-user-select: none;
    -ms-user-select: none;     
    user-select: none;         
    -webkit-touch-callout: none; 
}
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: #fff;
    filter: blur(4px);
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 10px 0;
	color: #fff;
	font-weight: 700;
    line-height: 1.3;
	font-family: "Merriweather", serif;
}



.container-1 {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0 auto;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    padding-top: 5px;
}
#header-logo {
    height: 60px;
    margin: 10px 0;
}
.pagetitle {
    font-weight: 700;
    font-size: 30px;
	font-family: "Merriweather", serif;
}
.instructions {
    text-align: center;
    font-size: 14px;
}
.qrcode {
    height: 100px;
    border-radius: 10px;
}


.filter-title {
    color: #eadacd;
    font-size: 13px;
    padding-bottom: 10px;
}
.filter-buttons {
    text-align: center;
    margin: 10px;
}
.filter-buttons button {
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #eadacd;
    background-color: #eadacd0d;
    color: #eadacd;
    border-radius: 25px;
    cursor: pointer;
    margin: 5px;
    transition-duration: 0.3s;
}
.filter-buttons button:hover {
    background-color: #fff;
    border: 1px solid #fff;
    color: #2c2118;
}
.filter-buttons button.active {
    background-color: #801a14;
    border: 1px solid #801a14;
    color: #fff;
}
@media (max-width : 576px) {
    .filter-buttons button {
        padding: 6px 12px;
        font-size: 12px;
    }
}



.swiper {
    width: 100%;
    /*height: 600px;  Fixed height for consistency */
    height: 70vh;
    padding: 50px;
}
.swiper-slide {
    position: relative;
    text-align: center;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 10px 20px #00000080, 0 -1px #ffffff80;
    border-radius: 30px;
    overflow: hidden;
}
.swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: white;
}
.swiper-slide img {
    width: 100%;
    height: 100%; /* Ensures all images are the same height */
    object-fit: cover; /* Crops to fit without distortion */
    display: block;

}
.swiper-grid .swiper-slide img {
    transition: transform 0.3s ease-in-out;
}
.swiper-grid .swiper-slide:hover ,
.swiper-grid .swiper-slide:hover  {
    transform: scale(1.05);
}
.swiper-grid  .swiper-button-prev,
.swiper-grid  .swiper-button-next {
    display: none;
}
.slide-title {
    position: absolute;
    bottom: 0px;
    left: 0px;
    color: white;
    padding: 60px 25px 20px 25px;
    font-size: 15px;
    text-align: left;
    width: 100%;
    font-weight: 500;
    line-height: 1.3;
    background: rgb(44,33,24);
    background: linear-gradient(0deg, rgba(44,33,24,1) 0%, rgba(44,33,24,0) 100%);
}
.slide-location {
    font-size: 25px;
    padding-bottom: 0px;
    font-family: "Merriweather", serif;
    font-weight: 600;
}
.swiper-button-prev, .swiper-button-next {
    color: #ffffff;
}
@media (max-width : 576px) {
    .swiper {
        height: 450px;
    }
}
.swiper-grid > .swiper-wrapper{
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-auto-flow: column;
    }









/*---------------------
  aivideo
-----------------------*/

.aivideo {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    margin: 0;
}

.aivideo {
    height: 100vh;
    min-height: 90vh;
}
.video-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    display: inline-block;
    max-height: 90vh;
    box-shadow: rgba(180, 166, 155, 0.53) 0px 3px 30px;
}
.ai-video {
    display: block;
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain; 
    border-radius: 30px;
    cursor: pointer;
}
.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    font-size: 80px;
    color: white;
    background: rgba(128,26,20,0.8);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none; 
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-wrapper.paused .video-overlay {
    opacity: 1;
}
.video-wrapper,
.ai-video {
    max-height: 90vh;
}
.ai-animated-icon {
    height: 70px;
    margin-bottom: 20px;
}
.aivideo-meta {
    padding: 0 20px 50px 20px;
}
.aivideo-meta .title {
    font-weight: 500;
    padding-bottom: 10px;
    font-size: 35px;
	font-family: "Merriweather", serif;
    color: #eadacd; 
    text-shadow:1px 1px 13px #846f5c, 1px 1px 10px #ccc;
}
.aivideo-meta .location {
    font-size: 25px;
	font-family: "Merriweather", serif;
}
.aivideo-meta .date {
    font-size: 20px;
	font-family: "Merriweather", serif;
}
.aivideo-meta .description {
    padding-top: 20px;
}
.ai-note {
    background: #3e30254f;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
    font-size: 14px;
    display: flex;
    align-items: center; 
    justify-content: space-between; 
    gap: 10px;
}
.ai-note::after {
    content: '\f06a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 17px;
    color: #eadacd;
    flex-shrink: 0; 
}


.btn-back {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    background-color: #801a14;
    border: 1px solid #801a14;
    color: #fff;
    border-radius: 25px;
    padding: 10px 20px;
    text-decoration: none;
}