:root {
--scalefactor: 0.9;
}

/* latin */
@font-face {
  font-family: 'Lacquer';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/lacquer/v16/EYqzma1QwqpG4_BBN7iKXw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* BASIC RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Lacquer", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",    sans-serif;
  background-color: #0000ff;
  color: #ffffff;
}

/* MAIN PAGE CONTAINER
   - No top margin; bars start at top.
*/
.page {
  min-height: 100vh;
 padding: 0 20px;
}

/* OUTER FRAME (MAX 1600PX WIDE)
   - No left/right padding; images on the sides touch the screen edges.
*/
.frame {
  position: relative;
  /* width: min(100%, 1600px); */
  width: min(100%, calc(1600px * var(--scalefactor)));
  margin: 0 auto; /* no bottom margin */
}

/* INNER FRAME WITH VERTICAL BARS (1316PX)
   - Centered inside the 1600px frame.
*/
.frame-inner {
  position: relative;
  margin: 0 auto;
  /* width: min(100%, 1316px); */
  width: min(100%, calc(1316px * var(--scalefactor)) );

  background-color: #0000ff;
/*
  background-image: url("images/balken.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
*/
  padding: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* GRID ROWS */

.row {
  display: grid;
  gap: 20px;
}

/* Top row: left image, right text block */
.row-top {
  grid-template-columns: 1.6fr 1.4fr;
}

/* Middle row: three columns */
.row-middle {
  grid-template-columns: 1.2fr 1.2fr 1.4fr;
}

/* FOOTER (NO BACKGROUND) */

.footer-row {
  padding: 0;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
text-transform: lowercase;

  text-align: center;
border-top: 2px dotted #FFF;
  border-bottom: 2px dotted #FFF;
  padding: 10px;
}

.footer-row p {
 margin:0;
}

a.amo {
 text-decoration: none;
 color: currentColor;
 transition: color 1s ease;
}

a.amo:hover {
 text-decoration: underline;
}

/* GENERAL BLOCKS */

.hero-photo,
.card,
.intro-panel {
  background: transparent; /* no opaque blocks over the bars */
  color: inherit;
  overflow: visible;
}



.hero-photo {
  margin-left: 0;          /* zelfde linkermarge als de rest */
  position: relative;
  overflow: hidden;
  /* aspect-ratio: 1;  eventueel weer aanzetten als je vaste verhouding wilt */

min-height: 400px;
}

/* Deze media query is niet meer nodig, je kunt hem verwijderen
   of leeg laten. In ieder geval geen negatieve margin meer. */
@media (min-width: 1600px) {
  .hero-photo {
    margin-left: 0;
  }
}





/* INTRO PANEL (RIGHT TOP) */

.intro-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* content sticks to top */
  justify-content: space-between;
  gap: 12px;
padding-top: 40px;
}

/* Logo + socials */

.intro-header {
  display: flex;
  flex-direction: column;     /* stack socials ABOVE logo */
  align-items: flex-start;    /* keep logo left-aligned */
  margin-bottom: 10px;
  padding-top: 40px;
  position: relative;         /* allows positioning socials inside */
}

.logo {
  max-width: 634px;
  height: auto;

  margin-top: 5px;
  border-top: 2px dotted #FFF;
  padding-top: 20px;
}

.socials {
  display: flex;
  gap: 8px;
  position: absolute;
  top: 0;                     /* move socials to the top of intro-header */
  right: 0;                   /* align socials to the right edge */
}

.socials img {
  width: 32px;
  height: 32px;
transition: filter 0.25s ease;
}

.socials a:hover img,
.socials a:focus-visible img {
  filter: invert(100%);
}

/* Intro text */

.intro-text {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 12px;
text-align: justify;
 flex-grow: 1;

min-height:200px;
}

/* Menu buttons (transparent fill, only white border/text) */

