
@keyframes heartbeat {
  0% {
    transform: scale(.9);
  }
  14% {
    transform: scale(1.05);
  }
  28% {
    transform: scale(.9);
  }
  42% {
    transform: scale(1.1);
  }
  70% {
    transform: scale(.9);
  }
  100% {
    transform: scale(10);
  }
}

/* Adjustments for mobile to keep the layout flat */
@media (max-width: 768px) {

  .overlay {
    padding: 35px 35px; /* Reduced padding */  
}
}

/* Overlay Styling */
.overlay {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255, 0.85);
  position: fixed; /* Changed from absolute to fixed */
  top: 0;
  left: 0;
  width: 100%;
  padding: 35px 35px; /* Reduced padding */
  z-index: 100;
  box-sizing: border-box;
  height: 100px; /* Reduced height for a smaller overlay */
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loading-logo {
  animation: heartbeat 2s infinite;
  padding-right: 115px;
}

.loading-content {
  font-size: 3rem;
  font-family: "Anta", sans-serif;
  text-align: center;
}

.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Logo container and logo */
.logo-container {
  flex: 1;
}

.logo {
  transition: transform 0.5s;
  height: 30px; /* Reduced logo size for a more compact look */
}

/* Hover zoom effect for images */
.logo:hover {
  transition: transform 0.3s;
  -webkit-transform: scale(1.2) rotate(0.03deg);
  transform: scale(1.3) rotate(0.03deg);
  z-index: 10;



}

/* Navigation container */
.nav-container {
  flex: 2;
  text-align: right;
}

/* Navigation list styling */
.nav-list {
  list-style-type: none;
  display: flex;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  font-family: "Anta", sans-serif;
}

.nav-list li {
  display: inline-block;

}

.nav-list a {
  text-decoration: none;
  color: black;
  font-size: 15px; /* Reduced font size for desktop */
  font-weight: bold;
  transition: color 0.3s ease-in-out;
  padding-left: 30px;
}

.nav-list a:hover {
  color: grey;
}


.nav-icon {
  width: 20px;
  height: 20px;

}

/* Disable scrolling when interacting with the overlay */
body {
  overflow-x: hidden;
}

body {
  background-color: white;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Disable horizontal scrolling */
  cursor: default;
  font-family: "Anta", sans-serif;
}

/* Gallery Styling */
.gallery {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns for images */
  gap: 5px;
  padding: 5px;
}

/* Individual Image Styling for Aspect Ratio */
.gallery .albumCover {
  width: 100%;
  height: 100%;
  aspect-ratio: 5/ 5; /* 4:5 aspect ratio */
  object-fit: cover;
  -webkit-transition: -webkit-transform 1.5s;
  transition: transform 1.5s;
  transition: filter 1.5s;
  background-size: cover;
  filter: brightness(95%);
}


.gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 5;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: filter 1.5s;
  filter: brightness(85%) saturate(70%);
}


.gallery  {
  width: 100%;
  height: 100%;

}


/* Fade-in effect on load */
.gallery a {
  opacity: 0;
  transform: translateY(10px);
}

.margin-content {
  margin-top: 100px;
}


.page-content {
  /* max-width: 1200px; */
  margin: 100px auto 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 1rem;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 2fr 1fr; /* 1/3 and 2/3 */
  gap: 2rem;
  font-family: Helvetica, arial, sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.3em;
  font-size: 2vw;
  text-transform: none;
  text-decoration: none;
}


.box {
}

.mule-repeat {
    background-image: url(/assets/mule_character.jpg);
    background-repeat: repeat;
    background-size: 100px 100px;
}


.title {
  font-size: 3vw;
  margin-bottom: 1vw;
  font-weight: 600;

}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover zoom effect for images */
.gallery img:hover {
  transition: transform 4s;
  -webkit-transform: scale(1.025) rotate(0.01deg);
  transform: scale(1.025) rotate(0.01deg);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  filter: brightness(100%) saturate(95%);
  z-index: 10;

  transition: filter .15s ease-in;
  -moz-transition: filter .15s ease-in;
  -webkit-transition: filter .15s ease-in;


}

/* Mobile Adjustments
@media (max-width: 768px) {
  .overlay {
    height: 100px;
    padding: 3px 10px;
  }

  .logo {
    height: 49px;
    margin-left: 15px;
  }

  .nav-list {
    gap: 8px;
  }

  .nav-list a {
    font-size: 8px;
    padding: 2px 5px;
  }
  .gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
  }
}
*/



/* Adjustments for mobile to keep the layout flat */
@media (max-width: 768px) {

  .overlay {
    padding: 10px 15px;
  }

  .nav-list a {
    font-size: 15px;
    padding-left: 10px;
    padding-right: 5px;
  }

  .gallery {
    margin-top: 100px;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 4 columns for images */
    gap: 5px;
    padding: 5px;
  }
  
}