
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

.bottom-bar {
  display: none;
}

.zoom1 {
   color: white;
   transition: scale 1s;
}

.zoom1:hover {
   scale: 1.05;
   z-index: 99;
}

.center {
   text-align: center;
}

.left {
   text-align: left;
}

.right {
   text-align: right;
}



body {
   background-color: black;
   color: white;
   width: 100%;
   font-family: 'Amatic SC';
}



#fasier-gold-deer-gold-container {
   border: 2px solid gold;
   background-color:black;
   color: gold;
   width:  100%;
   height: 10vh;
   margin: 0px 20px;
   padding: 40px 20px;
   position: relative;
   display: flex;
   flex-flow: row wrap;
   justify-content: space-around;
}


.title-levels {
   border: 1px solid white;
   border-radius: 6px;
   color: gold;
   width: 100%;
   text-align: center;
   font-family: 'Amatic SC';
   margin: 0px 30px;
   
}

#may-1st {
   /* border: 1px solid red; */
   
   padding: 0px;
}





/* Existing styles for gallery */
#fotos-container {
  border: 1px solid white;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 20px;
  margin: 30px;
}

.photo-card {
  flex: 1 1 20%;
  max-width:180px;
  padding: 10px;
  /* border: 1px solid white; */
  cursor: pointer;
  transition: transform 0.2s ease;
  background-color: black;
}

.photo-card:hover {
  transform: scale(1.05);
  /* box-shadow: 0 0px 12px 2px white; */
}

.gold-fotos {
  border: 1px solid gold;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  padding: 2px;
  /* transition: transform 0.6s ease; */
}

.gold-fotos:hover {
  transform: scale(1.05);
}










#info-table {
   width: 50vw;
   margin: 20px auto;
   font-size: 1.5em
}

tr, td {
   border: 1px solid white;
   padding:10px;
}

.email-link {
   color: gold;
   text-decoration: none;
   transition: transform 0.6s ease;

}

email-link:hover {
   transform: scale(1.3);
}


.description-box {
  max-height: 60px;        /* About 2–3 lines */
  overflow-y: auto; 
  width: 20vw;       /* Enables vertical scroll */
  padding: 5px;
  border: 1px solid red;
  border-radius: 4px;
  background-color: black;
  color: white;
  font-size: 14px;
}

.offer {
  color: gold;
}




/* MODAL STYLES */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80%;
  animation: zoom 0.3s;
}

@keyframes zoom {
  from {transform:scale(0.8);}
  to {transform:scale(1);}
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover {
  color: gold;
}

#caption {
  margin: auto;
  display: block;
  text-align: center;
  color: white;
  padding: 10px 0;
  font-size: 18px;
}






/* ksudhxfksjzxbdfjkszdbxljkfzlxjkhvljkszx */

/* MOBILE HERO GALLERY */
#mobile-gallery {
  display: none; /* default hidden on desktop, visible on mobile via media queries */
  width: 100%;
  max-width: 100%;
  background-color: black;
  color: white;
}

.hero-container {
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
  padding: 20px 10px;
}

.hero-container img {
  width: 100%;
  max-height: 60vh;
  object-fit: cover;
  border: 2px solid gold;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.thumb-container {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  padding: 10px 0;
}

.thumb-container::-webkit-scrollbar {
  display: none; /* hide scroll bar on mobile */
}

.thumb {
  flex: 0 0 auto;
  width: 80px;
  height: 15vh;
  object-fit: cover;
  border: 2px solid white;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.thumb:hover {
  transform: scale(1.1);
  border-color: gold;
}

/* ACTIVE THUMBNAIL BORDER */
.thumb.active {
  border-color: gold;
}

/* SHOW MOBILE GALLERY ONLY ON PHONES/TABLETS */
@media (max-width: 768px) {
  #mobile-gallery {
    display: block;
  }

  #fotos-container {
    display: none; /* hide desktop gallery */
  }
}








