/*───────────────────────────────────────────────────────────────────────────────
  1. GLOBAL TRANSITIONS & POINTER‐EVENTS
───────────────────────────────────────────────────────────────────────────────*/

/* Global transitions and hover effects */
.btn.btn-primary,
.back-to-top,
.explore-btn {
    transition: transform 0.4s;
}

.btn.btn-primary:hover,
.back-to-top:hover,
.explore-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Ensure image map areas are always interactive */
#back-wall-image {
    pointer-events: auto !important;
}

map area {
    cursor: pointer;
    outline: none;
    transition: all 0.2s;
}

map area:hover {
    outline: 2px solid rgba(255, 0, 0, 0.5);
}

/*───────────────────────────────────────────────────────────────────────────────
  2. LANDING SECTION (HERO) 
───────────────────────────────────────────────────────────────────────────────*/
#landing-section {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    color: #212529;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    padding-bottom: 3rem;
}
  
  /* Title & subtitle */
.landing-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}
  
.landing-subtitle {
    font-size: 1.5rem;
    color: #495057;
    margin-bottom: 2rem;
    font-weight: 400;
}
  
/* Button containers */
.landing-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    margin-top: 2rem;
}
  
.landing-buttons .btn {
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.2s ease;
}
  
.btn-explore {
    font-size: 1.15rem !important;
    padding: 1rem 2rem !important;
    font-weight: 700 !important;
}
  
/* Button colors */
.btn-success {
    background-color: #007a3d;
    border-color: #007a3d;
}
  
.btn-outline-success {
    color: #007a3d;
    border-color: #007a3d;
}
  
.btn-outline-success:hover {
    background-color: #007a3d;
    color: white;
}
  
/* Wrapper around the buttons to center & align horizontally */
.landing-buttons-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
  
  /* Image + Video Containers */
.landing-media-wrapper {
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    display: inline-block;
}
  
.landing-media-image {
    height: 250px;
    width: auto;
    display: block;
    object-fit: contain;
}
  
.landing-media-video {
    height: 300px;
    width: auto;
    display: block;
    object-fit: contain;
}
  
/* Caption styling */
.landing-media-caption {
    margin-top: 0.6rem;
    text-align: center;
    font-style: italic;
    font-size: 0.75rem;
    color: #555;
}
  
.landing-media-caption.video-caption {
    font-size: 1rem;
    color: #444;
}
  
.landing-media-caption.image-caption {
    font-size: 0.7rem;
    color: #666;
} 

/* Button color overrides */
.btn-success {
    background-color: #007a3d;
    border-color: #007a3d;
}

.btn-outline-success {
    color: #007a3d;
    border-color: #007a3d;
}

.btn-outline-success:hover {
    background-color: #007a3d;
    border-color: #007a3d;
    color: white;
}
   
/*───────────────────────────────────────────────────────────────────────────────
   SCROLL-DOWN INDICATOR
───────────────────────────────────────────────────────────────────────────────*/

.scroll-down {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}
  
.scroll-down .chevron {
    display: block;
    font-size: 2rem;
    color: rgba(0,0,0,0.5);
    animation: scroll-bounce 2s infinite;
}
  
@keyframes scroll-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40%                  { transform: translateY(8px) translateX(-50%); }
    60%                  { transform: translateY(4px) translateX(-50%); }
}  

/*───────────────────────────────────────────────────────────────────────────────
  3. “EXPLORE BY SUBJECT” SLIDER
───────────────────────────────────────────────────────────────────────────────*/

#explore-by-subject {
    padding: 4rem 0 4rem;
    border-bottom: 1px solid #e9ecef;
    color: #fff;
}

#slider-section {
    margin: 30px auto;
    max-width: 1500px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

#slider-section .slider-header {
    text-align: left;
    padding: 0 30px;
    margin-bottom: 10px;
}

#slider-section .slider-header h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

#slider-section .slider-instructions {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

