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

        
        .header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem;
            background: #ffffff;
            position: relative;
            min-height: 80px;
            border-bottom: solid 0.09rem grey;
        }
        
        .logo-container {
            flex: 0 0 auto;
        }
        
        .logo {
            height: 6rem;
            width: auto;
            transition: opacity 0.3s ease;
        }
        
        .logo:hover {
            opacity: 0.8;
        }
        
        .title-container {
            flex: 1;
            display: flex;
            justify-content: flex-end;
        }
        
        .title {
            font-family: 'Inter', sans-serif;
            font-size: 2rem;
            font-weight: 300;
            color: #ff6b35;
            letter-spacing: 1rem;
            text-transform: uppercase;
            transition: all 0.3s ease;
            text-decoration: none;
            margin-top: 0.5rem;
        }
        
        .title:hover {
            letter-spacing: 1.2rem;
        }
        
        .title::after {
            content: "CURATORIUM";
        }
        

        
        @media (max-width: 900px) {
            .title::after {
                content: "";
                font-size: 3rem;
            }
        }
        
        a {
            text-decoration: none;
        }
        
        a:hover {
            text-decoration: none;
        }
        
        .spacer {
            flex: 0 0 auto;
            width: 66px; /* Matches logo container width for balance */
        }
        
        @media (max-width: 768px) {
            .header {
                padding: 15px 20px;
                min-height: 70px;
            }
            
            .title {
                font-size: 2rem;
            }
            
            .logo {
                height: 40px;
                min-height: 6rem;
            }
        }
        
        @media (max-width: 480px) {
            .header {
                padding: 10px 15px;
                min-height: 60px;
            }
            
            .title {
                font-size: 1.5rem;
            }
            
            .logo {
                height: 35px;
            }
        }

/* Reset and Global Styles */
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #fafafa37;
    color: #333;
    line-height: 2em;

    
}

/* Headings */
h1, h2, h3 {
    font-weight: normal;
    margin: 0 0 10px;
}



p {
    text-align: justify;
}

/* Links */
a {
    color: #f37146;
    text-decoration: none;
    line-height: 1.3em;
    text-align: left;
}

a:hover {
    text-decoration: underline;
}

/* Banner Image */
.banner {
    position: relative;
    width: 100%;
    height: 35vh; 
    overflow: hidden;
    margin: 0;
    margin-bottom: 20px;
    
}

.custom-quote {
    margin: 0px 20px; 
    padding: 20px 30px; 
    border-left: 1.5px solid #f37146; 
    font-style: italic; 
    color: #8c8c8c;
    background-color: #f9f9f987; 
    text-align: justify;
}




.banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: white;
    
    background-color: rgba(41, 40, 40, 0.431);
    z-index: 1;
    
}

.banner .text-overlay {
    position: absolute;
    top: 35%;
    left: 30%;
    transform: translate(-50%, -50%);
    text-align: left;
    z-index: 2;
    color: white;
    margin: 2rem;
    padding-left: 40px;
    padding-top: 40px;
}

.banner video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    
}

.banner img, 
.banner__bottom img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
   
    z-index: 0;
}

/* Full Width Main Content */

.custom-quote-alt {
    margin: 0rem 2rem; 
    padding: 20px 30px; 
    font-style: italic; 
    color: #8c8c8c;
    background-color: #f9f9f987; 
    text-align: justify;
}

.container {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 20px;
}

.container img{
    max-width: 1000px;
    display: block; 
    margin: 2rem auto 1rem;
    object-fit: contain;
}

.image-container img{
        background: #fff;
  border-radius: 0;
  border: solid 0.05rem rgba(69, 69, 69, 0.363);
  padding: 0.5rem;
}

.image-container-narrow img {
    max-width: 450px;
    background: #fff;
  border-radius: 0;
  border: solid 0.05rem rgba(69, 69, 69, 0.363);
  padding: 0.5rem;
}

.image-container-narrower img {
    max-width: 300px;
        background: #fff;
  border-radius: 0;
  border: solid 0.05rem rgba(69, 69, 69, 0.363);
  padding: 0.5rem;
}

.container-two {
    display: flex;
    justify-content: center; 
    align-items: flex-start; 
    gap: 1.5rem; 
    max-width: 1000px; 
    margin: 0 auto; 
}

.container-two img:first-child {
    max-width: 63%; 
    height: auto; 
}

