/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3rem;

  /*========== Colors ==========*/
  --hue: 174;
  --sat: 63%;
  --first-color: #6B473A;
  --first-color-alt: hsl(var(--hue), var(--sat), 36%);
  --title-color: hsl(var(--hue), 12%, 15%);
  --text-color: black;
  --body-color: white;
  --container-color: #FFF;

  /*========== Font and typography ==========*/
  --body-font: 'Mulish', sans-serif;
  --h1-font-size: 1.5rem;
  --normal-font-size: .938rem;
  --tiny-font-size: .725rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (min-width: 968px) {
  :root {
    --h1-font-size: 2.25rem;
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: white;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

p {
  font-size: 1.3rem;
}
/*=============== REUSABLE CSS CLASSES ===============*/
.section {
  padding: 4.5rem 0 2rem;
}

.section__title {
  color: var(--title-color);
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 3rem;
  font-weight: 300;
  display:  inline-block;
}

#menu {
  text-align: center;
  padding-top:2rem;
}
#menu i {
  text-align: center;
}

/*=============== LAYOUT ===============*/
.container {
  margin-left: 1rem;
  margin-right: 1rem;
}

.container p {
  font-size:1rem;
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--container-color);
  z-index: var(--z-fixed);
  transition: .4s;
  padding-top: 1%;
}

.header span {
  width: 100%;
  display: block;
  text-align: center;
}

.nav-title {
  font-family: 'Mulish', sans-serif;
  font-size: 1.15rem;
  font-style: italic;
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3%;
}

.nav__logo {
  color: var(--title-color);
  font-weight: 600;
}

.nav {
  height: calc(var(--header-height) + 1.5rem); /* 4.5rem */
}

.nav__item {
  padding: 15px;
}


@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: var(--container-color);
    box-shadow: 0 -1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
    width: 100%;
    height: auto;
    padding: 0 1rem;
    display: grid;
    align-content: center;
    border-radius: 1.25rem 1.25rem 0 0;
    transition: .4s;
  }

  .nav {
    justify-content: center;
  }
}

.nav__list, 
.nav__link {
  display: flex;
}

.nav__link {
  flex-direction: column;
  align-items: center;
  row-gap: 4px;
  color: var(--title-color);
  font-weight: 600;
}

.nav__list {
  justify-content: space-around;
}

.nav__name {
  font-size: var(--tiny-font-size);
  /* display: none;*/ /* Minimalist design, hidden labels */
}

.nav__icon {
  font-size: 1.5rem;
}

/*Active link*/
.active-link {
  position: relative;
  color: var(--first-color);
  transition: .3s;
}

/* Minimalist design, active link */
.active-link::before{
  content: '';
  position: absolute;
  bottom: -.5rem;
  width: 4px;
  height: 4px;
  background-color: var(--first-color);
  border-radius: 50%;
}

/* Change background header */
.scroll-header {
  box-shadow: 0 1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
}


/*=============== HOME ===============*/
#home {
  position: relative;
  text-align: center;
  color: black;
  padding-bottom: 0;
}

#home img {
  width:100%;
  border-radius: 5px;
  filter: brightness(0.7);
  margin-top: 3%;
}

#home .title {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 3%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
}

#home h1 {
  text-align: center;
  font-family: lobster,cursive;
  font-size: 4rem;
  color: white;
  text-shadow: 4px 4px black;
  }

  /* <!-- HTML !--> */

/* CSS */
.button-5, .btn {
  align-items: center;
  background-clip: padding-box;
  background-color: #6B473A;
  border: 3px solid white;
  border-radius: .25rem;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  line-height: 1.25;
  margin: 0;
  min-height: 3rem;
  padding: calc(.875rem - 1px) calc(1.5rem - 1px);
  position: relative;
  text-decoration: none;
  transition: all 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  width: auto;
}

.button-5:hover,
.button-5:focus {
  background-color: #3C2820;
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}

.button-5:hover {
  transform: translateY(-1px);
}

.button-5:active {
  background-color: #533D35;
  box-shadow: rgba(0, 0, 0, .06) 0 2px 4px;
  transform: translateY(0);
}