#slider-section .slider-instructions::after {
    content: '→';
    margin-left: 5px;
    font-size: 18px;
}

#slider-section .accordion {
    height: 250px;
    max-width: 75%;
    width: 100%;
    margin: 0 auto;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    gap: 5px;
}

#slider-section .panel {
    flex: 0.3;
    border-radius: 6px;
    box-shadow: none;
    transition: flex 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
    opacity: 0.8;
    cursor: pointer;
}

#slider-section .panel img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
}

#slider-section .panel:hover, 
#slider-section .panel.active {
    flex: 2;
    opacity: 1;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

#slider-section .panel.active {
    border: 2px solid #20c997;
    border-radius: 8px;
}

#slider-section .panel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 8px 16px;
    font-size: 14px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s;
}

#slider-section .panel:hover .panel-caption,
#slider-section .panel.active .panel-caption {
    opacity: 1;
}

#slider-section .slider-nav {
    text-align: right;
    padding: 10px 30px;
}

#slider-section .slider-nav a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

/*───────────────────────────────────────────────────────────────────────────────
  4. 3D EXHIBITION SECTION 
───────────────────────────────────────────────────────────────────────────────*/

#environment-3d-pane {
    background-color: #f8f9fa;      
    border-bottom: 1px solid #e9ecef;
    padding: 4rem 0 4rem;          
    color: #212529;           
}

#environment-3d-pane .section-title {
    font-size: 2rem;
    font-weight: 700;   
    color: #212529;     
    margin-bottom: 2rem;
    text-align: center;  
}

.environment-container {
    width: 60%;
    max-width: 960px;             
    margin: 0 auto 2rem;          
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.environment-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}
.environment-container:hover img {
    transform: scale(1.02);
}

.environment-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #212529 !important;  
}
.environment-container:hover .overlay {
    opacity: 1;
}

.environment-container .overlay .btn {
    background-color: #f8f9fa;   
    color: #212529;               
    border: 1px solid #212529;    
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.environment-container .overlay .btn:hover {
    background-color: #e2e6ea;  
    transform: scale(1.05);
}

#unityContainer {
    display: none;                
    margin: 0 auto;
    max-width: 960px;
    position: relative;
    margin-top: 2rem;
}

#unityContainer .close-unity {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ffffff;
    color: #212529;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 18px;
    line-height: 32px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
#unityContainer .close-unity:hover {
    background-color: #f0f0f0;
}

#unityContainer iframe {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/*───────────────────────────────────────────────────────────────────────────────
  5. BACK‐WALL PANEL SECTION
───────────────────────────────────────────────────────────────────────────────*/

#back-wall {
    padding: 3rem 0;
}

#back-wall .container h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.back-wall-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding-top: 20px;
}

.back-wall-panel {
    width: 22%;
    height: 90%;
    min-width: 90px;
    position: relative;
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.back-wall-panel:hover {
    transform: scale(1.05);
}

.back-wall-panel img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.back-wall-panel .zoom-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 2;
    opacity: 0.8;
}

.back-wall-panel .zoom-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*───────────────────────────────────────────────────────────────────────────────
  6. RIGHT WALL PANEL SECTION
───────────────────────────────────────────────────────────────────────────────*/

#right-wall {
    padding: 3rem 0;
    background-color: transparent;
}

#right-wall .container {
    max-width: 90%;
}

#right-wall .right-wall-photos {
    display: flex;             
    justify-content: center;   
    column-gap: 8rem;         
}

#right-wall .container > .row:first-of-type {
    display: flex;           
    justify-content: center;
    column-gap: 8rem;       
}

#right-wall-selector {
    margin-bottom: 20px;
    padding: 12px 20px;
    border-radius: 4px;
    border: 1px solid #007a3d;
    background-color: white;
    color: #007a3d;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

#right-wall-selector:hover {
    background-color: #f8f8f8;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.right-wall-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 0;
}

