@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600&family=Raleway&display=swap%27');

html {
  scroll-padding-top: 20px;
}

body {
  overflow-x: hidden;
  font-size: clamp(1.1rem, 1.2vw + 0.5rem, 1.3rem);
  /* font-family: 'EB Garamond', Garamond, Georgia, serif; */
}

/* Header */
#headernav {
  width: 100%;
}

#headernav.bg-dark {
  background-color: rgba(0, 0, 0, 0) !important;
}

li.nav-item {
  font-style: italic;
  font-size: 1.3rem;
}

.navbar-dark .navbar-nav .nav-link {
  color: white;
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: #8a382c;
  text-decoration: none;
}

.navbar-dark .navbar-nav .nav-link.active {
  background-color: #94866c;
  color: #8a382c;
}

#header {
  color: white;
  font-family: 'EB Garamond', Garamond, Georgia, serif;
  width: 100% !important;
  min-height: 15vh;
  min-width: 100vw;
  position: absolute;
  z-index: 100;
}

#header.headerDefault {
  background-color: #000;
}

#header.headerHome {
  background-color: rgba(0, 0, 0, 0);
}

#header .head .title {
  margin-right: 0 !important;
}

#header .head .title .logo {
  height: auto;
  width: 100%;
  min-width: 200px;
}

#header .head .hamburger {
  text-decoration: none;
  color: black;
}

#header .head .links {
  font-weight: bold;
  font-size: 1.3rem;
}

#header .head .links .link {
  color: white;
  text-decoration: none;
}

#header .head .links .link:hover {
  color: #8a382c;
  text-decoration: none;
}

#header .head .text {
  font-size: 1.3rem;
}

#header_text {
  min-height: 50vh;
  margin-top: 40vh;
  color: #ebebeb;
  font-family: 'EB Garamond', Garamond, Georgia, serif;
  font-style: italic;
  font-weight: normal;
}

#header_text h4 p {
  font-size: clamp(1rem, 1rem + 1vw, 2rem);
}

#header-smallscreen {
  display: none;
  z-index: 2;
  position: fixed;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

#header-smallscreen .buttons {
  background-color: #d9d9d9;
  height: 100%;
}

#header-smallscreen .buttons h1 {
  font-size: 2rem;
}

#header-smallscreen .buttons h1 a {
  text-decoration: none;
  color: black;
}

#header-smallscreen .buttons h1 a:hover {
  color: #fff;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: flex;
}

.mobile-menu-list li {
  margin: 1.5rem 0;
}

.mobile-menu-list li a {
  color: #fff;
  font-size: 1.3rem;
  text-decoration: none;
}

.mobile-menu-list li a:hover {
  text-decoration: underline;
}

.mobile-menu-overlay .nav-item {
  font-style: italic;
  font-size: 1.3rem;
  font-family: 'EB Garamond', Garamond, Georgia, serif;
  font-weight: normal;
}

.mobile-menu-overlay .nav-link {
  color: white;
  text-decoration: none;

  padding: 0.5rem 1rem;
}

.mobile-menu-overlay .nav-link:hover {
  color: #8a382c;
  text-decoration: none;
}

.mobile-menu-overlay .nav-link.active {
  background-color: #94866c;
  color: #8a382c;
}

/* Header End */

#landing-img {
  height: 100vh;
  width: 100vw;
  min-height: 100vh;
  background-image: url(../img/1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#landing-img {
  position: relative;
  z-index: 1;
}
#landing-img::after {
  content: '';
  position: absolute;
  left: 0%;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, #00000096 70%, transparent 100%);
  z-index: -1;
}
#landing-img h4 {
  filter: drop-shadow(3px 3px 3px black);
}

/* Main Page*/

#copyright {
  font-size: 12px;
}

/* Home */
#home_info,
.home {
  background-color: #cab9b0;
}

#home_info h1,
#call_to_action {
  font-family: 'EB Garamond', Garamond, Georgia, serif;
  font-weight: bold;
  font-style: italic;
  text-align: center;
}

