@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;900&display=swap');

:root {
  --size-step--2: clamp(0.78rem, calc(0.71rem + 0.35vw), 1.04rem);
  --size-step--1: clamp(0.94rem, calc(0.84rem + 0.50vw), 1.30rem);
  --size-step-0: clamp(1.13rem, calc(0.99rem + 0.68vw), 1.63rem);
  --size-step-1: clamp(1.35rem, calc(1.16rem + 0.93vw), 2.03rem);
  --size-step-2: clamp(1.62rem, calc(1.37rem + 1.26vw), 2.54rem);
  --size-step-3: clamp(1.94rem, calc(1.61rem + 1.68vw), 3.17rem);
  --size-step-4: clamp(2.33rem, calc(1.88rem + 2.24vw), 3.97rem);
  --size-step-5: clamp(2.80rem, calc(2.21rem + 2.96vw), 4.96rem);
  --tracking: -0.05ch;
  --tracking-s: -0.075ch;

  /* Colors (extracted) */
  --body-color: #3E3E3E;

  --link-color: #000000;
  --link-hover-color: #cc0066;

  --accent-color: #cc0066;
  --accent-bg-color: #FFEAF4;

  --navicon-color: #333333;

  --menu-border-color: #666666;
  --menu-bg-start: rgba(255,255,255,0.38137261740633754);
  --menu-bg-end: rgba(255,255,255,1);

  --clickable-hover-bg-color: #FFEAF4;

  --close-hover-text-color: #FFFFFF;
  --close-hover-bg-color: #CC0000;

  --button-text-hover-color: #ffffff;

  --footer-divider-color: #6e6e6e;

  --other-articles-link-color: #062726;

  --calendar-border-color: #ddd;
  --calendar-header-bg-color: #004975;
  --calendar-header-text-color: #ffffff;

  --status-available-bg: #e0f7fa;
  --status-available-text: #00695c;

  --status-provisional-bg: #fff9c4;
  --status-provisional-text: #f57f17;

  --status-booked-bg: #ffebee;
  --status-booked-text: #b71c1c;
  --focus-color: var(--accent-color);
  --focus-ring: 0 0 0 3px rgba(204, 0, 102, 0.35);
}

body {
  margin: 0;
  font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.5;
  font-size: var(--size-step--1);
  color: var(--body-color);
}

a {
  color: var(--link-color);
  text-decoration: none;
}
a:hover {
  color: var(--link-hover-color);
  text-decoration: none;
}
a:focus-visible {
  outline: 2px solid var(--focus-color);
  outline-offset: 3px;
  text-decoration: underline;
}

a:hover {
  color: var(--accent-color);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  border: 1px solid #ccc;
  padding: 0.4em 0.5em;
  font-family: inherit;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  border-color: var(--focus-color);
  box-shadow: var(--focus-ring);
}
input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--focus-color);
  outline-offset: 2px;
}
button.conbut {
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
}

button.conbut:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(204, 0, 102, 0.45);
}
input:focus-visible + label,
textarea:focus-visible + label,
select:focus-visible + label {
  color: var(--accent-color);
}
.cf:before,
.cf:after { content: " "; display: table; }
.cf:after { clear: both; }
.cf { *zoom: 1; }

.monos, .monos2 {
  max-width: 100%;
  padding: 1em 0em 0em 0em;
}
.monos2 { width: 60%; height: auto; }

.duonos {
  width: 16rem;
  padding: 1em 1em;
}

img { max-width: 100%; }
img[width] { width: auto; /* Defer to max-width */ }
img[width][height] { height: auto; /* Preserve aspect ratio */ }

em {
  color: var(--accent-color);
  font-style: normal;
  font-weight: bold;
}

/* header */
.identity {
  text-align: center;
  font-size: var(--size-step-0);
  color: var(--accent-color);
  font-weight: normal;
}

