@import url('https://fonts.googleapis.com/css?family=roboto+Condensed');

@font-face {
  font-family: JoyceFont;
  src: url(goldenstatef-webfont.ttf);
}

body {
  font-family: 'Roboto Condensed', sans-serif;
  margin: 0;
  background: #f6e2e1;
  height: auto;
  color: #333;
}


/* Image Grid */

.image-grid {
  --gap: 16px;
  --num-cols: 4;
  --row-height: 300px;

  box-sizing: border-box;
  padding: var(--gap);

  display: grid;
  grid-template-columns: repeat(var(--num-cols), 1fr);
  grid-auto-rows: var(--row-height);
  gap: var(--gap);
}

.image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 3px solid #c4987a;
}

/*image 1*/
.image-1 {
  grid-column: span 2;
}

.image-1 {
  grid-row: span 2;
}

/*image 2*/
.image-2 {
  grid-column: span 2;
}

/*image 3*/
.image-3 {
  grid-column: span 2;
}

.image-3 {
  grid-row: span 2;
}

/*image 4*/
.image-4 {
  grid-column: span 2;
}

/*image 5*/
.image-5 {
  grid-row: span 2;
}

/*image 6*/
.image-6 {
  grid-column: span 2;
}

/*image 8*/
.image-8 {
  grid-column: span 3;
}


/* anything under 900px*/
@media screen and (max-width: 900px) {
  .image-grid {
    --num-cols: 2;
    --row-height: 200px;
  }

  /*image 1*/
  .image-1 {
    grid-column: span 1;
  }

  .image-1 {
    grid-row: span 2;
  }

  /*image 2*/
  .image-2 {
    grid-column: span 1;
  }

  /*image 3*/
  .image-3 {
    grid-column: span 1;
  }

  .image-3 {
    grid-row: span 1;
  }

  /*image 4*/
  .image-4 {
    grid-column: span 2;
  }

  /*image 5*/
  .image-5 {
    grid-row: span 1;
  }

  /*image 6*/
  .image-6 {
    grid-row: span 2;
    grid-column: span 1;
  }

  /*image 8*/
  .image-8 {
    grid-column: span 2;
  }
}




h1 {
  font-weight: 400;
  font-size: 2.5rem;
  text-transform: uppercase;
  margin: 0;
}

h2 {
  font-weight: 400;
  font-size: 1.2rem;
  text-transform: capitalize;
  margin: 0;
}


img {
  display: block;
  width: 100%;
}

main {
  max-width: 900px;
  margin: auto;
  box-shadow: 30px 0px 40px rgba(0, 0, 0, 0.1),
    -30px 0px 40px rgba(0, 0, 0, 0.1);
}

#landing {
  background: #fff;
}

#landing-text {
  display: flex;
  flex: 0 1 40vw;
  height: 40vh;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-right: 1rem;
  padding-left: 1rem;
}

#landing-text h2 {
  color: #888;
}

#landing-image {
  background: url(..//images/joyce1.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 60vh;
  flex: 0 1 60vw;
  margin: 0;
}

.btn {
  padding: 0.5rem 2rem;
  border: 2px #ccc solid;
  display: inline-block;
  margin: 2rem 0 0;
  border-radius: 50px;
  text-decoration: none;
  color: #333;
  transition: background 200ms ease;
  display: block;
}

.btn:hover {
  background: #f4f4f4;
}

#header {
  padding: 1.5rem;
  text-align: center;
  background: #c4987a;
  color: #fff;

}

#header h2 {
  border-left: dotted 1px #fff;
  border-right: dotted 1px #fff;
  display: inline-block;
  padding-right: 1rem;
  padding-left: 1rem;
}

.caption {
  padding: 0.8rem;
  text-align: center;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  margin: auto;
  color: #c4987a;
  background: #fff;
}

footer h3 {
  font-size: 3rem;
  margin-bottom: 0;
}

.kevin-murphy {
  border-top: 4px #c4987a solid;
}

.salon {
  border-top: 4px #c4987a solid;
}




/* screen sizes 500px and up */
@media(min-width: 500px) {
  #landing {
    display: flex;
    height: 100%;
  }


  #landing-text {
    height: 100vh;
  }


  #landing-image {
    height: 100vh;
  }
}

/* Screen Sizes 700px and up */
@media(min-width: 700px) {
  .btn {
    padding: 1rem 3rem;
  }
}

.map-container {
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 1rem;
}

iframe {
  width: 90%;
  height: 500px;
  border-radius: 15px;
}



/*social links */

.fa {
  padding: 20px;
  font-size: 30px;
  width: 18px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
  margin: 2rem 1rem;
}


.fa:hover {
  opacity: 0.7;
}


/* Facebook */
.fa-facebook {
  background: #3B5998;
  color: white;
}