#call_to_action {
  font-size: 1.3rem;
}

#home_info .texts {
  color: #000;
  font-family: 'EB Garamond', Garamond, Georgia, serif;
  font-style: italic;
  font-size: 1.3rem;
  /* font-weight: bold; */
  min-height: 300px;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  #home_info .texts {
    min-height: 480px;
  }
}

.out-btns {
  border-width: medium;
  border-radius: 25px;
  font-size: clamp(1.4rem, 1.2vw + 0.5rem, 1.6rem);
  margin-bottom: 1rem;
}

button.out-btns,
a.out-btns {
  padding-left: 6px;
  padding-right: 6px;
}

a.out-btns.cta {
  transform: rotate(-90deg);
  float: right;
  margin-top: -12px;
}

.action-btns {
  background-color: #6c5e53;
  padding: 16px 24px 2px 16px;
  font-size: 1.3rem;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .action-btns {
    background-color: #6c5e53;
    padding: 16px 32px 2px 32px;
  }
}

.action-btns.half-btns {
  width: 100%;
  margin-bottom: 1.5rem !important;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .action-btns.half-btns {
    width: 49%;
  }
}

.action-btns span {
  color: #fff;
  font-family: 'EB Garamond', Garamond, Georgia, serif;
}

#ft_text {
  font-size: 0.5rem;
  font-style: italic;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  #ft_text {
    font-size: 0.9rem;
  }

  #page_skip {
    width: 120px;
  }
}

/* About Page */
#about img {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover;
}

#about #about-bg {
  position: relative;
  width: 100%;
  height: 100%;
}

#about #about-bg:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.2;
  background: url('../img/SLPA_bg.jpg') repeat-y;
}

#about .about {
  z-index: 1;
  padding: 4rem;
  position: relative;
  padding-top: 20vh !important;
}
#about a {
  color: black;
  text-decoration-style: dotted !important;
}
#about a:hover {
  color: #8a382c;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  #about .about {
    padding-top: 25vh !important;
  }
}

#about .about .block1 {
  background-color: #d9d9d9;
  font-family: 'EB Garamond', Garamond, Georgia, serif;
  padding: 5rem 3.5rem 3.5rem 3.5rem;
}

#about .about .block1 h1 {
  color: #8a382c;
  border-bottom: 3px solid #8a382c;
}

#about .about .block1 p {
  font-size: 1.3rem;
}

#about .about .block2 {
  background-color: #0e1c1d;
  color: white;
  font-family: 'EB Garamond', Garamond, Georgia, serif;
  padding: 5rem 3.5rem 3.5rem 3.5rem;
}

#about .about .block2 h1 {
  color: #e5d49e;
  border-bottom: 3px solid #e5d49e;
}

#about .about .block2 p {
  font-size: 1.3rem;
}

#about .about .block3 {
  background-color: #94866c;
  color: black;
  font-family: 'EB Garamond', Garamond, Georgia, serif;
  padding: 5rem 5rem 3.5rem;
}

#about .about .block3 h1 {
  color: white;
  border-bottom: 3px solid white;
}

#about .about .block3 p {
  font-size: 1.3rem;
}

/* About End */

/* Sample Page */
#sample #sample-bg {
  position: relative;
  width: 100%;
  height: 100%;
}

#sample #sample-bg:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.2;
  background: url('../img/SLPA_bg.jpg') repeat-y;
}

#sample .sample-bg {
  z-index: 1;
  padding: 4rem;
  position: relative;
  padding-top: 20vh !important;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  #sample .sample-bg {
    padding-top: 25vh !important;
  }
}

#sample .sample-bg .sample-body {
  background-color: #d9d9d9;
  color: black;
  font-family: 'EB Garamond', Garamond, Georgia, serif;
  padding: 5rem 3.5rem 3.5rem;
}

#sample .sample-bg .sample-body h1 {
  border-bottom: 3px solid black;
}

#sample .sample-bg .sample-body p {
  font-size: 1.3rem;
}

/* Sample Page End */