.header {
  width: 100%;
  z-index: 3;
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

.header li a {
  display: block;
  padding: 14px 20px;
  text-decoration: none;
  font-size: 1rem;
}

.header li a:hover,
.header .menu-btn:hover {
  text-decoration: underline;
  color: var(--accent-color);
}

.header .logo {
  display: block;
  float: left;
  font-size: var(--size-step-3);
  padding: 10px 20px;
  text-decoration: none;
}

/* menu */
.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

/* menu icon */
.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: var(--navicon-color);
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: var(--navicon-color);
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before { top: 5px; }
.header .menu-icon .navicon:after { top: -5px; }

/* menu btn */
.header .menu-btn { display: none; }

.header .menu-btn:checked ~ .menu {
  max-height: 550px;
  border-top: 1px solid var(--menu-border-color);
  border-bottom: 1px solid var(--menu-border-color);
  background: rgb(255,255,255);
  background: linear-gradient(180deg, var(--menu-bg-start) 0%, var(--menu-bg-end) 100%);
}

.header .menu-btn:checked ~ .menu-icon .navicon { background: transparent; }
.header .menu-btn:checked ~ .menu-icon .navicon:before { transform: rotate(-45deg); }
.header .menu-btn:checked ~ .menu-icon .navicon:after { transform: rotate(45deg); }

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after { top: 0; }

.fl { float: left; }

.clickable { cursor: pointer; }
.clickable:hover { background-color: var(--clickable-hover-bg-color); }

.he { display: none; }

.i-frm-cont {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.i-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.main {
  display: flex;
  flex-wrap: wrap;
  width: 95%;
  max-width: 77.5em;
  clear: both;
  margin: 0 auto;
  z-index: 9;
}

.main h1, .main h2, .main h3 {
  color: var(--accent-color);
  font-weight: bold;
}

h1, h2, h3 {
  letter-spacing: var(--tracking-s);
  line-height: 1.2;
}

.main p, .main h2, .main h3, .main form {
  padding-left: 2rem;
  padding-right: 1rem;
}

h1 { font-size: var(--size-step-1); }
h2 { font-size: var(--size-step-1); margin-bottom:.1rem; }
h3 { font-size: var(--size-step--1); }

th {
  color: var(--accent-color);
  font-weight: bold;
  font-variant: small-caps;
}
.homep {
    text-align: center;
    font-size: var(--size-step--1);
    color: var(--accent-color);
    font-weight: normal;
  }
.contain { background-size: contain !important; }

/* The Close Button */
.close {
  font-size: 2em;
  line-height: 1;
  font-weight: bold;
  cursor: pointer;
  z-index: 2000 !important;
}

.close:hover,
.close:focus {
  color: var(--close-hover-text-color);
  text-decoration: none;
  cursor: pointer;
  background: var(--close-hover-bg-color);
}

.divlink { cursor: pointer; }
.pink {color:var(--accent-color);}
.divlink:hover {
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1.2);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1.2);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1.2);
  transition: all 200ms ease-in;
  transform: scale(1.1);
}

.b-claret { border: var(--accent-color) solid 3px; }
.b-claret p { margin-top: 0; }

.tc { text-align: center; }

.butlink {
  font-weight: bold;
  color: var(--accent-color);
  background-color: var(--accent-bg-color);
  padding: 0.5em 1.5em 0.5em 1.5em;
  border: solid 1px var(--accent-color);
}

.butlink:hover {
  color: var(--button-text-hover-color);
  background-color: var(--accent-color);
}

.tl { text-align: left; }

.pa0 {
  padding-left: 0;
  padding-right: 0;
}
/* ── BRAND LOGO BLOCK (full bleed) ─────────────────────────── */
.brand-strip-wrap {
  width: 100%;
  padding: 2rem 1rem;
}

.brand-strip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 0;
}

.brand-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

@media (min-width: 48em) {
  
  .brand-logo-item {
    padding: 0.5rem 1.5rem;
  }
  
}

.brand-logo-item a,
.brand-logo-item > img {
  display: flex;
  align-items: center;
}

.brand-logo-item a:hover {
  opacity: 0.75;
}

.brand-logo-item img {
  height: clamp(90px, 12vw, 150px);
  width: auto;
  max-width: 300px;
  object-fit: contain;
}

.brand-strip-footer {
  text-align: center;
  margin-top: 1rem;
}

@media (prefers-reduced-motion: reduce) { /* nothing to do — no animation */ }

footer {}

/* Foooterzzz */
.footper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
  position: relative;
  z-index: 100;
}