/* Instagram */
.fa-instagram {
  background: #e95950;
  color: white;
}

/* Instagram */
.fa-whatsapp {
  background: #25D366;
  color: white;
}



/* Screen Sizes 891px and up */
@media(min-width: 891px) {

  /* Salon slides */
  .salon {
    display: none;
  }

  .bloesemenblos {
    display: none;
  }

  .slider {
    width: 800px;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    margin: auto;
    border: 4px #c4987a solid;
  }

  .slides {
    width: 500%;
    height: 500px;
    display: flex;
  }

  .slides input {
    display: none;
  }

  .slide {
    width: 20%;
    transition: 2s;
  }

  .slide img {
    width: 800px;
    height: 500px;
  }

  /*css for manual slide navigation*/

  .navigation-manual {
    position: absolute;
    width: 800px;
    margin-top: -40px;
    display: flex;
    justify-content: center;
  }

  .manual-btn {
    border: 2px solid #fff;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
  }

  .manual-btn:not(:last-child) {
    margin-right: 40px;
  }

  .manual-btn:hover {
    background: #fff;
  }

  #radio1:checked~.first {
    margin-left: 0;
  }

  #radio2:checked~.first {
    margin-left: -20%;
  }

  #radio3:checked~.first {
    margin-left: -40%;
  }

  #radio4:checked~.first {
    margin-left: -60%;
  }

  /*css for automatic navigation*/

  .navigation-auto {
    position: absolute;
    display: flex;
    width: 800px;
    justify-content: center;
    margin-top: 460px;
  }

  .navigation-auto div {
    border: 2px solid #fff;
    padding: 5px;
    border-radius: 10px;
    transition: 1s;
  }

  .navigation-auto div:not(:last-child) {
    margin-right: 40px;
  }

  #radio1:checked~.navigation-auto .auto-btn1 {
    background: #fff;
  }

  #radio2:checked~.navigation-auto .auto-btn2 {
    background: #fff;
  }

  #radio3:checked~.navigation-auto .auto-btn3 {
    background: #fff;
  }

  #radio4:checked~.navigation-auto .auto-btn4 {
    background: #fff;
  }
}

/* Screen Sizes 890px and lower */
@media(max-width: 890px) {
  /* Salon slides */


  .slider {
    width: 800px;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    margin: auto;
    border: 4px #c4987a solid;
    display: none;
  }

  .slides {
    width: 500%;
    height: 500px;
    display: flex;
  }

  .slides input {
    display: none;
  }

  .slide {
    width: 20%;
    transition: 2s;
  }

  .slide img {
    width: 800px;
    height: 500px;
  }

  /*css for manual slide navigation*/

  .navigation-manual {
    position: absolute;
    width: 800px;
    margin-top: -40px;
    display: flex;
    justify-content: center;
  }

  .manual-btn {
    border: 2px solid #fff;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
  }

  .manual-btn:not(:last-child) {
    margin-right: 40px;
  }

  .manual-btn:hover {
    background: #fff;
  }

  #radio1:checked~.first {
    margin-left: 0;
  }

  #radio2:checked~.first {
    margin-left: -20%;
  }

  #radio3:checked~.first {
    margin-left: -40%;
  }

  #radio4:checked~.first {
    margin-left: -60%;
  }

  /*css for automatic navigation*/

  .navigation-auto {
    position: absolute;
    display: flex;
    width: 800px;
    justify-content: center;
    margin-top: 460px;
  }

  .navigation-auto div {
    border: 2px solid #fff;
    padding: 5px;
    border-radius: 10px;
    transition: 1s;
  }

  .navigation-auto div:not(:last-child) {
    margin-right: 40px;
  }

  #radio1:checked~.navigation-auto .auto-btn1 {
    background: #fff;
  }

  #radio2:checked~.navigation-auto .auto-btn2 {
    background: #fff;
  }

  #radio3:checked~.navigation-auto .auto-btn3 {
    background: #fff;
  }

  #radio4:checked~.navigation-auto .auto-btn4 {
    background: #fff;
  }
}

/*Prijslijst tabel*/

td,
th {
  border: 1px solid #c4987a;
  text-align: left;
  padding: 8px;
  width: 85%;

}

tr:nth-child(even) {
  background-color: #ecd3c2;
}

table {
  margin-left: auto;
  margin-right: auto;
  min-width: 75%;
  max-width: 75%;
}

#table1 {
  margin-top: 80px;
  margin-bottom: 30px;
}

#table2 {
  margin-bottom: 30px;
}

#table3 {
  margin-bottom: 30px;
}

.caption {
  margin-bottom: 50px;
}

p {
  padding-left: 10%;
  padding-right: 10%;
}

.caption {
  max-width: 80%;
  margin: auto;
  margin-bottom: 50px;
  margin-top: 50px;
}