/***************************************
*
*___TRIPLEPRO CUSTOM_______________
*
*   Café Eijck
*   www.cafe-eijck.nl
*
***************************************/

/**************************************
*
* Flex definitions
*
***************************************/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:ital,wght@0,300..700;1,300..700&display=swap');
@import url("https://use.typekit.net/qsz8dpq.css");

.grid { display: grid; }
.grid-cols-2 { grid-template-columns: 1fr 1fr; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.align-center  { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.py-10px { padding-top: 10px; padding-bottom: 10px; }
.py-20px { padding-top: 20px; padding-bottom: 20px; }
.gap-10px { gap: 10px; }
.gap-15px { gap: 15px; }
.mt-50px { margin-top: 50px; }
.mt-100px { margin-top: 100px; }
.mt-10px { margin-top: 10px; }
.mb-10px { margin-bottom: 10px; }
.mb-50px { margin-bottom: 50px; }
.mb-100px { margin-bottom: 100px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.h-full { height: 100%; }

@media(min-width: 768px)  {
.mt-150px { margin-top: 150px; }
.mb-150px { margin-bottom: 150px; }
}

@media(max-width: 768px)  {
.mt-100px { margin-top    : 50px; }
.mb-100px { margin-bottom : 50px; }
}

@media(min-width: 768px)  {
  .lg-flex {
      width: 100%;
      display: flex;
  }
}


/**************************************
*
* Website
*
***************************************/


html {
  --primary-color: #E9E3D3;
  --secondary-color: #08291A;
  --tertiary-color: #D4AF37;
  --gutter: max(20px, calc((100vw - 1364px) / 2));
}

html body .hoofd .element {
  box-sizing: border-box;
}

html body .hoofd .element {
  padding-left: var(--gutter) !important;
  padding-right: var(--gutter) !important;
  grid-column: span 2;
}

@media(min-width: 768px) {
  html body .hoofd .element:nth-child(3n + 2) {
    padding-left: var(--gutter) !important;
    padding-right: 50px !important;
    grid-column: span 1;
  }

  html body .hoofd .element:nth-child(3n + 3) {
    padding-left: 50px !important;
    padding-right: var(--gutter) !important;
    grid-column: span 1;
  }
}

.no-gutter {
  margin-left: calc(var(--gutter) * -1);
  margin-right: calc(var(--gutter) * -1);
}

body {
  font-family:"Degular";
  background: url('/websites/1853/images/background.png') var(--primary-color);
  background-repeat: no-repeat;
  background-position: top 40% right -420px;
  color: var(--secondary-color);
  font-size: 18px;
}

h1, h2, h3, .title {
  font-family: 'Cormorant Infant';
}

h1 {
  font-size: 40px;
  line-height: 1;
}

h2 {
  font-size: 30px;
  line-height: 1;
}

h3 {
  font-size: 22px;
  line-height: 1.2;
}

@media(min-width: 768px) {

  h1 {
    font-size: 80px;
    line-height: 1;
  }

  h2 {
    font-size: 50px;
    line-height: 1;
  }

  h3 {
    font-size: 24px;
    line-height: 1.2;
  }
}
p {
  margin-top: 0 !important;
}

#home {
  background: var(--primary-color);
}

html body[data-responsive=grid] #hoofd {
  display: block;
  z-index: 1000;
}

@media(min-width: 768px)  {
  html body[data-responsive=grid] #hoofd {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.topbar,
html body .hoofd .element:nth-child(10),
html body .hoofd .element:nth-child(17),
html body .hoofd .element:nth-child(18) {
  background-color: var(--secondary-color) !important;
  color: var(--primary-color);
}

.menu {
  display: flex;
  justify-content: space-between;
  width: 100%;
  color: var(--primary-color);
}

.menu a {
  color: var(--primary-color);
}

.element.menu label.bar_label {
  color: var(--primary-color);
}

ul.responsive {
    background: var(--secondary-color);
}


.menu a:hover {
  text-decoration: underline;
}

.knop {
  border: 2px solid var(--secondary-color);
  padding: 10px 36px;
  color: var(--secondary-color);
  font-size: 24px;
  display: inline-block;
  max-width: max-content;
  transition: all 0.3s ease;
}

#home #hoofd > .element.text.header img
{
  height: 15vh;
}

.knop:hover {
  border: 2px solid var(--secondary-color);
  color: var(--primary-color);
  background-color: var(--secondary-color);
}

.images-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media(min-width: 768px) {
  .images-row {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.images-row img {
  width: 100%;
  height: auto;
  max-height: 375px;
  max-width: 100%;
  object-fit: cover;
}

.dagblok {
  max-width: max-content;
  margin-bottom: 10px;
}

.dag {
  font-family: 'Cormorant Infant';
  font-size: 24px;
  font-weight: bold;
}

.woord {
  display: block;
  padding: 5px;
  cursor: pointer;
}

.woord a {
  color: var(--primary-color);
  font-size: 36px;
}

.woord a:hover {
  text-decoration: underline;
}


.hover-preview {
  position: fixed;
  top: 0;
  left: 0;
  width: 120px;
  height: auto;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.12s ease;
  z-index: 10;
}

hr {
  border-top: 1px solid #D5AF36;
}

.reserveren #TEXT_IWOKOGIC {
  min-height: 90vh;
}

div#TEXT_GCNOWIEP.element.text.topbar {
    position: sticky !important;
    top: 0 !important;
    z-index: 999;
}

@media(min-width: 992px) {
  div#TEXT_GCNOWIEP.element.text.topbar {
    display: flex;
  }
}

.topfooter-menu  {
  border-top: 1px solid #D5AF36;
}

.topfooter-menu a {
  display: block;
  color: #000;
}

.topfooter-menu a:hover {
  text-decoration: underline;
}

form ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

form ul li:nth-child(4),
form ul li:nth-child(5) {
  grid-column: span 3;
}

form ul li:nth-child(6) {
  grid-column: span 2;
}

form li input,
form li textarea {
  border-bottom: 1px solid #D5AF36;
}

#TEXT_RDTNDSDG form label {
  font-size: 16px;
}

form input[type=submit] {
  border: 2px solid var(--secondary-color);
  padding: 10px 36px;
  color: var(--secondary-color);
  font-size: 16px;
  display: inline-block;
  max-width: max-content;
  transition: all 0.3s ease;
  
  background: transparent;
}

form input[type=submit]:hover {
  border: 2px solid var(--secondary-color);
  color: var(--primary-color);
  background-color: var(--secondary-color);
}


#copyright {
  --color-copyright : hsl(0, 0%, 100%);
  margin-bottom: -0.75em;
}
 @media(max-width: 768px) {
   #copyright {
  --color-copyright : hsl(0, 0%, 0%);
  margin-bottom: 3em;
}
 }