.imgtop {
  transform:rotate(180deg) ;
}


#about {
  min-height: 110px;
  padding: 10px;
  text-align: center;
}

.market {
 float:left; 
 margin-right:20px;
 width:50%;
 max-width: 100%;
}

.market p {
  font-size: 1.3rem;
}

.slideshow { 
 background-color: white;
 overflow:hidden;
 margin-top: 5%;
 margin: auto;
}

.mySlides {
  width:400px;
  height:400px;
}

#event {
  min-height: 450px;
  padding: 10px;
  text-align: center;
  background-image: url(img/bwbeans.png);
  background-color: #38251e;
  border-radius: 5px;
  margin-top: 3%;
  color: white;
}


.eventtitle {
 width: 100%;
 padding: 3%;
}

.eventtitle p {
  font-size: 1.25rem;
}
.eventtitle h2 {
  font-family: lobster;
  color: white;
}

.event-icons .bx {
  color: white;
}

.bookimg { 
 overflow:hidden;
 margin-top: 5%;
 min-height:170px;
 margin: auto;
}

.bookimg img {
  border: 5px solid white;
}

 .bx {
  font-size: 2rem;
  padding: 2%;
  color: var(--first-color);
}

.bx span {
  color: white;
}

.bx-leaf {
  font-size: 1rem;
}

.bxl-instagram {
  color: black;
}

.bx p {
  font-size: 1.5rem;
}

.button-white {
  align-items: center;
  background-clip: padding-box;
  background-color: #6B473A;
  border: 3px solid white;
  border-radius: .25rem;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  box-sizing: border-box;
  color: white;
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  line-height: 1.25;
  min-height: 3rem;
  padding: calc(.875rem - 1px) calc(1.5rem - 1px);
  position: relative;
  text-decoration: none;
  transition: all 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  width: auto;
  margin:5%;
}

.button-white:hover,
.button-white:focus {
  background-color: #3C2820;
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}

.button-white:hover {
  transform: translateY(-1px);
}

.button-white:active {
  background-color: #533D35;
  box-shadow: rgba(0, 0, 0, .06) 0 2px 4px;
  transform: translateY(0);
}

.menu-pdf {
  align-items: center;
  background-clip: padding-box;
  background-color: #6B473A;
  border-radius: .25rem;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  box-sizing: border-box;
  color: white;
  cursor: pointer;
  display: inline-flex;
  font-size: var(--tiny-font-size);
  font-weight: 600;
  justify-content: center;
  line-height: 1.25;
  min-height: 3rem;
  padding: calc(.875rem - 1px) calc(1.5rem - 1px);
  position: relative;
  text-decoration: none;
  transition: all 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  width: auto;
}

.menu-pdf:hover,
.menu-pdf:focus {
  background-color: #3C2820;
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}

.menu-pdf:hover {
  transform: translateY(-1px);
}

.menu-pdf:active {
  background-color: #533D35;
  box-shadow: rgba(0, 0, 0, .06) 0 2px 4px;
  transform: translateY(0);
  color: black;
}



/* FORM */
.form-container h2 {
  text-align: center;
  margin: 35px 0 20px 0 !important;
  font-family: 'lobster';
  font-size: 2.5rem;
  color: var(--first-color);
}

section .form-container {
  text-align: center;
}

input, textarea, select {
  margin:1%;
    align-items: center;
    background-clip: padding-box;
    background-color: white;
    border-radius: 0.25rem;
    box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-flex;
    font-size: 1rem;
    font-weight: 600;
    justify-content: center;
    line-height: 1.25;
    min-height: 3rem;
    padding: calc(0.875rem - 1px) calc(1.5rem - 1px);
    position: relative;
    text-decoration: none;
    transition: all 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    width: auto;
}

textarea {
  width: 75%;
}

option {
  font-size:4rem;
}

label {
  font-size: 1.5rem;
}


@media screen and (max-width: 900px) {
  .market { 
    float: none;
    margin-right:0;
    width:auto;
    padding-bottom: 0;
    margin-bottom: 0;
    text-align: center;
  }
  
  .eventtitle {
    float: none;
    width: 100%;
  }
}


