/* Basic reset */

@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible+Mono:ital,wght@0,200..800;1,200..800&family=Google+Sans+Code:ital,wght@0,300..800;1,300..800&family=Martian+Mono:wght@100..800&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&family=Stick+No+Bills:wght@200..800&display=swap');

/*testing*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-y: visible;
}

.hotfix{
  overflow-y: hidden !important;
}

/* Body styling */

main {
  min-height: calc(100vh - 125px);
}

body {
  font-family: "Martian Mono", sans-serif;
  line-height: 1.6;
}

h3{
  color: #000000;
  font-size: 1.5vw;
  text-align: center;
}

h1 {
  text-align: center;
  font-size: 2vw;
}


@media (max-width: 1080px) {
  h3{
    font-size: large;
    padding-top: 15px;
  }
  body{
    font-size: small;
  }
  h1 {
    text-align: center;
    font-size: 7vw;
  }
}

/* Navbar styling */
.navbar {
  /* display: flex; */
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff00;
  padding-top: 10px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  font-size: large;
  transition: top 0.3s;
  background: linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.0));
}

li {
 list-style-type: none;
}

.navbar .logo {
  /* display: flex; */
  align-items: center;
}

.navbar .logo-image {
  height: 50px;
}

.navbar .nav-links {
  /* display: flex; */
  align-items: center;
}

.navbar .nav-links li {
  margin: 0 15px;
}

.navbar .nav-links a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar .nav-links a:hover {
  color: #B47437;
}

.navbar .social-media a {
  margin-left: 10px;
  color: #000000;
}

.navbar .social-media a:hover {
  color: #B47437;
}

.navbar .admin-link {
  display: none;
}

/* Hamburger menu styles */
.hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 25px;
}

.hamburger-icon span {
  width: 30px;
  height: 4px;
  background-color: #333333;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.white{
  color: #ffffff !important;
  text-align: center;
  margin-bottom: 20px;
 } 

 .black{
  color: #000000 !important;
  text-align: center;
  margin-bottom: 20px;
 } 

 .alignRight {
  float: right;
 }

 .alignCenter {
  float: right;
 }
/* Header styling */
header {
  padding: 0px; /* Added top padding to account for fixed navbar */
  text-align: center;
}

/* Main content styling */
main {
  padding: 0px;
  margin-bottom: 0px;
}

/* Footer styling */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  /* height: 25px; */
  /* margin-top: 20px; */
  /* position: relative;  */
  /* bottom: 0;
  width: 100%;
  left: 0;
  min-height: ; */
}

.spacer {
  display: flex;
  flex: 1;
  max-height: 10vh;
  height: auto;
}

.spacer2 {
  display: flex;
  min-height: 8vh;
  height: calc(12vh - 25px);
}

.spacerContainer{
  flex-direction: column;
  display: flex;
  min-height: 100vh;
}


/* Events section styling */

.events-list {
  margin: 40px;
  display: flex;
  /* grid-template-columns: auto auto auto auto; */
  justify-content: center;

}


.event-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  overflow: hidden;
  width: 100%;
  max-width: 300px;
  transition: transform 0.2s;
  cursor: pointer; /* Make it clear that cards are clickable */
  margin: 0px 10px 0px 10px
}

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

.event-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.event-card .event-content {
  padding: 15px;
}

.event-card .event-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.event-card .event-date {
  color: #777;
  margin-bottom: 10px;
}

.event-card .event-location {
  color: #0056b3;
  margin-bottom: 10px;
}

.event-card .event-description {
  color: #555;
  margin-bottom: 15px;
}

/* Tabbed interface styles */
.admin-tabs {
  display: flex;
  border-bottom: 2px solid #ddd;
  margin-bottom: 20px;
}