.conbut {
  font-weight: bold;
  color: var(--accent-color);
  background-color: var(--accent-bg-color);
  padding: 0.5em 1.5em 0.5em 1.5em;
  border: solid 1px var(--accent-color);
}

.conbut:hover {
  color: var(--button-text-hover-color);
  background-color: var(--accent-color);
}

.ftbrdrr { border-right: none; }
.ftbrdrl { border-left: none; }

.cprgt { padding-top: 3.5rem; }
.cntct { padding-top: 2.5rem; }

/* Ensure the parent section of "other-type" articles uses proper flexbox */
.other-articles-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 2rem;
  width: 100%;
  box-sizing: border-box;
}

/* Each article should take one-third of the width in this container */
.other-articles-section .w-third {
  flex-basis: 30%;
  max-width: 30%;
  text-align: left;
  padding: 1rem;
  box-sizing: border-box;
}

/* Headlines should be properly spaced and aligned */
.other-articles-section h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  word-break: break-word;
}

/* Styling the links */
.other-articles-section a {
  text-decoration: none;
  color: var(--other-articles-link-color);
}

/* Add hover effects for interactivity */
.other-articles-section a:hover { text-decoration: underline; }

/* 48em = 768px */
@media (min-width: 48em) {
  body {
    line-height: 1.7;
    font-size: var(--size-step--1);
  }

  article { position: relative; }

  .header ul {
    display: flex;
    justify-content: center;
  }

  .header li { float: left; }

  .header li a {
    padding: 20px 30px;
    font-size: var(--size-step--1);
  }

  .header .menu {
    text-align: center;
    clear: none;
    max-height: none;
  }

  .header .menu-icon { display: none; }

  .main {
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    max-width: 77.5em;
    clear: both;
    margin: 0 auto;
    z-index: 9;
  }

  .he { display: table-cell; }

  .homep {
    text-align: center;
    font-size: var(--size-step-0);
    color: var(--accent-color);
    font-weight: normal;
  }

  .main p, .main h2, .main form {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .w-50-ns { width: 50%; }
  .w-40-ns { width: 40%; }
  .w-30-ns { width: 30%; }
  .w-25-ns { width: 25%; }
  .w-20-ns { width: 20%; }

  .pa0 {
    padding-left: 0;
    padding-right: 0;
  }

  .monos {
    width: 12rem;
    padding: 1em 2em 0em 2em;
  }

  .monos2 {
    width: 8rem;
    padding: 1em 0.6em 0.2em 0.2em;
  }

  .duonos {
    width: 24rem;
    padding: 1em 2em;
  }

  .butlink {
    font-weight: bold;
    color: var(--accent-color);
    background-color: var(--accent-bg-color);
    padding: 0.5em 2.5em 0.5em 2.5em;
    border: solid 1px var(--accent-color);
  }

  .butlink:hover {
    color: var(--button-text-hover-color);
    background-color: var(--accent-color);
  }

  .ftbrdrr { border-right: solid var(--footer-divider-color) 1px; }
  .ftbrdrl { border-left: solid var(--footer-divider-color) 1px; }

  .other-articles-section .w-third {
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
}

/* Calendar Styling */
.calendar {
  margin-top: 1rem;
  overflow-x: auto;
}

.calendar table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

.calendar th, .calendar td {
  padding: 0.75rem;
  text-align: center;
  border: 1px solid var(--calendar-border-color);
}

.calendar th {
  background-color: var(--calendar-header-bg-color);
  color: var(--calendar-header-text-color);
  font-weight: bold;
}

.calendar td { font-size: 0.9rem; }

.status-available {
  background-color: var(--status-available-bg);
  color: var(--status-available-text);
}

.status-provisional {
  background-color: var(--status-provisional-bg);
  color: var(--status-provisional-text);
}

.status-booked {
  background-color: var(--status-booked-bg);
  color: var(--status-booked-text);
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .calendar th, .calendar td {
    font-size: 0.8rem;
    padding: 0.5rem;
  }
}
.hekma-logo {
  width: 100%;
  max-width: 412px;
}
.partner-logo-col {
  display: flex;
  align-items: center;
  justify-content: center;
}