@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700&display=swap');

:root{
    --fs-xl: clamp(3.38rem, calc(-2.42rem + 12.06vw), 6.63rem);
    --fs-l: clamp(0.69rem, calc(-0.54rem + 2.55vw), 1.38rem);
    --fs-m: clamp(0.75rem, calc(0.08rem + 1.39vw), 1.13rem);
    --fs-s: clamp(0.75rem, calc(0.53rem + 0.46vw), 0.88rem);
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Manrope', sans-serif;
    /* background: rgb(0, 0, 0);   */
}

.navbar{
    top: 0;
    padding-top: 3rem;
    position: fixed;
    display: flex;
    width: 100%;
    justify-content: space-around;
    z-index: +100;
    color: grey;
    font-size: var(--fs-m); 

    background: white;  

    animation: fade-in 1s;
}
/* Links container for mobile toggle */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}
.navbar a{
    text-decoration: none;
    color: grey;
    opacity: 1;
}

/* HOVER EFFECT */
.navbar a:hover{
    opacity: .8;
}

/* ARTICLE */

.article-text{
    position: relative;
    top: 6rem;
    padding: 2rem;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: black;

    animation: fade-in 2.5s;
}

.article-text h1{
    font-size: var(--fs-l);
    font-weight: 600;
    line-height: 5em;
    
    animation: fade-in 2s ;
}

.article-text h2{
    font-size: var(--fs-m);
    font-weight: 600;
    line-height: 5em;
    align-self: flex-start;
    padding-left: var(--fs-xl);
    padding-right: var(--fs-xl);
    
    animation: fade-in 2s ;
}


.article-text p{
    margin-bottom: 2rem;
    font-size: var(--fs-m);
    font-weight: 200;
    line-height: 2em;
    padding-left: var(--fs-xl);
    padding-right: var(--fs-xl);

    animation: fade-in 3.5s;
}

.article-text ol{
    font-size: var(--fs-m);
    font-weight: 200;
    line-height: 2em;
    padding-left: var(--fs-xl);
    padding-right: var(--fs-xl);

    animation: fade-in 3.5s;
}

.article-text a{
    text-decoration: none;
    color: palevioletred;
    opacity: 1;

    animation: fade-in 3.5s;
}

.article-image {
    width: 100%;
    max-width: 18.75rem;
    margin-bottom: 2em;
    position: relative;
}
.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-image-caption {
    font-size: var(--fs-s);
    margin-top: 2rem;
    text-align: center;
    color: grey;
}

/* HOVER EFFECT */
.article-text a:hover{
    opacity: .8;
}

/* FADE IN ANIMATION */

@keyframes fade-in{
    0%{opacity: 0;}
    50%{opacity: 0;}
    100%{opacity: 1;}
}

.whitespace {
	width: 100%;
	height: 150px;
}

/* ARTICLE-THUMBNAIL (vertical stack layout) */
.article-thumb {
    margin: 1rem auto 3rem auto; /* reduced top/bottom margin for tighter alignment */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    animation: fade-in 2s;
}

/* Each exhibition banner */
.article-card {
    position: relative;
    width: 100%;
    max-width: 1350px;   /* fixed banner width */
    height: 350px;      /* fixed banner height */
    overflow: hidden;
    background: #000;   /* fallback if image/video not loaded */
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Support both image and video */
.article-card img,
.article-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
    transition: transform 0.4s ease, filter 0.4s ease;
}

/* Hover zoom effect */
.article-card:hover img,
.article-card:hover video {
    transform: scale(1.05);
    filter: brightness(60%);
}

/* Overlay title and info text */
.article-card .caption {
    position: absolute;
    bottom: 2.8rem;
    left: 2rem;
    color: #fff;
    font-size: var(--fs-l);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.3em;
    text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}

.article-card .caption small {
    font-size: var(--fs-s);
    font-weight: 400;
}