.container-two img:last-child {
    height: 100%; 
    width: auto; 
    max-width: 40%; 
}





/* Grid Layout for Opening and text on left */
.grid-container--opening,
 .grid-container--left {
    display: grid;
    grid-template-columns: 2fr 1fr; 
    gap: 40px;
    margin: 0 auto;
    padding: 20px;
    max-width: 1000px;
}

/*grid container for text on right*/
.grid-container--right{
    display: grid;
    grid-template-columns: 1fr 2fr; 
    gap: 40px;
    margin: 0 auto;
    padding: 20px;
    max-width: 1000px;
}

/*grid container for author*/
.grid-container--author{
    display: grid;
    grid-template-columns: 1fr 4fr; 
    gap: 40px;
    margin: 0 auto;
    padding: 30px;
    max-width: 1000px;
    background-color: #ebebeb60;
}

.image-container__author {
    width: 150px; 
    height: 150px;
    overflow: hidden; 
    border-radius: 50%; 
    position: flex; 
    top: 1;
    left: 1;
    transform: translate(10%, 10%);  
}

.image-container__author img {

    width: 100%;
    height: 100%;
    object-fit: cover;  
    
}

.author-content  {
    display: flex;
    flex-direction: column;
    padding-right: 20px;
    padding-bottom: 10px;
}

/* Main Content Section */
.grid-container--opening .main-content,
.grid-container--left .main-content, 
.grid-container--right .main-content  {
    display: flex;
    flex-direction: column;
}

.grid-container--opening .main-content img,
.grid-container--left .main-content img, 
.grid-container--right .main-content img  {
    max-width: 100%;
    padding-top: 40px;
    height: auto;
    margin: px 0;
}

/* Metadata Section */
.grid-container--opening .metadata {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    position: relative;
    max-height: 350px;  
    overflow-y: hidden; 
    transition: overflow-y 0.3s ease; 
}

.grid-container--opening .metadata:hover {
    overflow-y: scroll; 
}

.grid-container--opening .metadata::after {
    content: '';
    display: block;
    position: sticky;
    left: 0;
    bottom: -20px;
    width: 100%;
    height: 30px;  /* Adjust the height of the fade */
    background: linear-gradient(to top, #ffffff, rgba(255, 255, 255, 0));  /* Fade from background color to transparent */
    z-index: 2;
    pointer-events: none;
}


/* Styling for the list */

.grid-container--opening .metadata h2 {
    margin-top: 0;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
}

ul 

ul li a {
    color: #f37146;
    text-decoration: none;
}

a:hover { text-decoration: none; }

ul li {
    text-decoration: underline;
}

.list ul li{
    margin: 0px;
}

/* Responsive Adjustment */
@media (max-width: 768px) {
    .grid-container--opening, 
    .grid-container--left, 
    .grid-container--right {
        grid-template-columns: 1fr; /* Stacks columns on small screens */
    }

    .container {
        max-width: 100%;
        padding: 15px;
    }
}
/* Carousel Wrapper */
.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 3rem; 
}

/* Carousel with 8:7 aspect ratio */
.carousel--squat {
    aspect-ratio: 8 / 7;
}

/* Carousel with 14:9 aspect ratio */
.carousel--wide {
    aspect-ratio: 14 / 9;
}

.container-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Carousel small */
.carousel--small {
    aspect-ratio: 8 / 7;
    max-width: 450px;
}

.carousel-wrapper.carousel--small {
    padding: 40px;
    padding-bottom: 60px;
}

.carousel--small .carousel__photo {
    height: 85%;
}

/* Carousel Images - FIXED */
.carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel__item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel__photo {
    position: absolute; /* Added this */
    top: 0;
    left: 0;
    width: 100%;
    height: 85%; /* Reduced height to leave room below */
    object-fit: cover; /* Changed from 'fill' to 'cover' */
    object-position: center; /* Added this to center the image */
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.carousel__photo.active {
    opacity: 1;
}

/* Carousel Buttons */
.carousel__button--prev,
.carousel__button--next {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 2rem;
    height: 3rem;
    background-color: #1d1d1d60;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.carousel__button--prev {
    left: 0.05rem;
}

.carousel__button--next {
    right: 0.05rem;
}

.carousel__button--prev:hover,
.carousel__button--next:hover {
    background-color: #222222c7;
}

.carousel__button--prev::after,
.carousel__button--next::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid #c6c6c6;
    border-bottom: 2px solid #c6c6c6;
    display: inline-block;
    transform: rotate(135deg);
}

