



@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700;800;900&family=Young+Serif&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;500;600;700;800&display=swap');






.navbar-custom{
  background-color: #290349;
}
/* start: Gallery Section */




h3{
  padding-top:10px;
  text-align: center;
}

h2{
  color: #efefef;
  text-align: center;
  
}

h1{
  color: #5b39ca;
  font-family: 'Times New Roman', Times, serif;
  
}

p{
  color: #5b39ca;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.imgleft{

  padding-left: 15px;
}

.fading-image {
  position: fixed;
  top: 100%;
  left: 10%;
  transform: translate(0%, -100%);
  width: 300px;
  opacity: 3;
  transition: opacity 0s ease;
  z-index: 1;
}



body1{
margin-top: 300px;
background-color: #040017;
}

#myBtn {
display: none; /* Hidden by default */
position: fixed; /* Fixed/sticky position */
/* Place the button 30px from the right */
z-index: 99; /* Make sure it does not overlap */
border: none; /* Remove borders */
outline: none; /* Remove outline */
background-color: rgb(0, 0, 0); /* Set a background color */
color: white; /* Text color */
cursor: pointer; /* Add a mouse pointer on hover */
padding: 15px; /* Some padding */
border-radius: 5px; /* Rounded corners */
font-size: 18px; /* Increase font size */
}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font: inherit;
}


header {
    font-family: 'Urbanist', sans-serif;
    background-color:#040017;   
    text-align: center;
    color: #fff;
    padding-right: 20%;
    padding-left: 20%;
    padding-bottom: 10%;
}




/* -------------- */
/* DEFAULT VALUES */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito", sans-serif;
}

html {
  scroll-behavior: smooth;
}



body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url('../images/wallll.jpg');
  background-size: 100%;
  padding-top: 70px;
 
}

/* ------ */
/* INTRO */

#intro {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  padding: 50px;
  min-height: 100dvh;
  overflow: hidden;
}

.info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px 50px;
}

.info h1 {
  font-family: "Young Serif", serif;
  text-align: center;
  font-size: 3rem;
}

.info p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.split-space {
  display: flex;
  flex-direction: row;
}

.space {
  max-width: 100%;
  width: 95%;
  border-radius: 20px;
  margin-left: 15px;
  border: 7.5px solid rgb(241, 237, 243);
}

.beer:nth-child(2) {
  transform: translateY(-1.5rem);
}

.button:after,
.close-btn:after {
  background: #fff;
}

.explore,
.explore:before,
.close-btn,
.close-btn:before {
  background: #4d0d9b;
  background: linear-gradient(
    45deg,
    rgb(77, 13, 155) 0%,
    rgba(255, 87, 34, 1) 100%
  );
  background: -moz-linear-gradient(
    45deg,
    rgb(77, 13, 155) 0%,
    #ff5722 100%
  );
  background: -webkit-linear-gradient(
    45deg,
    rgb(77, 13, 155) 0%,
    rgba(255, 87, 34, 1) 100%
  );
}

.button {
  display: inline-block;
  position: relative;
  border-radius: 10px;
  text-decoration: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.5s ease;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }

.button:hover {
  text-shadow: 0px 0px 0px rgba(255, 255, 255, 0.8);
}

.button:hover::after {
  left: 100%;
  top: 100%;
  bottom: 100%;
  right: 100%;
}

.button::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  border-radius: inherit;
  transition: all 0.5s;
}

.button::after {
  content: "";
  display: block;
  position: absolute;
  left: 2.5px;
  top: 2px;
  bottom: 2.5px;
  right: 2px;
  z-index: -1;
  border-radius: 8px;
  transition: all 0.5s;
}

/* -------- */
/* CONTENT */

#content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  padding: 60px 40px;
  min-height: 100dvh;
  overflow: hidden;
}





/* ------ */
/* MODAL */

body.prevent-background-scroll {
  min-height: 100dvh;
  overflow-y: hidden;
}


@media (max-width: 1100px) {
  .beer {
    width: 200px;
  }

  #content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  #intro {
    padding: 30px;
  }

  .beer {
    width: 150px;
  }

  .info {
    gap: 20px;
    padding: 30px 30px;
  }

  .info h1 {
    font-size: 2.5rem;
  }

  .info p {
    font-size: 1rem;
  }

  #content {
    gap: 30px;
    padding: 60px 20px;
  }

  .card {
    width: 250px;
  }

  .modal-content {
    width: 80%;
  }

  footer {
    padding: 20px 80px 60px;
  }

  footer > p {
    font-size: 1.1rem;
  }
}

@media (max-width: 550px) {
  #intro {
    grid-template-columns: repeat(1, 1fr);
    grid-template-areas:
      "split-beer"
      "info";
  }

  .info {
    grid-area: info;
  }

  .split-beer {
    grid-area: split-beer;
    margin: 20px auto;
  }

  .beer {
    width: 100px;
  }

  #content {
    grid-template-columns: repeat(1, 1fr);
    padding: 40px 40px;
  }

  footer {
    padding: 20px 30px 60px;
  }

  footer > p {
    font-size: 1rem;
  }
}

#animatedText {
  opacity: 0;
  transition: opacity 3s;
   /* Adjust the margin to trigger the animation at the desired scroll position */
}

content {
  font-family: 'Urbanist', sans-serif;
  background-color:#290349;   
  text-align: center;
  color: #fff;
  width:100%;
  padding: 10%;
}