/* Archival Team */
#arch-team #team-bg {
  position: relative;
  width: 100%;
  height: 100%;
}

#arch-team #team-bg:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.2;
  background: url('../img/SLPA_bg.jpg') repeat-y;
}

#arch-team .arch-team {
  z-index: 1;
  padding: 4rem;
  position: relative;
  padding-top: 20vh !important;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  #arch-team .arch-team {
    padding-top: 25vh !important;
  }
}

#arch-team .arch-team .team {
  background-color: #0e1c1d;
  /* color: #E5D49E; */
  color: white;
  font-family: 'EB Garamond', Garamond, Georgia, serif;
  padding: 2rem 3rem 3rem;
  border-radius: 0rem 0rem 3rem 3rem;
}

#arch-team .arch-team .team h1,
#arch-team .arch-team .team h2,
#arch-team .arch-team .team h3,
#arch-team .arch-team .team h4,
#arch-team .arch-team .team h5,
#arch-team .arch-team .team h6 {
  color: #e5d49e;
}

#arch-team .arch-team .team h1 {
  border-bottom: 3px solid #e5d49e;
}
#arch-team .arch-team .team p {
  font-size: clamp(1.1rem, 1.2vw + 0.5rem, 1.3rem);
}

.team .container {
  margin-bottom: 2rem;
}

.team .main-heading {
  margin: 0rem 0rem 1.7rem 0rem;
  padding: 1rem 0rem;
  font-weight: bold;
}
.patner-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  /* Or any fixed height you want */
  padding: 27px;
}

.patner-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.team .sub-heading {
  font-weight: bold;
  color: #e5d49e;
}

.team a {
  text-decoration: none;
  color: white;
}

.team a:hover {
  color: #8a382c;
}

.team .image {
  object-fit: cover;
  padding: 0rem 1rem;
}
@media (max-width: 997px) {
  .team .image {
    margin-bottom: 1.5rem;
  }
}

.team .image img {
  max-height: 430px;
  width: 100%;
  border-radius: 0.5rem;
  height: auto;
  object-fit: cover;
  object-position: top;
}

#arch-team .arch-team .team .member-name {
  font-weight: bold;
  color: #e5d49e;
  margin-bottom: 0rem;
}

#arch-team .arch-team .team .member-role {
  margin-bottom: 0rem;
  color: white;
}

#arch-imgs .content {
  position: absolute;
  top: 0;
  left: 0;
}

@media (min-width: 1440px) {
  #arch-team .arch-team .team {
    max-width: 1339px;
  }
}

/* Archival End */

/* Digital Collections */
#digital-collections {
  font-family: 'EB Garamond', Garamond, Georgia, serif;
}

#digital-collections #dc-bg {
  position: relative;
  width: 100%;
  height: 100%;
}

#digital-collections #dc-bg:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  background: url('../img/SLPA_bg.jpg') repeat-y;
}

#digital-collections .dc-content {
  z-index: 1;
  padding: 4rem;
  position: relative;
  padding-top: 20vh !important;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  #digital-collections .dc-content {
    padding-top: 25vh !important;
  }
}

#digital-collections .dc-content .search-bar {
  background-color: #d9d9d9;
  padding: 5rem 3.5rem 3.5rem 3.5rem;
  margin-bottom: 2rem;
}

#digital-collections .dc-content .search-bar .title {
  color: #8a382c;
  border-bottom: 3px solid #8a382c;
}

#digital-collections .dc-content .search-bar .archives {
  background-color: #0e1c1d;
}

#digital-collections .dc-content .search-bar .archives h1 {
  color: #e5d49e;
  text-align: center;
  font-weight: bold;
}

#search-block {
  height: calc(1.5em + 0.75rem + 2px);
}

#search-block .has-search .form-control {
  padding-left: 2.375rem;
}

#search-block .has-search .form-control-feedback {
  position: absolute;
  z-index: 2;
  display: block;
  width: 2.375rem;
  height: 2.375rem;
  line-height: 2.375rem;
  text-align: center;
  pointer-events: none;
  color: #aaa;
}