.carousel__button--next::after {
    transform: rotate(-45deg);
}

/* Carousel dots - moved closer to image */
.carousel__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    height: 20px;
    position: absolute;
    bottom: 30px; /* Positioned just below the image */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1002;
}

.carousel__dot {
    width: 8px;
    height: 8px;
    background-color: #dddddd85;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel__dot:hover {
    background-color: #9999998f;
}

.carousel__dot.active {
    background-color: #fea100a7;
}

/* Carousel with descriptions - positioned below dots */
.carousel__description {
    position: absolute;
    bottom: 5px; /* Positioned at the very bottom */
    left: 0;
    width: 100%;
    font-size: 0.8rem;
    line-height: 1.2em;
    text-align: center;
    padding: 7px;
    color: #999;
    font-style: italic;
    opacity: 0;
    transition: opacity 0.3s ease;
}
/*images and descriptions*/

.image-description {
    font-size: 0.8em;
    color: #a1a0a0;
    margin-top: 10px;
    text-align: center;
    line-height: 1.6em;
    
}

.indented-text {
    padding-left: 30px;
    padding-right: 30px;
    color: #8c8c8c;
}

.scaled-image {
    width: 70%;
    display: block; 
    margin: 0 auto;
}

.scaled-image-smaller {
    width: 50%;
    display: block; 
    margin: 0 auto;
}

.scaled-image-larger {
    width: 85%;
    display: block; 
    margin: 0 auto;
}


.bibliography-summary {
    font-size: 1.5rem; 
    font-weight: 300;
    color: #f37146; 
    cursor: pointer;
    transition: color 0.3s ease;
    list-style: none;
  }
  
  .bibliography-summary:hover {
    color: #fe4000; 
  }
  
  .bibliography-summary::marker {
    content: none; /* Remove default triangle */
  }
  

/*author info*/




/* Banner Image */
.banner__bottom {
    position: absolute;
    width: 100%;
    height: 20vh; /* Adjust height as needed */
    overflow: hidden;
    margin: 0;
    margin-top: 20px;
    
}
.banner__bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}

.banner__bottom video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    
}


/* Footer styling */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width:100%;
    background-color: #ffffff;
    border-top: 1px solid #fff200;
    text-align: center;
    padding: 0px;
    font-size: 14px;
    z-index: 1002;
}



/* slider*/


.image-slider-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
}

.image-overlay {
  position: relative;
  width: 100%;
  height: 100%;
}

.rock-image, .tracing-image {
  width: 100%;
  height: auto;
  display: block;
}

.rock-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.slider-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background-color: rgb(255, 255, 255);
  cursor: ew-resize;
  z-index: 10;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.564);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

/*video*/

.video-container {
  display: flex;
  justify-content: center; /* Centers the video horizontally */
  align-items: center; /* Vertically center the video if container has height */
  max-width: 100%; /* Prevents the container from exceeding the page width */
  height: 100%; /* Adjust if you want a specific height */
}

#video {
  width: 80%; /* Set video width to 80% of its container */
  height: auto; /* Maintains aspect ratio */
}

.array-image-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;      
  align-items: flex-end;        
  gap: 1rem;
}

.image-item {
  display: flex;
  flex-direction: column;
  align-items: center;          
  width: 200px;                 
}
.image-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.image-description {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  text-align: center;
}

.divider {
  border: none;
  height: 1px;
  background-color: #ccc; /* or any color */
  margin: 6rem 0;          
  width: 100%;             
}

ul, ol, dl {
  margin-bottom: 1rem;
  list-style-position: outside;
  line-height: 1.6;
}

/* Footer */
.logo-footer {
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
}


.logo-footer img {
   margin-top: 0.3rem;
   max-height: 70px;
}

.text-footer p {
    display: none;
}



.second-footer-row {
  display: flex;
  justify-content: space-between; 
  align-items: center; 
  background-color: #fff;
  border-bottom: 1rem solid var(--grey-tdbll);
}


.second-footer-row img {
   max-height: 40px;
margin-top: 1rem;
}

.second-footer-row .logo-footer {
    height: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.second-footer-row .logo-footer:nth-child(2) {
    align-items: flex-end;
}
/* end footer */