.article-card .caption2 {
    position: absolute;
    bottom: 1rem;
    left: 2rem;
    color: #f0f0f0;
    font-size: calc(var(--fs-s) * 0.9);
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

/* Hover lift */
.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* =====================
   RESPONSIVE ADJUSTMENTS
===================== */
@media (max-width: 992px) {
    .article-card {
        max-width: 90%;
        height: 220px;
    }

    .article-card .caption {
        font-size: var(--fs-m);
        bottom: 2rem;
        left: 1.5rem;
    }
}

@media (max-width: 600px) {
    .article-thumb {
        margin: 1rem auto 3rem auto;
        gap: 2rem;
    }

    .article-card {
        width: 100%;
        height: 180px;
    }

    .article-card .caption {
        font-size: var(--fs-m);
        bottom: 1.8rem;
        left: 1rem;
    }

    .article-card .caption2 {
        bottom: 0.8rem;
        left: 1rem;
        font-size: 0.8rem;
    }
}


.whatsapp-enquire {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #E1A95E;
      color: white;
      padding: 12px 20px;
      font-size: 16px;
      font-weight: bold;
      border-radius: 50px;
      text-decoration: none;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s;
      z-index: 999;
    }

    .whatsapp-enquire:hover {
      background-color: #E1A95E;
    }

.caption2 {
    font-size: var(--fs-s);
    margin-top: 2rem;
    text-align: center;
    color: rgb(0, 0, 0);
}

.footer {
      margin-top: 50px;
      padding: 60px;
      background-color: #ffffff;
      text-align: center;
      font-size: 14px;
      color: #333;
    }

    
/* =========================
   DROPDOWN MENU
========================= */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0;
  text-transform: lowercase;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.9);
  min-width: 150px;
  z-index: 1;
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.3s ease;
}

.dropdown-content.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-content a {
  color: white;
  padding: 8px 12px;
  text-decoration: none;
  display: block;
  text-transform: lowercase;
}

.dropdown-content a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.arrow.rotate {
  transform: rotate(180deg);
}

/* Optional underline effect */
.dropdown:hover .dropbtn {
  text-decoration: underline;
}

/* =========================
   MOBILE MENU
========================= */
.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
  position: absolute;
  right: 20px;
  top: 1.5rem;
}