#search-block .search-btn {
  background-color: #e5d49e;
}

#search-block .search-btn:hover {
  background-color: #e5d49e;
  color: white;
}

.btn-sort {
  color: white;
  background-color: #8a382c;
}

.btn-sort:hover {
  color: white;
  background-color: #8a382c;
}

#dropdowns .dropdown:hover .dropdown-menu {
  display: block;
}

#dropdowns .dropdown-menu {
  margin-top: 0;
}

#digital-collections .archive-dc {
  margin-right: 0 !important;
}

#digital-collections .archive-dc #sidebar {
  background-color: #d9d9d9;
  border-radius: 25px;
  width: 100%;
  padding: 4rem 0 4rem 0;
}

#sidebar .collection,
#archive-titles .collection {
  background: #727c74;
  color: #181818;
  border-radius: 0 25px 25px 0;
}

#sidebar .collection h2 {
  font-weight: bold;
  font-size: 1.6rem;
}

#sidebar .sub-collection h2 {
  font-weight: bold;
  font-size: 1.5rem;
}

#digital-collections .archive-dc #collections {
  background-color: white;
  z-index: 0;
}

#sidebar-smallscreen {
  background-color: white;
  z-index: 0;
}

#sidebar-smallscreen .toggle-titles:hover,
#archive-titles button:hover {
  color: #8a382c;
}

#archive-titles {
  background-color: #d9d9d9;
  display: none;
  transition: height 5s;
}

#collections h1 {
  font-family: 'Cinzel', serif;
  font-weight: bolder;
  border-bottom: 3px solid #8a382c;
}

#collections .card-title,
.card-title h4 {
  background-color: #8a948c;
  border-radius: 25px 25px 0 0;
  font-family: 'EB Garamond', Garamond, Georgia, serif;
}

#collections .card-body {
  background-color: #d9d9d9;
  border-radius: 0 0 25px 25px;
}

#collections .card-body p {
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
}

.button {
  display: none;
}

.fa-caret-down {
  float: right;
  padding-right: 8px;
}

.modal {
  font-size: 1.1rem;
}

/* Digital Collections End*/

/* Contact us  */
#contact_us {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  padding: 4rem 1rem;
  padding-top: 20vh !important;
}

#contact_us::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../img/SLPA_bg.jpg') repeat-y;
  opacity: 0.2;
  z-index: 0;
}

#contact_us .contact-card {
  background-color: #0e1c1d;
  color: white;
  z-index: 1;
  font-family: 'EB Garamond', Garamond, Georgia, serif;
  position: relative;
  max-width: 1400px;
  width: 100%;
  border-radius: 0 0 2rem 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2.5rem 1rem;
}
@media (min-width: 768px) {
  #contact_us .contact-card {
    padding: 2rem;
  }
}

#contact_us .contact-left,
#contact_us .contact-right {
  flex: 1 1 450px;
}

#contact_us .section-title {
  font-weight: 600;

  border-bottom: 2px solid #e5d49e;
  margin-bottom: 2rem;
  padding-bottom: 0.8rem;
  color: #e5d49e;
}

#contact_us .contact-info p {
  text-transform: normal;
  font-size: clamp(1.1rem, 1.2vw + 0.5rem, 1.3rem);
}

#contact_us .contact-info a {
  color: #e5d49e;
  font-weight: 500;
  text-decoration: none;
}

#contact_us .contact-info a:hover {
  text-decoration: underline;
}

#contact_us .highlight {
  font-weight: bold;
  color: #e5d49e;
}

#contact_us .map-container {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

#contact_us .map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 768px) {
  #contact_us {
    padding: 4rem;
    padding-top: 25vh !important;
  }
}
/* Contact us End*/
/* Footer */
#footer {
  background-color: #000;
  color: white;
  font-family: 'EB Garamond', Garamond, Georgia, serif;
  min-height: 15vh;
  min-width: 100vw;
}

