
body {
    margin: 0;
    font-family: sans-serif;
    background: rgb(166,178, 188);
    color: #ffffff;
    min-height: 100vh;
}

.main-content {
    background: rgb(166,178, 188);
}


.top-container {
  background-color: rgb(166,178, 188);
  padding: 20px;
  text-align: center;
}

.header {
  padding: 10px 10px;
  color: #f1f1f1;
}

.content {
  padding: 16px;
}


.navbar {
  gap: 20px;
}


.band-image {
  margin: auto;
  display: block;
  width: 100%;
  max-width: 1000px;
  height: auto;
  z-index: 1500 !important;
  position: relative;
}

.small-logo {
  padding-right: 0px;
}

@media (min-width: 698px) {
    .small-logo {
        padding-right: 140px;
      }
    }

@media (max-width: 1000px) {
  .band-image {
    width: 100%;
    z-index: 0 !important;
  }
  
}

@media (min-width: 2000px) {
  .band-image {
    width: 40%;
  }
}





a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease, transform 0.2s ease;
}

a:hover {
  color: #f0f0f0;
  transform: scale(1.2);
}

.custom-toggler {
  transform: scale(1.5);
  padding: 0.5rem;
  margin-left: 20px;
  margin-bottom: 20px;
}


.site-footer {
    font-size: 0.9rem;
    background-color: rgb(13, 39, 59);
    bottom: 0;
    padding-top: 40px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
    width: 100%;
}

.site-footer p {
    text-align: center;
}

.update {
    margin-top: 200px;
    margin-left: 20px;
    margin-right: 20px;
    padding: 20px;
}

hr {
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  height: 4px;
  background-color: #000000;
  color:#000000;
}

.tour {
    border-radius: 25px;
    padding-left: 25px;
    padding-right: 20px;
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: auto;
    margin-bottom: 20px;
    padding-top: 25px;
    padding-bottom: 20px;
    background-color: rgb(48, 56, 64);
}

.slider {
    padding-right: 20px;
    padding-left: 20px;
}

.img-slider {
    height: 300px; 
    width: 300px;
    border-radius: 20px;
    object-fit: cover;
    margin: auto;
    display: block;
}

@media (min-width: 1000px) {
  .img-slider {
    width: 600px;
    height: 600px;
  }
}

.big-title {
    font-size: 6em;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: 'Headline Gothic ATF', sans-serif;
}

.title {
  font-family: 'Headline Gothic ATF', sans-serif;
}

.polaroid {
  margin: auto; 
  width: fit-content;
  height: auto;
  margin-bottom: none !important;
  background: white;
  padding: 10px 10px 40px; /* extra space at the bottom */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: inline-block;
  position: absolute;
}


p {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2em;
}

.nav-link {
  color: white !important;
  transition: color 0.5s ease;
}

.nav-link:hover {
  color: lightgrey !important;
}

.nav-text {
  padding-left: 100px;
}
.nav-icons {
  padding-right: 100px;
}

.nav-icon {
  width: 30px;
}

.about-text {
  font-size: 1.2em; 
  padding-left: 20px;
}

@media (max-width: 991.98px) {
  .nav-text {
    font-size: 5rem; /* Adjust as needed */
    padding-left: 10px;
    text-align: center;
  }
  .nav-icons {
    display: flex;
    justify-content: center;
    padding-left: 110px;

  }
  .nav-icon {
  width: 50px;
  }

  .about-text {
    font-size: 2em; 
  }
}






/* Scroll Fade Animation */
.scroll-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}


/* overlay */

.img-container {
  position: relative;
  margin-bottom: 20px;
}

.image {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: rgb(13, 39, 59, 0.7);
}

.container:hover .overlay {
  opacity: 1;
}

.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

/* prevent dragging */

img {
  pointer-events: none;
  user-drag: none;
  -webkit-user-drag: none; /* Safari/Chrome */
}

/* Responsive Design */