@media (max-width: 768px) {
  .navbar {
    justify-content: flex-end;
    padding-top: 1.5rem;
    background-color: transparent; /* only shows when menu opens */
  }

  .menu-icon {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95); /* appears only when active */
    padding: 10px 0;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-content {
    position: static;
    background-color: transparent;
    min-width: unset;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .dropdown-content a {
    padding: 6px 0;
  }
}


/* =========================
   ANIMATIONS
========================= */
@keyframes fade-in {
  0% { opacity: 0; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}
/* Mobile view adjustments */
@media screen and (max-width: 768px) {
  .menu-icon {
    font-size: 2rem; /* Keep hamburger/cross size */
    cursor: pointer;
    color: white; /* Ensure white color */
    z-index: 1001; /* on top of nav */
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px; /* adjust based on navbar height */
    right: 0;
    background-color: rgba(0,0,0,0.95); /* optional */
    width: 100%;
    text-align: center;
    padding: 1rem 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a,
  .dropdown .dropbtn {
    color: white;
    margin: 0.5rem 0;
    font-size: 1.2rem;
  }

  .dropdown-content {
    position: static;
    background: transparent;
    box-shadow: none;
    display: none;
  }

  .dropdown-content.show {
    display: flex;
    flex-direction: column;
  }
}
/* Mobile view adjustments */
@media screen and (max-width: 768px) {
  /* Mobile navbar background slightly transparent */
  .nav-links {
    background-color: rgba(0, 0, 0, 0.85); /* black with 85% opacity */
  }

  /* Dropdown menu for "exhibitions" transparent in mobile */
  .dropdown-content {
    background-color: rgba(0, 0, 0, 0.85); /* black with 85% opacity */
  }
}
@media screen and (max-width: 768px) {
  /* Mobile nav-links */
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;       /* fixed to viewport */
    top: 0;
    left: 0;
    bottom: 0;             /* stretch to bottom */
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* slightly transparent */
    text-align: center;
    padding-top: 1rem;     /* keep original spacing */
    z-index: 1000;
  }

  /* Mobile menu open */
  .nav-links.active {
    display: flex;
    flex-direction: column; 
    justify-content: flex-start; /* links start from top */
    height: auto;                /* keep links container natural height */
  }

  /* Dropdown inside mobile menu */
  .dropdown-content {
    position: static;
    display: none;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.85);
  }

  .dropdown-content.show {
    display: flex;
  }

  /* Menu icon */
  .menu-icon {
    font-size: 2rem;
    cursor: pointer;
    color: black;
    z-index: 1001; /* above nav-links */
  }

  /* Keep all links same as before */
  .nav-links a,
  .dropdown .dropbtn {
    color: white;
    margin: 0.5rem 0;
    font-size: 1.2rem;
  }
}
/* ======= Mobile animated menu (drop-in override) ======= */
@media (max-width: 768px) {
  /* Force the nav-links to remain in flow but collapsed so it can animate */
  .navbar .nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;                 /* collapsed */
    opacity: 0;                    /* invisible */
    transform: translateY(-10px);  /* slightly up */
    overflow: hidden;
    overflow-y: auto;              /* allow scrolling inside menu if needed */
    background-color: rgba(0,0,0,0.85);
    transition: max-height 420ms cubic-bezier(.2,.9,.2,1),
                opacity 300ms ease,
                transform 300ms ease;
    pointer-events: none;          /* prevent clicks while hidden */
    z-index: 1000;
    padding-top: 0; /* keep collapsed padding out */
  }

  /* Open state — animated */
  .navbar .nav-links.active {
    max-height: 100vh;             /* large enough to reveal full content */
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    padding-top: 1rem;             /* restore spacing when open */
    justify-content: flex-start;
  }

  /* keep links styling unchanged but ensure they lay out vertically */
  .navbar .nav-links a,
  .navbar .nav-links .dropbtn {
    margin: 0.5rem 0;
  }

  /* Ensure dropdown content behavior inside mobile works unchanged */
  .navbar .nav-links .dropdown-content {
    display: none;
    background-color: rgba(0,0,0,0.85);
  }
  .navbar .nav-links .dropdown-content.show {
    display: flex;
    flex-direction: column;
  }
}

/* ================================
   ONLINE VIEWING ROOM TEMPLATES
================================ */

/* Global section container */
.viewing-room {
    margin: 1rem auto 3rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    animation: fade-in 2s;
}


/* ===== 1. BANNER TEMPLATE ===== */
.vr-banner {
    position: relative;
    width: 100%;
    max-width: 1500px;
    height: 500px;
    overflow: hidden;
    background: #000;
}

.vr-banner img,
.vr-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
    transition: transform 0.4s ease;
}

vr-banner:hover img,
vr-banner:hover video {
    transform: scale(1.05);
    filter: brightness(60%);
}

.vr-banner .caption1 {
    position: absolute;
    bottom: 2.5rem;
    left: 2rem;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.3em;
    text-shadow: 0 2px 6px rgba(0,0,0,0.7);
    word-spacing: 1px;
}

.vr-banner .caption2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.3em;
    text-shadow: 0 2px 6px rgba(0,0,0,0.7);
    word-spacing: 1px;
}

.vr-banner .caption1 small {
    font-size: 1rem;
    font-weight: 400;
    word-spacing: 1px;
}

.vr-banner .caption2 small {
    font-size: 1rem;
    font-weight: 400;
    word-spacing: 1px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 2560px) {
    .vr-banner {
   max-width: 2600px;
    }
    }

/* ===== 2. TEXT TEMPLATE ===== */
.vr-text {
    margin-bottom: -1rem;
    margin-top: -1rem;
    font-size: var(--fs-m);
    font-weight: 200;
    line-height: 2em;
    padding-left: var(--fs-xl);
    padding-right: var(--fs-xl);
    word-spacing: 1px;
}
/* MOBILE FIX: reduce left-right spacing inside article text */
@media (max-width: 600px) {

    .vr-text {
        padding-left: 1rem;
        padding-right: 1rem;   /* shrink inner padding */
        word-spacing: 1px;
    }
}