/* MENU */
/* Float four columns side by side */
.column {
  float: left;
  width: 33.3333%;
  padding: 0 10px;
  margin-bottom: 2%;
}

/* Remove extra left and right margins, due to padding in columns */
.row {margin: 0 -5px;}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Style the counter cards */
.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); /* this adds the "card" effect */
  padding: 16px;
  text-align: center;
  background-color: #f1f1f161;
}

/* image container .img */
.column .card .img {
  width: 190px;
  height: 200px;
  object-fit: scale-down;
  margin: auto;
}

.column .card .container {
  width: 100%;
  height: 100px;
  font-size:1.15rem;
  margin-left:0;
}

/* actual img */
.card img {
  width: 100%;
  height: 100%;
  object-fit:scale-down;
}

#pastries .column {
  width: 100%;
}

details summary::-webkit-details-marker {
  display:none;
}

/* Responsive columns - one column layout (vertical) on small screens */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
  
}

@media screen and (min-width:601px) and (max-width:768px) {
  .column {
    width: 50%;
    display: block;
    margin-bottom: 20px;
  }


}

@media screen and (min-width:768px) {
  #home h1 {
    font-size: 8rem;
  }
}

summary {
	background-color: #fff;
	position: relative;
	cursor: pointer;
	padding: 1em .5em;
	list-style: none; 
  color: var(--first-color)
}

#menu .subtitle {
  display: flex;
  align-items: center;
}

#menu h3 {
  font-size: 2.15rem;
  width: 100%;
  background-color: #f0e7de;
  margin: auto;
  border-radius: 5px;
}

#menu .section__title {
  font-family: 'lobster';
}

footer {
  text-align: center;
  margin-top: 5%;
}

footer img {
  margin-bottom: 19px;
}

/*=============== MEDIA QUERIES ===============*/
/* For small devices */
/* Remove if you choose, the minimalist design */
@media screen and (max-width: 319px) {
  .nav__name {
    display: none;
  }
}

@media screen and (max-width:363px) {
  #home h1 {
    font-size: 3.4rem;
  }
}

@media screen and (max-width:425px) {
  #menu h3 {
    font-size:1.47rem;
  }
}

/* For medium devices */
@media screen and (min-width: 576px) {
  .nav__list {
    justify-content: center;
    column-gap: 3rem;
  }
}

@media screen and (min-width: 767px) {
  body {
    margin: 0;
  }
  .section {
    padding: 7rem 0 2rem;
  }
  .nav__img {
    display: none;
  }
  .nav__icon {
    display: none;
  }
  .nav__name {
    font-size: var(--normal-font-size);
    /* display: block; */ /* Minimalist design, visible labels */
  }
  .nav__link:hover {
    color: var(--first-color);
  }

  /* First design, remove if you choose the minimalist design */
  .active-link::before {
    content: '';
    position: absolute;
    bottom: -.75rem;
    width: 4px;
    height: 4px;
    background-color: var(--first-color);
    border-radius: 50%;
  }

  .active-link::after {
      color: var(--first-color);
  }

  .button-5, .button-white {
    font-size: 1.3rem;
  }

  #menu h3 {
    width: 75%;
  }

}

@media screen and (min-width: 901px) {
  #about {
    margin-top: 3%;
  }

  .slideshow {
    margin-top: 8%;
    margin-bottom: 8%;
  }
}



/* For large devices */
@media screen and (min-width: 1024px) {
  #home h1 {
    font-size: 11rem;
  }

  .button-5, .button-white {
    font-size: 2rem;
  }

  #home .title {
    top: 50%;
  }
  .slideshow {
    margin-top: 3%;
    margin-bottom: 5%;
  }

  #menu .section__title, .eventtitle h2, .form-container h2 {
    font-size: 4rem;
  }
  #menu h3 {
    width: 50%;
  }
}

@media screen and (min-width: 1225px) {
  #about p {
    font-size: 1.5rem;
  }
}