.intro-buttons {
  display: flex;
  justify-content: flex-end;  /* right align the group */
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 16px;
  border-radius: 3px;
  border: 2px solid #ffffff;
  background-color: #ffffff; /* white background */
  color: #0000ff;            /* blue text */
  font-family: "Lacquer", system-ui, sans-serif;
  font-size: 1.3rem;
  text-decoration: none;
  /* text-transform: uppercase; */
text-transform: lowercase;
font-weight:bold;
  letter-spacing: 0.08em;
  white-space: nowrap;
 transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

button:hover,
.btn:hover,
.btn:focus-visible {
  background-color: #3f8fff;
  color: #ffffff;
}

.intro-buttons .btn {
  flex: 0 0 47%;   /* ~half width each */
  justify-content: center;
}

/* FIGURES / IMAGES */

figure {
  margin: 0;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CARDS */

.card {
  display: flex;
  flex-direction: column;
  position: relative;
}

/* CONTACT / RESERVEREN BUTTONS (FLOATING LABELS)
   - Transparent background, no bottom border, bars visible behind.
*/

.card-button {
  display: block;
  width: 100%;               /* full width of section */
  margin-bottom: 0px;
  padding: 18px 16px;
  border-radius: 3px;
  border: 2px solid #ffffff;
  background-color: #ffffff; /* white background like Menu buttons */
  color: #0000ff;
  font-family: "Lacquer", system-ui, sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;

text-transform: lowercase;

  letter-spacing: 0.14em;
  text-align: center;
  cursor: pointer;
 font-weight:bold;
transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;

}

.card-button:first-child {
  margin-bottom:20px;
}


.card-button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

/* Contact image */

.card-contact .card-image {
  flex: 1 1 auto;
}

/* Reserveren: top image + bottom image */

.card-reserve {
  gap: 20px;
}

.card-reserve .card-image-top {
  flex: 1 1 50%;
}

.card-reserve .card-image-bottom {
  flex: 1 1 50%;
}

/* OPENINGSTIJDEN COLUMN */

.card-opening {
  gap: 20px;
}

/* Right-bottom photo */

.opening-photo {
  flex: 1 1 55%;
}

/* White panel for Openingstijden (header + text) */

.opening-panel {
  background-color: #ffffff;
  color: #0000ff;
  display: flex;
  flex-direction: column;
text-transform: lowercase;
}

/* Openingstijden header (no border, white background) */

.opening-header {
  padding: 10px 16px 8px;
}

.opening-header h2 {
  margin: 0;
  font-family: "Lacquer", system-ui, sans-serif;
  font-size: 1.3rem;
  #text-transform: uppercase;

font-weight:bold;

  letter-spacing: 0.14em;
}

/* Openingstijden text (white background) */

.opening-text {
  padding: 0 16px 16px;
  font-size: 1rem;
  line-height: 1.4;
  color: #0000ff;
}

/* HEADINGS (shared font) */

.intro-panel h1,
.opening-header h2 {
  font-family: "Lacquer", system-ui, sans-serif;
}

/* HIDE IN PORTRAIT */

.hide-portrait {
  /* will be set to display:none in portrait below */
}

/* ---------- RESPONSIVE ---------- */


/* Portrait orientation:
   - Hide top-left and bottom-right photos.
   - Stack layout.
*/

@media (orientation: portrait) {
  .hide-portrait {
    display: none;
  }

.page {
 padding: 0;
}

  .row-top {
    grid-template-columns: 1fr; /* only intro-panel */
  }

  .row-middle {
    grid-template-columns: 1fr;
  }

  .card-opening {
    display: flex;
  }

  .opening-panel {
    flex: 1;
  }

.intro-text {
 #padding: 0 20px;
}
.intro-buttons .btn {
  flex: 0 0 calc(50% - 8px);
}

 .frame-inner {
  background-size: auto;
  background-position-x: center;
  background-repeat: repeat-y;
padding: 0 20px;
 }
}


.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Each slide fully covers the hero area, centered */
.hero-slide {
  position: absolute;
  inset: 0;                  /* top/right/bottom/left: 0 */
  width: 100%;
  height: 100%;
  object-fit: cover;         /* keep aspect ratio, crop if needed */
  object-position: center;

  object-position: top center;

  opacity: 0;
  transition: opacity 1s ease;
}

/* Visible slide */
.hero-slide.hero-slide--active {
  opacity: 1;
  z-index: 1;
}


@media (orientation: landscape) {
 .intro-panel {
  padding-top: 15px;
 }
 .logo {
  border-top: 0;
  max-width: 334px;
  margin-left: auto;
 }
 .socials {
  border-bottom: 2px dotted #FFF;
  padding-bottom: 15px;
  width: 100%;
 }
 .socials a:first-child {
  margin-left: auto;
 }
 .intro-header {
  margin-bottom: 0;
 }
 .intro-text {
  text-align: right;
 }
}