#footer .sub-head {
  color: #e5d49e;
  font-weight: bold;
}

#footer .foot-SLPA {
  position: relative;
  padding-bottom: 5px;
}

#footer .foot-SLPA::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  border-bottom: 3.5px solid white;
  content: '';
}

#footer .logo-container {
  max-height: 100px;
  object-fit: contain;
}

#footer .logo {
  max-height: 70%;
}

/* Footer End */

@media (max-width: 1200px) {
  li.nav-item {
    font-size: 1em;
  }

  #header .head .text,
  #header_text.text {
    font-size: 1rem;
  }

  #header .head .links {
    font-weight: bold;
    font-size: 1rem;
  }
}

@media (max-width: 992px) {
  #header .head .links {
    font-weight: bold;
    font-size: 0.7rem;
  }

  /* #about .about .block1 h1 {
        font-size: 1.7rem;
    }

    #about .about .block1 p,
    #sample .sample-bg .sample-body p {
        font-size: 1.3rem;
    }

    #about .about .block2 h1 {
        font-size: 1.7rem;
    }

    #about .about .block2 p {
        font-size: 1.3rem;
    } */

  #about .about .block3 {
    padding: 5rem 3.5rem 3.5rem;
  }

  /* 
    #about .about .block3 h1 {
        font-size: 1.7rem;
    }

    #about .about .block3 p {
        font-size: 1.3rem;
    } */

  #arch-team .arch-team .team {
    padding: 2rem;
  }

  /* #arch-team .arch-team .team h1 {
        font-size: 1.7rem;
    }

    #arch-team .arch-team .team h4 {
        font-size: 1rem;
    } */

  #digital-collections .archive-dc {
    margin-left: 0 !important;
  }

  #digital-collections .dc-content .search-bar .title {
    font-size: 1.8rem;
  }

  #digital-collections .dc-content .search-bar .archives h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  /* #footer .row h4 {
        font-size: 1.2rem;
    }

    #about .about .block1 h1 {
        font-size: 1.5rem;
    }

    #about .about .block1 p,
    #sample .sample-bg .sample-body p {
        font-size: 1.1rem;
    }

    #about .about .block2 h1 {
        font-size: 1.5rem;
    }

    #about .about .block2 p {
        font-size: 1.1rem;
    }

    #about .about .block3 {
        padding: 5rem 2.5rem 3.5rem;
    }

    #about .about .block3 h1 {
        font-size: 1.5rem;
    }

    #about .about .block3 p {
        font-size: 1.1rem;
    }

    #digital-collections .dc-content .search-bar .archives h1 {
        font-size: 1.4rem;
    } */

  .block1,
  .block2,
  .block3,
  .sample-body,
  .search-bar {
    padding: 5rem 2rem 3.5rem 2rem !important;
  }
}

@media (max-width: 576px) {
  #header {
    padding: 0 2rem 0 !important;
  }
  #header_text {
    margin-top: 20vh;
  }
  #header_text h4 p{
    line-height: 1.7rem;
  }

  #about .about,
  #arch-team .arch-team,
  #sample .sample-bg,
  #digital-collections .dc-content {
    padding: 0.75rem;
  }

  #arch-team .arch-team .team {
    padding: 2.5rem 0.5rem;
  }

  #arch-team .arch-team .team .image {
    margin-right: 0 !important;
  }

  /* #arch-team .arch-team .team h1 {
        font-size: 1.4rem;
    } */

  /* #arch-team .arch-team .team h4 {
        font-size: 0.8rem;
    } */

  /* #digital-collections .dc-content .search-bar .title {
        font-size: 1.4rem;
    }

    #digital-collections .dc-content .search-bar .archives h1 {
        font-size: 1rem;
    } */

  #search-block .search-btn {
    margin-left: 0 !important;
    width: 100%;
  }

  #search-block .has-search {
    width: 100% !important;
  }

  #dropdowns {
    justify-content: center !important;
  }

  #collections {
    padding: 1.5rem !important;
  }
}

/* Responsiveness */
