@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body{
  background-color: #201818;
}

.nav-text{

}
.navbar-container{
  background-color: #201818;
}

.navbar, .navbar-brand, .nav-link{
  font-size: 2.2rem;
  color: #D9773C;
}


.navbar-brand:hover, .navbar-nav :hover {
  color: #F5C15C;
  transition: 8ms;
}

.navbar-nav{

}

.fa-bars{
  color: #D9773C;
}

.fa-bars:hover{
  color: #F5C15C;
  transition: 200ms;
}

.intro {
  width: 100%;
  height: 100vh;
  background-image: url(Img/Intro_Alcohol.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top: #A3C15C solid 5px;
  border-bottom: #A3C15C solid 5px;
}

.intro h1 {
  font-family: "Roboto", sans-serif;
  color: #D9773C;
  font-size: 40vw;
  font-weight: bold;
  text-shadow: 5px 5px 2px rgba(0, 0, 0, 1);
  text-shadow: 20px 20px 8px rgba(0, 0, 0, 0.7);
  animation: GinColour 3s infinite;
  letter-spacing: 2px;
}

@keyframes GinColour {
  0% {
    color: #D9773C;
  }
  50% {
    color: #A3C15C;
  }
  100% {
    color: #D9773C;
  }
}


.Content-Text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #4B3F3F;
}

.Content-Text h2 {
  color: #F5C15C;
  text-align: center;
  font-size: 1.8rem;
}

.Content-Text p {
  color: #A3C15C;
  text-align: center;
  max-width: 80%;
  font-size: 1.2rem;
}


.products h3 {
  margin-top: 5%;
  margin-bottom: 0px;
  max-width: 45%;
  color: #F5C15C;
  text-align: center;
  background-color: #4B3F3F;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.carousel-control-prev, .carousel-control-next{
background-color: #A3C15C;
}

.carousel-item {
  background-color: #4b3f3f83;
}


.carousel-item img {
  width: 40vw;
  object-fit: cover;
  margin: auto;
  display: block;
}

.carousel-caption {
  position: static;
  background: #4B3F3F;
  text-align: center;
  padding: 10px;
  max-width: 70%;
  margin: auto;
  margin-top: 5px;
}

.carousel-caption h5 {
  color: #F5C15C;
  font-size: 1.4rem;
}

.carousel-caption p {
  color: #F5C15C;
  max-width: 90%;
  margin: 0 auto;
  text-align: center;
  font-size: 1.2rem;
}

.contact{
  margin-top: 5%;

}

.contact-container a{
  text-decoration: none;
  transition: 200ms;
}

.contact-container i {
  color: #D9773C;
}

.contact-container p {
  color: #F5C15C;
  font-size: 1.2rem;
}

.contact-container a:hover,
.contact-container a:hover i,
.contact-container a:hover p {
  color: rgb(0, 195, 255);
  transition: 200ms;
}

.fade-div {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  visibility: hidden;
  background-color: #4B3F3F;
  padding: 20px;
  margin: 20px 0;
  border-top: 3px solid #A3C15C;
  border-bottom: 3px solid #A3C15C;
}

.fade-div.visible {
  opacity: 1;
  visibility: visible;
}

footer{
  font-size: 1.2rem;
  color: #D9773C;
}