/* ===== 3. VIDEO TEMPLATE ===== */
.vr-video {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;        /* full width */
    max-width: 1200px;  /* increased from 800px */
    margin: -1em;     /* center on desktop */
    gap: 1rem;
}

/* Vimeo Responsive Embed */
.vr-video .video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    background: #000;
}

.vr-video .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Caption styling */
.vr-video .caption {
    text-align: center;
    font-size: var(--fs-m);
    color: #555;
    word-spacing: 1px;
}


/* ===== 4. IMAGE GRID TEMPLATE (2 grid with popup) ===== */
.vr-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    justify-content: center;
    align-items: start;
    max-width: 900px;
    margin: -1rem auto;
    padding: 0 1rem;
}

.vr-image-grid img {
    width: 100%;
    height: 350px;              /* fixed dimension */
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.vr-image-grid img:hover {
    transform: scale(1.02);
}

.vr-image-grid .caption {
    grid-column: 1 / -1;
    text-align: center;
    font-size: var(--fs-m);
    color: #555;
    margin-top: -1rem;
    word-spacing: 1px;
}


/* ----- Popup Modal Styles ----- */
.vr-modal {
    display: none; /* hidden by default */
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8); /* translucent background */
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.vr-modal.active {
    display: flex;
}

.vr-modal img {
    max-width: 90%;
    max-height: 85%;
    object-fit: contain;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.vr-modal .close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    transition: 0.2s;
}

.vr-modal .close-btn:hover {
    color: #E1A95E;
}

/* ----- Responsive Layouts ----- */
@media (max-width: 768px) {
    .vr-image-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        
    }

    .vr-image-grid img {
        height: 300px;
    }

    .vr-image-grid .caption {
        font-size: var(--fs-m);
        word-spacing: 1px;
    }
}

/* ===== 5. QUOTATION TEMPLATE 1 (text left / media right) ===== */
.vr-quote1, .vr-quote2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1600px;
    width: 100%;
    padding: 0 1rem;
}

/* Text area */
.vr-quote1 .text, .vr-quote2 .text {
    flex: 1;
    font-size: var(--fs-m);
    line-height: 1.8em;
    color: #333;
    word-spacing: 1px;
}

/* Fixed-size media container */
.vr-quote1 img, .vr-quote1 video,
.vr-quote2 img, .vr-quote2 video {
    flex: 1;
    width: 100%;
    max-width: 700px;      /* keeps media box visually balanced */
    height: 420px;         /* fixed height */
    object-fit: cover;     /* crops excess, keeps proportions */
    background: #000;
    
}

/* Reverse order for QUOTATION TEMPLATE 2 */
.vr-quote2 {
    flex-direction: row-reverse;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .vr-quote1, .vr-quote2 {
        flex-direction: column;
        text-align: center;
        margin: -1.5rem;
    }

    .vr-quote1 img, .vr-quote1 video,
    .vr-quote2 img, .vr-quote2 video {
        max-width: 100%;
        height: 300px; /* maintain fixed frame on mobile */
    }
}