.right-wall-panel-container {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.right-wall-panel {
    width: 100%;
    position: relative;
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.right-wall-panel:hover {
    transform: scale(1.05);
}

.right-wall-panel img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.right-wall-panel .zoom-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 2;
    opacity: 0.8;
}

.right-wall-panel .zoom-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Add zoom controls for right wall panels */
.right-wall-zoom-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.zoom-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    color: #333;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 2px solid #ccc;
    transition: all 0.2s ease;
}

.zoom-btn:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.zoom-level {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}

/* Make the right wall modal image container support zooming */
.right-wall-modal-image-container {
    width: 90%;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: auto;
    position: relative;
    cursor: grab;
}

.right-wall-modal-image-container:active {
    cursor: grabbing;
}

/* Add transition for smooth zooming */
#right-wall-modal-image {
    transition: transform 0.2s ease;
    transform-origin: 0 0;
}

/* Reset button for zoom */
.zoom-reset {
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    color: #333;
    cursor: pointer;
    border: 2px solid #ccc;
    transition: all 0.2s ease;
}

.zoom-reset:hover {
    background-color: rgba(255, 255, 255, 1);
}

/*───────────────────────────────────────────────────────────────────────────────
  7. VIDEO SECTIONS
───────────────────────────────────────────────────────────────────────────────*/

/* Hidden content sections */
#video,
#front-wall,
#back-wall,
#right-wall {
    display: none;
    transition: opacity 0.3s ease;
}

/* Video Section styling */
#video {
    background-color: transparent;
    padding: 3rem 0;
}

#video .container {
    max-width: 90%;
}

#video .row {
    display: flex;
    align-items: flex-start; /* Aligns the top of both videos */
}

#video .col-md-6 {
    padding: 0 15px;
}

#video h3 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #fff;
}

#video .video-container {
    margin-top: 0;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#video .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 8px;
}

@media (max-width: 767px) {
    #video .row {
        flex-direction: column;
    }
    
    #video .col-md-6:first-child {
        margin-bottom: 2rem;
    }
}

/* Style for the videos section cards if used */
#video .card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

#video .card:hover {
    transform: translateY(-5px);
}

#video .card-body {
    padding: 1.5rem;
}

#video video {
    border-radius: 8px;
    width: 100%;
    height: auto;
}

/* Stand Section */
#stand-video-container {
    margin: 2rem auto;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
}

#stand-video-container video {
    width: 70%;
    height: 50%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background-color: #000;
    display: block;
}

/*───────────────────────────────────────────────────────────────────────────────
  8. SILHOUETTES & IMAGE ACCORDION
───────────────────────────────────────────────────────────────────────────────*/

#silhouettes {
    padding: 0;
    margin: 0;
}

#silhouettes img {
    width: 100%;
}

/* Silhouette animation */
.silhouette {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.silhouette.show {
    opacity: 1;
    transform: translateY(0);
}

/* Image accordion section */
#image-accordion {
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    background-color: var(--bs-secondary-bg);
}

.accordion {
    display: flex;
    width: 90%;
    max-width: 1000px;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    gap: 5px;
}

.accordion .panel {
    flex: 2;
    min-width: 80px;
    cursor: pointer;
    overflow: hidden;
    transition: flex 0.5s ease-in-out;
    position: relative;
    border-radius: 20px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion .panel img {
    height: 100%;
    width: auto;
    object-fit: cover;
    object-position: center center;
    background-color: white;
    transition: transform 0.5s ease-in-out;
    border-radius: 20px;
}

.accordion .panel:hover,
.accordion .panel.active {
    flex: 4;
}

/*───────────────────────────────────────────────────────────────────────────────
 9. CEILING PANELS (FLIP CARDS & MODAL)
───────────────────────────────────────────────────────────────────────────────*/

.ceiling-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.ceiling-row {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.ceiling-panel {
    position: relative;
    perspective: 1500px;
    border-radius: 15px;
}

.ceiling-panel.tall {
    width: 450px;
    height: 450px;
}

.ceiling-panel.short {
    width: 450px;
    height: 315px;
}

/* The panel flips in place when user clicks */
.panel-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s ease-in-out;
}

/* This class is toggled to flip the card */
.ceiling-panel.flipped .panel-inner {
    transform: rotateY(180deg);
}

.panel-front,
.panel-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    object-fit: cover;
}

