@charset "UTF-8";
@import url(https://fonts.bunny.net/css?family=bitter:400);
@font-face {
  font-family: 'Gagalin-Regular';
  src: url('/fonts/Gagalin-Regular.otf') format('opentype');
  font-weight: normal;
}
html {
  scroll-behavior: smooth;
}
.thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}
img {
  max-width: 100%;
  border-radius: 6px;
}
body {
  background-color: #212121;
  color: white;
  width: 100%;
  margin: 0;
  padding: 0;
  height: 100vh;
  font-size: 1.15rem;
  line-height: 1.5;
  font-family: "Bitter",system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  border-bottom: 5px solid #7b643e;
  z-index: 100;
  background-image:linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/images/background-new.webp');
  background-position: center;
  background-attachment: fixed;
  background-size: cover;

}


/* .grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));  grid-template-rows: auto;
  grid-row: auto;
  gap: 20px;
  max-width: 100rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: absolute;
  z-index: -1;
  height: 75%;
} */
@media (max-width: 768px) { /* Adjust breakpoint as needed */
  .grid-container {
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 15px;
  }

  
}

.item {
  background: #2f7e9c;
  padding: 10px;
}
.item:first-child {
  grid-row: span 5;
  grid-column: span 2;
  background-color: #c27118;
}
.item:nth-child(2) {
  grid-row: span 5;
  grid-column: span 1;
}
.item:nth-child(3) {
  grid-column: 4;
  grid-row-start: 1;
  grid-row-end: 6;
}
.item:nth-child(4) {
  grid-column: 1/span 3;
  grid-row: span 4;
}
.item:nth-child(5) {
  grid-column: span 1;
  grid-row: span 4;
  background-color: #c27118;
}
@media (max-width: 480px) { /* For mobile devices */
  .grid-container {
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    grid-auto-rows: minmax(55px, auto);
    gap: 10px; /* Minimal gap */
    max-width: 90vw;
    height: 60%;
    padding-top: unset;
    padding-bottom: unset;
    margin: auto;
  }
  /* .item:nth-child(5) {
    display: none;
  } */
}

.hero_title {
  font-family: "Gagalin-Regular", sans-serif;
  font-optical-sizing: auto;
  font-size: 8rem;
  word-wrap: break-word;
  margin-bottom: 1.5rem;
  margin-top: -0.5rem;
  transform: rotate(-2deg);
  line-height: 1;
  letter-spacing: 0.05em;
  text-shadow: 5px 10px 0px #000;
}
@media (max-width: 768px) { /* Adjust breakpoint as needed */
  .hero_title {
      font-size: 5rem;
  }
}

.gallery {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}


#countdown p {
  font-size: 2rem;
  font-family: "Montserrat";
  color: #212121;
  font-weight: bold;
  background-color: white;
  padding: 10px;
  border-radius: 5px;
  opacity: 0.9;
  margin-left: 8px;
  margin-right: 8px;
}

.time {
  color: #764406;
}

.thumbnail {
  width: 300px;
  height: auto;
  overflow: hidden;
}



.poster_box {
  display: flex;
  flex-direction: row;
  overflow-y: scroll;
  scroll-snap-type: x mandatory;
}

.poster {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 50px;
  scroll-snap-align: start;
}


main {
  font-family: "Bitter",system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 400;
  color: #eaeaea;
  max-width: 50rem;
  margin: 0 auto;
  padding: 2rem;
}

article {
  font-family: "Rubik";
  font-size: 1.5rem;
}

.button {
  background-color: #cd9222;
  border: none;
  color: whitesmoke;
  text-transform: uppercase;
  padding: 18px 36px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
  margin-top: 10px;
  font-family: inherit;
  text-transform: capitalize;
  border-radius: 2px;
}
.button:hover {
  background-color: #2c4564;
}

.green {
  background-color: #128c7e;
}
.green:hover {
  background-color:#0f6f63;
}

.grey {
  background-color: #e7e7e7; /* Green */
  border: none;
  color: #000000;
}
.grey:hover {
  background-color: #d4d4d4;
}
.grey a{
  color:black !important;
}


button_group {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}

p {
  margin: 1.5rem 0;
  font-size: 1.5rem;
}

.verse {
  border: 1px solid;
  box-shadow: 3.3px 6.6px 6.6px hsla(0, 0%, 0%, 0.4);
  border-radius: 5px;
  padding: 20px 15px;
  margin-top: 15px;
}

/* Prevent long strings from overflowing container */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* Fix line height when title wraps */
h1,
h2,
h3 {
  line-height: 1.1;
}

/* Reduce header size on mobile */
@media only screen and (max-width: 720px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2.1rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1.25rem;
  }
}
.container {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}


.box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid white;
  border-radius: 5px;
  padding: 0.5em 1em;
}

.box-title {
  font-family: "Rubik";
}

@media (max-width: 600px) {
  .container {
    flex-direction: column;
    gap: 20px;
  }
}
iframe {
  width: 100%;
}

footer {
  background-color: #212121;
  color: white;
  margin: 0;
  padding: 1rem;
  text-align: center;
}
footer p {
  font-size: smaller;
}
footer a {
  color: white;
}

/*# sourceMappingURL=style.css.map */
a {
  color: white;
}

a:visited {
  color: white;
}