@media (max-width: 768px) {
  .vr-quote1 img, .vr-quote2 img {
    width: 400px;
    height: 220px;
    aspect-ratio: 1 / 1; /* keeps image box square */
    object-fit: cover;
    max-width: 100%;
  }

  .vr-quote1 {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 1024px) {
  .vr-quote1 img, .vr-quote2 img {
    width: 300px;
    height: 220px;
    aspect-ratio: 1 / 1; /* keeps image box square */
    object-fit: cover;
    max-width: 100%;
  }

  .vr-quote1 {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 1440px) {
  .vr-quote1 img, .vr-quote2 img {
    width: 600px;
    height: 220px;
    aspect-ratio: 1 / 1; /* keeps image box square */
    object-fit: cover;
    max-width: 100%;
  }

  .vr-quote1 {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 1500px) {
  .vr-quote1 img, .vr-quote2 img {
    width: 600px;
    height: 220px;
    aspect-ratio: 1 / 1; /* keeps image box square */
    object-fit: cover;
    max-width: 100%;
  }

  .vr-quote1 {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1500px) {
    .vr-banner {
        height: 500px;
    }
    .viewing-room {
    margin: -4rem auto 3rem auto;
    }
    .vr-video video {
        height: 280px;
    }
    .vr-image-grid {
        grid-template-columns: 1fr;
    }

    .vr-image-grid img {
        height: 220px;
    }

    .vr-quote1, .vr-quote2 {
        flex-direction: column;
    }

    .vr-quote1 img, .vr-quote2 img,
    .vr-quote1 video, .vr-quote2 video {
        height: 220px;
    }

    .vr-banner .caption {
        font-size: 1.2rem;
        bottom: 2rem;
        word-spacing: 1px;
    }

    .vr-banner .caption small {
        font-size: 0.9rem;
        word-spacing: 1px;
    }
}

/* ===== 7. EMBED TEMPLATE (for AV/VR exhibitions) ===== */
.vr-embed {
    display: flex;
    flex-direction: column;
    align-items: center;        /* horizontal center */
    justify-content: center;    /* vertical balance */
    text-align: center;
    width: 100%;
    max-width: 1000px;          /* same content width as others */
    margin: 3rem auto;          /* centers horizontally in the page */
    gap: 1.2rem;
    padding: -1rem;
}

.vr-embed iframe {
    width: 100%;
    max-width: 1000px;
    height: 600px;
    border: none;
    background: #000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    display: block;
    margin: 0 auto;             /* ensures iframe is centered inside */
}

.vr-embed .caption {
    font-size: var(--fs-m);
    color: #555;
    line-height: 1.6em;
    max-width: 800px;
    word-spacing: 1px;
}

/* Responsive scaling for smaller screens */
@media (max-width: 1000px) {
    .vr-embed iframe {
        height: 600px;
    }
}

@media (max-width: 1000px) {
    .vr-embed {
        margin: -1rem auto;
    }

    .vr-embed iframe {
        height: 400px;
    }

    .vr-embed .caption {
        font-size: var(--fs-m);
        line-height: 1.4em;
        padding: 0 0.5rem;
        word-spacing: 1px;
    }
}

/* ===== 8. IMAGE SLIDER BANNER TEMPLATE ===== */
.vr-slider-banner {
  position: relative;
  width: 100%;
  max-width: 1500px;
  height: 500px;              /* fixed dimension */
  margin: 0 auto;             /* centers the whole box on the page */
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vr-slider-banner .slider-track {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
}

.vr-slider-banner img {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  object-fit: cover;          /* ensures consistent framing */
}

/* Caption styling */
.vr-slider-banner .caption {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  color: #fff;
  font-size: var(--fs-m);
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
  z-index: 5;
  word-spacing: 1px;
}

/* Navigation arrows */
.vr-slider-banner .slider-prev,
.vr-slider-banner .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.4rem 0.8rem;
  border-radius: 50%;
  z-index: 10;
  transition: background 0.3s;
}

.vr-slider-banner .slider-prev:hover,
.vr-slider-banner .slider-next:hover {
  background: rgba(0, 0, 0, 0.7);
}

.vr-slider-banner .slider-prev { left: 15px; }
.vr-slider-banner .slider-next { right: 15px; }

/* Responsive scaling */
@media (max-width: 900px) {
  .vr-slider-banner { height: 320px; }
  .vr-slider-banner .caption {
    font-size: var(--fs-m);
    left: 1rem;
    bottom: 1rem;
  }
}

@media (max-width: 600px) {
  .vr-slider-banner { height: 240px; }
  .vr-slider-banner .slider-prev,
  .vr-slider-banner .slider-next { font-size: 1.6rem; }
}

/* ===== 9. AUDIO TEMPLATE ===== */
.vr-audio {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin: -2rem;
    gap: 1rem;
    padding: 1rem 0;
}

.vr-audio audio {
    width: 100%;
    outline: none;
}

.vr-audio .audio-caption {
    text-align: center;
    font-size: var(--fs-m);
    color: #555;
    word-spacing: 1px;
}