.tab-button {
  padding: 10px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.tab-button.active,
.tab-button:hover {
  border-bottom: 2px solid #66643A;
  color: #66643A;
  background-color: #00000017;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Event detail page styles */
.event-details {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.event-details h1 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #0056b3;
}

.event-details .event-meta {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

.event-details .event-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.event-details .event-description {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.event-details .event-images {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.event-details .event-image-thumbnail {
  width: 100%;
  max-width: 150px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Divided Section */

.dividedSection {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../images/canvas.png");
  background-repeat: no-repeat;
  background-color: #66643A;
  background-size: cover;
  padding: 40px;
  color: #fff !important;
}

.contrast {
  color: #fff;
}

form {
  border-radius: 5px;
  background-color: #0b202700;
  padding: 20px;
  margin-top: 10px;
  display: block;
  max-width: 75%;
  justify-content: center;
  margin: auto;
}

input[type=text], select {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #ffffffe5;
}

input[type=password], select {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #ffffffe5;
}

input[type=email], select {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #ffffffe5;
}

input[type=tel] {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #ffffffe5;
}

input[type=submit] {
  background-color: #66643A;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Stick No Bills", "Martian Mono", sans-serif;
  font-weight: 800;
  font-size: x-large;
  display: block;
  margin: auto;
  margin-top: 10px;
}

::placeholder {
  text-align: center;
  font-family: "Martian Mono", sans-serif;
  font-variation-settings:
      "wdth" 75;
}

input[type=text]:focus {
  background-color: #919191e5;

}

input[type=email]:focus {
  background-color: #919191e5;
}

input[type=tel]:focus {
  background-color: #919191e5;
}

  /* SOCIALS */

  .socials a {
    color: #000000;
  }
  .socials a:hover {
    color: #66643A;
  }

  /* HERO */

  .heroImage {
    background-image: linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0)), url("../images/Trucks.jpeg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 100%;
    padding-top: 0px;
    margin-top: 0px;
    width: 100%;
     }

  .heroImageClear {
    background-image: linear-gradient(rgba(243, 243, 243, 0.75), rgba(255, 255, 255, 0.671)), url("../images/Planes.jpeg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 100%;
    padding-top: 0px;
    margin-top: 0px;
    width: 100%;
    margin-bottom: -20px;

  }

  .heroEmpty {
    background-image: linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255)), url("../images/Planes.jpeg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 100%;
    padding-top: 0px;
    margin-top: 40px;
    width: 100%;
    margin-bottom: 40px;

  }

  .hero4 {
    background-image: linear-gradient(rgba(255, 255, 255, 0.80), rgba(255, 255, 255, 0.2)), url("../images/Walking.jpeg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 100%;
    padding-top: 0px;
    margin-top: 0px;
    width: 100%;
    padding-bottom: 0px;

  }

  .hero5 {
    background-image: linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.2)), url("../images/FirstdayatAnaconda.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 100%;
    padding-top: 0px;
    margin-top: 0px;
    width: 100%;
    margin-bottom: 0px;
  }
 /* Container holding the image and the text */

 /* .container-hero {
   position: relative;
   text-align: center;
   color: white;
   background-image: url("../images/Trucks.jpeg");
   background background-repeat: ;
 } */

 /* Centered text and blur */
 .centered {
   background-position: center center;
   backdrop-filter: blur(15px);
   border-radius: 15px;
   padding: 25px;
   position: relative;
   width: 80%;
   margin: auto;
 }

 @media (max-width:1080px) {
  .centered {

    padding: 5px;
    width: 100%;
  }
 }

  .centeredNoBlur {
    border-radius: 15px;
    position: relative;
    margin: auto;
    color: white;
    text-align: center;
}

 .heroContent {
   padding: 20vw;
   padding-top: 20vw;
   position: relative;
   margin: auto;
 }

 .heroContent2 {
   padding: 15vw;
   padding-top: 10vw;
   position: relative;
   margin: auto;
 }

 .heroContent3 {
  padding: 15vw;
  padding-top: 10vw;
  position: relative;
  margin: auto;
  background-image: url("../images/steps.svg");
  background-position: bottom;
  background-repeat: repeat-x;
}
@media (max-width:1080px) {
  .heroContent3 {
    background-image: none;
    font-size: large;
  }
}

 .buffer {
   padding-top: 10vw !important;
 }

 @media (max-width:768px) {
   .centered{
     text-align: center;
   }
 }

 /*GENERAL STYLING */

 .text {
align-self: center;
padding: 10%;
}


.image {
object-fit: cover;
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
position: relative;
/* max-height: 40vw; */
padding: 20px;
/* display: flex; */
align-self: center;

}

.top{
  margin-top: 20px;
}

.topPadding{
  padding-top: 40px;
}

@media (min-width: 1080px) {
  .image {
width: 100%;
  }
}

@media (max-width: 1080px) {
  .image {
 max-width: 100%;
  }
}

.paragraph {
display: flex;

}

@media (min-width:1080px) {
  .navbar {
    display: flex;
  }
  .navbar .logo {
    display: flex;
  }
  .navbar .nav-links {
    display: flex;
  }
}

@media (max-width: 1080px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar .logo {
    margin-bottom: 10px;
    display: none;
  }

  .hamburger-menu {
    display: flex;
    margin-bottom: 10px;
    margin-left: 10px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
  }

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

  .nav-links li {
    margin: 10px 0;
  }

  .nav-links li.social-media {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .nav-links li.social-media a {
    margin: 0 5px;
  }

  /* Hamburger icon animation */
  .hamburger-menu.active .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(7.5px, 7.5px);
  }

  .hamburger-menu.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
  }

  .hamburger-menu.active .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7.5px, -7.5px);
  }
}

/* Custom Containers */

.gridContainer {
  display: grid;
  grid-template-columns: auto auto;
  padding: 10px;
  align-content: center;
  justify-content: space-between;
  justify-items: stretch;
}
.gridContainer .gridLarge {
  padding: 0px;
  text-align: center;
  align-content: center;
  align-self: stretch;
 }
.gridContainer .gridSmall{
  padding: 10px;
  text-align: center;
  align-self: stretch;
  background-repeat: no-repeat;
  background-position: cover;
  background-size: cover;
 }
.gridContainer .gridMed{
  padding: 10px;
  text-align: center;
  align-content: center;
 }
.gridMajLeft{
  grid-template-columns: 2fr 1fr;
  display: grid;
  padding: 10px;
  align-content: center;
  justify-content: space-evenly;
  justify-items: stretch;
}
.gridMajLeftFixed{
  grid-template-columns: 2fr 1fr;
  display: grid;
  padding: 10px;
  align-content: center;
  justify-content: space-evenly;
  justify-items: stretch;
}
.gridMajRight{
  grid-template-columns: 1fr 2fr;
  display: grid;
  padding: 10px;
  align-content: center;
  justify-content: space-evenly;
  justify-items: stretch;
}
.gridEqual{
  /* grid-template-columns: 1fr 1fr; */
  grid-template-columns: auto auto;
  display: grid;
  padding: 10px;
  align-content: center;
  justify-content: space-evenly;
  justify-items: stretch;
  column-gap: 1vw;
}
.gridContainer .grid2{
  columns: 2;
}
.grid3{
  columns: 3;
  grid-template-columns: auto auto auto !important;
  column-gap: 1vw;
}
.gridContainer .grid4{
  columns: 4;
}
.gridContainer .grid5{
  columns: 5;
}
.gridContainer .fill{
  grid-area: fill;
}

.gridImage{
  justify-self: center;
  justify-items: cover;
  background-repeat: no-repeat;
  max-width: 33.3vw;
}

.grid1{
  justify-self: center;
  justify-items: cover;
  background-repeat: no-repeat;
  grid-template-columns: auto !important;
}

.gridImage img{
  max-width: 25vw;
  height: auto;
}

@media (max-width:1080px){
  .gridContainer {
    display: grid;
    grid-template-columns: auto;
    grid-template-areas: fill;
    text-align: center;
  }
  .gridMajLeft {
    display: grid;
    grid-template-columns: auto;
    grid-template-areas: fill;
    text-align: center;
  }
  .gridMajLeftFixed {
    display: grid;
    grid-template-areas: fill;
    text-align: center;
    padding-top: 1vh;
  }
  .gridMajRight {
    display: grid;
    grid-template-columns: auto;
    grid-template-areas: fill;
    text-align: center;
  }
  .gridEqual {
    display: grid;
    grid-template-columns: auto;
    text-align: center;
    padding: 0;
  }
  .grid3{
    grid-template-columns: auto !important;
    grid-template-areas: fill;
    text-align: center;
    row-gap: 1vh;
    justify-content: center;
  }
  .gridImage {
    max-width: 85vw !important;
    height: auto;
    padding: 0;
  }
  .gridMed{
    padding: 10px;
    text-align: center;
    align-content: center;
    max-width: 100vw;
  }
}

.content {
  padding: 0;
  justify-content: space-between;

}

.second{
  padding-bottom: 8vw;
}

.bottom{
padding-bottom: 2vh
}

.squeeze{
  margin-left: 100px;
  margin-right: 100px;
}

/* FONTS */

.stick-no-bills-stencil {
  font-family: "Stick No Bills", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.google-sans-code-readable-mono{
  font-family: "Google Sans Code", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.atkinson-hyperlegible-mono {
  font-family: "Atkinson Hyperlegible Mono", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.space-mono-regular {
  font-family: "Space Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

.space-mono-bold {
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-style: normal;
}

.space-mono-regular-italic {
  font-family: "Space Mono", monospace;
  font-weight: 400;
  font-style: italic;
}

.space-mono-bold-italic {
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-style: italic;
}

.martian-mono {
  font-family: "Martian Mono", monospace;
  font-optical-sizing: auto;
  /*100 - 800 type weight 400 reg */
  font-weight: 400;
  font-style: normal;
  /*75 - 112.5 type weight 100 reg */
  font-variation-settings:
    "wdth" 100;
}
@font-face {
  font-family: Operation;
  src: url("./fonts/operation-font/Operation.ttf");
}
@font-face {
  font-family: DinSchablonierschrift;
  src: url("./fonts/din-schablonierschrift-font/DinSchablonierschrift-ARBA.ttf");
}

.compact{
  font-variation-settings:
  "wdth" 75;
  font-weight: 800;
}


.admin-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.admin-form {
  margin-bottom: 20px;
}

.admin-form label {
  display: block;
  margin-bottom: 5px;
}

.admin-form input,
.admin-form textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* .admin-form button {
  padding: 10px 15px;
  background-color: #0056b3;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.admin-form button:hover {
  background-color: #003f8a;
} */

.events-list {
  margin-top: 20px;
}

.event-item {
  background-color: #f8f9fa;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.event-item button {
  background-color: #dc3545;
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
}

.event-item button:hover {
  background-color: #c82333;
}

.search-filter-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .search-filter-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.search-box {
  position: relative;
  flex: 1;
  min-width: 250px;
}

.search-box input {
  width: 100%;
  padding: 12px 40px 12px 15px;
  border: 2px solid #ccc;
  border-radius: 25px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.search-box input:focus {
  outline: none;
  border-color: #66643A;
}

.search-box i.fa-search {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}

.filter-menu {
  position: relative;
}

.filter-btn {
  background-color: #66643A;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s;
}

.filter-btn:hover {
  background-color: #B47437;
}

.filter-options {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 10px;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  min-width: 250px;
  z-index: 1000;
}

.filter-options.show {
  display: block;
}

.filter-group {
  margin-bottom: 15px;
}

.filter-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #333;
}

.filter-group select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: white;
}

.clear-filters {
  background-color: #f5f5f5;
  color: #666;
  border: 1px solid #ddd;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s;
}

.clear-filters:hover {
  background-color: #e0e0e0;
}

.loading {
  text-align: center;
  padding: 20px;
  font-size: 18px;
  color: #666;
  display: block;
}

.loading.hidden {
  display: none;
}

.no-results {
  text-align: center;
  padding: 40px;
  font-size: 18px;
  color: #999;
  display: none;
}

#exhibits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.exhibit-item {
  background-color: #f8f9fa;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
  display: grid;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

/* .exhibit-item h2{

}
.exhibit-item p{

}
.exhibit-item a{

} */


@media (max-width:768px){
.gridContainer {
  display: grid;
  grid-template-columns: auto;
  grid-template-areas: fill;
}
.squeeze{
  margin-left: 0px;
  margin-right: 0px;
}
}

@media (min-width: 768px){
  .tagline {
      font-size: 5vw;
      color: #0b2027;
      line-height: 5vw;
  }
  .caption {
      font-size: 1vw;
      color: #384449;
      padding-top: 1vw;
  }
  .basic {
      font-size: 1.2vw;
      color: #0B2027;
      text-align: center;
      margin-bottom: 1vw;
      font-weight: 600;
  }
}

.title {
  color: #ffffff;
  font-size: 2vw;
  text-align: center;
}
.basic2 {
  font-size: 1vw;
  color: #ffffff;
  padding-top: 1vw;
  font-weight: 500;
}

/* mobile*/
@media (max-width:768px) {
  .tagline {
      font-size: 10vw !important;
      color: #0b2027;
  }
  .caption {
      font-size: small;
      color: #384449;
  }
  .basic {
      font-size: small;
  }
  .title {
      font-size: 4vw;
  }
  .basic2 {
      font-size: x-small;
      padding-top: 1vw;
  }
  .centered {
    font-size: small;
  }
}

/*Buttons */

/*desktop*/
@media (min-width:768px)  {
  button {

      border: 2px;
      border-radius: 15px;
      border-color: #0b2027;


  }

}

.primaryButton {
  background-color: #66643A;
  color: #DBDBDB;
  width: auto;
  margin: auto;
  display: flex;
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  font-weight: 800;
  font-size: 5vw;
  font-family: "Stick No Bills", "Martian Mono", sans-serif;
  
}

.primaryButton:hover {
  background-color: #B47437;
}

.secondaryButton {
  background-color: #0b2027;
  color: #ffffff;
  padding: 10px;
  font-weight: 500;
  font-size: 150%;
  text-align: center;
  align-self: center;
  min-width: auto;
  margin: auto;
  margin-top: 20px;
  font-family: "Martian Mono", sans-serif;
}
.secondaryButton:hover {
  background-color: #B47437;
}

.dangerButton {
  background-color: #DC3545;
  color: #DBDBDB;
  width: auto;
  /* height: 7vw; */
  margin: auto;
  align-self: center;
  display: flex;
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  font-family: "Martian Mono", sans-serif;
  font-weight: 500;
  font-size: 150%;
}

.dangerButton:hover {
  background-color: #661019;
}

/* mobile*/
@media (max-width:768px) {
  button {
      border: 2px;
      border-radius: 10px;
      border-color: #0b2027;
      font-family: "Stick No Bills", "Martian Mono", sans-serif;
      font-weight: 800;
      font-size: large;
      max-width: 75%;

  }
}

.basicButton {
  max-width: 25vw;
  text-align: center;
  margin: auto;
  background-color: #B47437 !important;
  border-radius: 15px;
}

.basicButton:hover {
  background-color: #0b2027 !important;
}

.center {
  max-width: 25vw;
  text-align: center;
  margin: auto;
}

/* GALLERY ITEMS */

.gallery {
  display: grid;
  grid-template-columns: auto auto auto auto;
  justify-content: flex-start;
  object-fit: cover;
}

.galleryItem{
  max-width: 150px;
  max-height: 150px;
  margin: 5px;
  object-position: center;
  object-fit: cover;
}

.galleryItem img {
  max-width: 150px;
  max-height: 150px;
  object-fit: cover;
}

.galleryImage {
  width: 150px;
  height: 150px;
}

.gallery .column {
  flex: 100%;
  max-width: 100%;
}

@media (max-width: 768px) {
  .gallery {
      grid-template-columns: auto auto;
  }
}

.galleryItem:hover {
  border: 3px solid #00000000;
}

.volunteer {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-image: linear-gradient(rgba(11, 32, 39, 0.90), rgba(11, 32, 39, 0.25)), url("../images/Flag close.webp");
  text-align: center;
  color: #DBDBDB;
  font-size: 2.5vw;
  align-content: center;
  align-self: stretch;
  justify-self: stretch;
  margin: auto;
  grid-auto-flow: column;
  min-width: 40vw;
  min-height: 40vw;
}

@media (max-width: 1080px) {
  .volunteer {
      justify-self: center;
      margin: auto;
  }
}

.sponsor {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-image: linear-gradient(rgba(11, 32, 39, 0.90), rgba(11, 32, 39, 0.25)), url("../images/unsplash-image-tree.webp");
  text-align: center;
  color: #DBDBDB;
  font-size: 2.5vw;
  align-content: center;
  align-self: stretch;
  justify-self: stretch;
  margin: auto;
  grid-auto-flow: column;
  min-width: 40vw;
  min-height: 40vw;

}

@media (max-width: 768px) {
  .sponsor {
      justify-self: center;
      margin: auto;

  }
}

.image100 {
  background-image: linear-gradient(#001116d8, #000c0f18), url("../images/100 image.jpeg");
}
.image500 {
  background-image: linear-gradient(#001116d8, #000c0f18), url("../images/500 image.jpeg");
}
.image5000 {
  background-image: linear-gradient(#001116d8, #000c0f18), url("../images/5000 image.jpeg");
}

.donateContent{
  padding: 100px;
}
@media (max-width:1080px) {
  .donateContent{
    padding: 20vh 15vw;
  }
}

/* ANIMATION */

.jello-horizontal:hover {
  animation:jello-horizontal .9s both
}

.shake-top{animation:shake-top .8s cubic-bezier(.455,.03,.515,.955) .2s both}

/* .shake-top:hover{
  animation:0s;
} */

@keyframes jello-horizontal{0%{transform:scale3d(1,1,1)}30%{transform:scale3d(1.25,.75,1)}40%{transform:scale3d(.75,1.25,1)}50%{transform:scale3d(1.15,.85,1)}65%{transform:scale3d(.95,1.05,1)}75%{transform:scale3d(1.05,.95,1)}100%{transform:scale3d(1,1,1)}}

@keyframes shake-top{0%,100%{transform:rotate(0deg);transform-origin:50% 0}10%{transform:rotate(2deg)}20%,40%,60%{transform:rotate(-4deg)}30%,50%,70%{transform:rotate(4deg)}80%{transform:rotate(-2deg)}90%{transform:rotate(2deg)}}



/*DROPDOWN MENU*/


.dropdown {
  display: inline-block;
  position: relative;
}

.dropdown-toggle{
  background-color:#ffffff00;
  font-size: large;
  font-weight: 500;
  font-family: "Martian Mono", sans-serif;
  max-width: 100% !important;
}

.dropdown-toggle:hover{
  color: #B47437;
}

.dropdown-content {
  display: none;
  position: absolute;
  box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.4);
  background-color: #ffffffa1;
  font-size: small;
  padding: 5px;
  width: 200%;
  border-radius: 5px;
  text-align: center;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media (max-width: 768px) {
  .dropdown-content {
    width: 150%;
    background-color: white;
  }
}


/*LOGIN FORM*/

.login-form{
display: grid;
}

/*DONATION FORM*/

.customDonation{
  margin-top: 20px;
  text-align: left;
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../images/canvas.png");
  color: white;
}

.currencyInput{
  border: 0;
  padding-left: 3px;
  margin-left: 1px;
}

 .donateCenter{
  text-align: center;
  padding-top: 5px;
 }

 a{
  text-decoration: none;
  color: inherit;
  cursor: pointer;
 }
 
 a:-webkit-any-link{
 text-decoration: none;
 }

 a:hover{
  text-decoration: none;
  color: #B47437;
  /* background-color: #0000003d; */
 }


/*CONTACT FORM*/

.contactForm{
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}

.contactForm textarea{
  min-height: 25vh;
  resize: none;
}


/*RAFFLE*/

.raffleItem {
  background-image: linear-gradient(#001116d8, #000c0f18), url("../images/Raffle\ Gatlin\ gun.png");
  background-repeat: no-repeat;
  background-position: center;
  background-color: #0056b3;
}

/*meuseum*/

@media (max-width:1080px) {
    .memberships{
  text-align: left;

  }

  .memberships p{
    line-height: 2vh;
    padding: 0;
    margin-top: 2vh;
    
    /* padding-right: 25px; */
  }

  .memberships div{
    margin-top: -35px;
  }
}


/*CART*/

.cart{
  text-align: center;
  display: grid;
}

.mobileOnly{
  display: none;
}

@media (max-width: 1080px) {
  .mobileOnly{
    display: inherit;
  }
}


/*EXHBITS*/

.exhibit-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.exhibit-title {
  font-size: 2em;
  margin-bottom: 10px;
}

.exhibit-description,
.exhibit-content {
  margin-bottom: 20px;
}

.exhibit-content {
  min-height: 100px;
}

.exhibit-content img {
  max-width: 100%;
  height: auto;
}

.exhibit-images {
  margin: 20px 0;
}

.exhibit-images img {
  max-width: 100%;
  height: auto;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.exhibit-documents {
  margin: 20px 0;
}

.exhibit-document {
  display: flex;
  align-items: center;
  padding: 10px;
  margin: 10px 0;
  background-color: #f5f5f5;
  border-radius: 4px;
}

.exhibit-document i {
  margin-right: 10px;
  font-size: 24px;
}

.exhibit-document a {
  color: #0066cc;
  text-decoration: none;
}

.exhibit-document a:hover {
  text-decoration: underline;
}

.exhibit-qr-code {
  margin-top: 20px;
  text-align: center;
}

.exhibit-qr-code img {
  max-width: 100%;
  height: auto;
}





.exhibit-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  overflow: hidden;
  width: 100%;
  max-width: 300px;
  transition: transform 0.2s;
  cursor: pointer; /* Make it clear that cards are clickable */
}

.exhibit-item:hover {
  transform: translateY(-5px);
  color: #66643A;
}

.exhibit-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  overflow-x: hidden;
  overflow-y: visible;
}

.exhibit-item a:hover {
  color: #66643A !important;
}


.exhibit-description {
  /* color: #555; */
  margin-bottom: 15px;
  text-overflow: ellipsis;
  overflow: hidden;
  /* white-space: pre; */
}

/* .exhibit-description a:hover {
  color: #444325;
} */

.exhibit-caption {
  margin-bottom: 15px;
}

/* .exhibit-caption:hover {
  color: #66643A;
} */
