header {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #FFC4DF;
  padding: 30px 10px;
  justify-content: space-between;
  width: 100%;
   box-shadow: 0 8px 6px -6px #5b022a;
   z-index: 3;
   
}

a:link {
  color: black;
  text-decoration: none;
}

a:visited {
  color: rgb(0, 0, 0);
  text-decoration: none;
}

.logo {
  display: flex;

}

p {
  font-family: kreon;
}

h1 {
  font-size: 40px;
  font-family: Kavoon;
}

.rightheader {
  margin-right: 10%;
  font-size: 40px;
}

body {
  background-color: #FFF0F7;
}

/*Card appearence*/

.list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.card {
  display: flex;
  background-color: #D9B8F2;
  margin: 5%;
  border-radius: 10px;
  font-family: "Kreon";
  align-items: center;
  flex-direction: column;


}

.image {
  display: flex;
  justify-content: center;
  margin: 30px;
  margin-bottom: 0px;
  width: 75%;
}

.image img {

  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.text {
  background-color: #FFE8F2;
  margin: 30px;
  margin-bottom: 0px;
  padding: 15px;
  border-radius: 10px;
}

.button {
  background-color: #FFE8F2;
  margin: 30px;
  padding: 15px;
  border-radius: 10px;
  font-size: larger;
  font-weight: bold;
  box-shadow: 5px 5px 10px 2px rgba(60, 12, 82, 0.5);
  color: #9A009D;
}

@media(max-width: 750px) {
  .list {
    grid-template-columns: 1fr;
  }

  .card {
    margin-left: 10%;
    margin-right: 10%;
  }

  .large {
    display: none;
  }
}

@media(min-width: 750px) {
  .small {
    display: none;
  }
 .menu-nav {
    display: none;
  }
 
}

/*Calender Page*/
h2 {
  font-size: 40px;
  font-family: Kreon;
  display: flex;
  justify-content: center;
  margin-top: 5%;
}

.Qbox {
  border: 2px solid #DBB4C6;
  padding: 5%;
  margin: 3%;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  font-size: larger;
  align-content: center;

}



.fa-caret-up {
  color: #DBB4C6;
}

.fa-caret-down {
  color: #DBB4C6;
}

input[type="number"] {
  color: black;
  background-color: #FFF0F7;
  font-style: bold;
  font-size: larger;
  border-radius: 5px;
  border-color: #DBB4C6;
  font-family: kreon;
  padding: 5px;
  width: 100px;
  caret-color: #DBB4C6;

}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  opacity: 1;
}

h3 {
  font-family: kreon;
  font-style: bold;
  font-size: x-large;
}

.Dbox {
  border: 2px solid #DBB4C6;
  padding: 5%;
  border-radius: 15px;
  font-size: x-large;
}

.Dates {
  display: flex;
  width: 100vw;
  gap: 20px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}


.fa-play {
  font-size: clamp(6em, 10vw, 12em);
  color: #DBB4C6;
  padding-right: 5%;
}

.Tbox {
  border: 2px solid #DBB4C6;
  padding: 2%;
  margin: 3%;
  border-radius: 15px;
  font-size: x-large;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 200;
}

.Times {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  margin: 2%;

}

/*Drink Page*/
.drinktitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 5%;
  padding-top: 5%;
}

.item {
  display: flex;
  padding-left: 10%;
  padding-top: 5%;
  padding-bottom: 5%;
}

.item img {
  border-radius: 20px;
  width: 50%;
  height: 40%;
  object-fit: cover;
  aspect-ratio: 3/2;
}

.itemtext {
  width: 50vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  font-weight: 100;
}

.itemtext h3 {
  font-size: 30px;
}



.menu-nav {
  position: absolute;
  width: 100vw;
  top: -200px;
  transition: top .25s;
  display: flex;
  flex-direction: column;
  padding: 10px;
background-color: #ffd8ea;
   z-index: 0;
    pointer-events: none;
  
}
.menu-nav.opened {
  pointer-events: auto;
}
.opened {
  top: 110px;
}

ul{
  list-style-type: none;
  font-family: Kreon;
  font-size: x-large;
  display: flex;
  align-items: center;
  cursor: pointer;
}

ul :nth-child(1):hover{
background-color: #FFC4DF;
display: flex;
justify-content: center;
width: 100vw;
}
ul :nth-child(2):hover{
background-color: #FFC4DF;
display: flex;
justify-content: center;
width: 100vw;
}
ul :nth-child(3):hover{
background-color: #FFC4DF;
display: flex;
justify-content: center;
width: 100vw;
}
ul :nth-child(4):hover{
background-color: #FFC4DF;
display: flex;
justify-content: center;
width: 100vw;
}