.panel-back {
    transform: rotateY(180deg);
}

.top-row {
    align-items: flex-start;
    margin-bottom: -65px;
}

.bottom-row {
    align-items: flex-end;
    margin-top: -65px;
}

/* Zoom icon for enlarging the panel */
.zoom-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 2;
    opacity: 0.8;
}

.zoom-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Adjust hover text to be bigger and centered */
.hover-flip-text {
    position: absolute;
    top: 50%;
    left: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
}

.ceiling-panel:hover .hover-flip-text {
    opacity: 1;
}

/*───────────────────────────────────────────────────────────────────────────────
 10. CEILING PANELS MODAL OVERLAY
───────────────────────────────────────────────────────────────────────────────*/

.ceiling-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

/* Fixed modal size for consistency */
.ceiling-modal-content {
    width: 1200px;
    height: 1200px;
    max-width: 90vw;
    max-height: 90vh;
    background-color: #212529;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Close button */
.ceiling-modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    border: 2px solid #ccc;
    font-size: 30px;
    line-height: 46px;
    text-align: center;
    cursor: pointer;
    user-select: none;
}

/* Navigation arrows */
.ceiling-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    user-select: none;
    background-color: rgba(255, 255, 255, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 46px;
    text-align: center;
    z-index: 10;
}

.ceiling-modal-nav-left {
    left: 25px;
}

.ceiling-modal-nav-right {
    right: 25px;
}

.ceiling-modal-nav:hover {
    background-color: rgba(255, 255, 255, 1);
}

/* Flip container inside the modal */
.flip-container {
    position: relative;
    bottom: 25px;
    width: 80%;
    max-width: 900px;
    height: 80%;
    max-height: 900px;
    perspective: 1000px;
}

.flip-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-front,
.flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    backface-visibility: hidden;
    object-fit: contain;
}

.flip-back {
    transform: rotateY(180deg);
}

.flip-container.flipped .flip-inner {
    transform: rotateY(180deg);
}

/* Flip button in modal */
.modal-flip-btn {
    position: absolute;
    bottom: 70px; 
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background-color: #20c997;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    z-index: 11;
}

.modal-flip-btn:hover {
    background-color: #17a185;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .ceiling-modal-nav {
        font-size: 30px;
        width: 40px;
        height: 40px;
        line-height: 36px;
    }

    .modal-flip-btn {
        font-size: 16px;
        padding: 8px 16px;
    }
}

/*───────────────────────────────────────────────────────────────────────────────
 11. POPUP OVERLAY FOR ANY “ENLARGED” IMAGES (BACK‐WALL/CEILING, ETC.)
───────────────────────────────────────────────────────────────────────────────*/

.popup {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    padding-top: 40px;
    box-sizing: border-box;
}

.popup-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.popup-image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: calc(100vh - 80px);
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

.close {
    margin-top: 10px;
    margin-bottom: 20px;
    background-color: white;
    color: black;
    border: none;
    font-size: 1rem;
    padding: 0.2rem 0.6rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.close:hover {
    background-color: #eee;
}

/*───────────────────────────────────────────────────────────────────────────────
 12. MISCELLANEOUS / HELPERS
───────────────────────────────────────────────────────────────────────────────*/

/* Space between sections */
.spacer {
    height: 2rem;
}

/*───────────────────────────────────────────────────────────────────────────────
  13. UNIFIED PADDING FOR ALL “HIDDEN” PANELS
───────────────────────────────────────────────────────────────────────────────*/

#front-wall,
#stand,
#back-wall-panels,
#image-accordion,
#image-accordion,
#silhouettes {
    padding: 3rem 0;
}