/* Font Face */
@font-face {
    font-family: "Walibi0615";
    font-weight: 700;
    src: url("fonts/walibi0615.ttf") format("truetype"),
         url("fonts/fonts/walibi0615.woff") format("woff"),
         url("fonts/walibi0615.woff2") format("woff2"),
         url("fonts/walibi0615.otf") format("opentype");
}


/* General Styles */
html, body {
    height: 100%;
    margin: 0;
    font-family: "futura-pt", sans-serif;
    font-size: 1.1rem; /* Base font size */
    display: flex;
    flex-direction: column;
}

/* Typography */
h1, .h1 {
    text-align: center;
    font-size: 2.5rem !important;
    font-weight: 700;
    margin-bottom: 0;
    padding-bottom: 12px;
    width: 100%;
    display: block;
    font-family: "Walibi0615", "Poppins", Helvetica, Arial, sans-serif;
}

h2, .h2 {
    text-align: center;
    font-size: 1.75rem !important;
    font-weight: 500;
    margin-bottom: 0;
    padding-bottom: 12px;
    width: 100%;
    display: block;
    font-family: "Poppins", Helvetica, Arial, sans-serif;
    color:var(--bs-body-color);
}

/* Header and Navbar */
header {
    text-align: center;
    padding-top: 1.25rem; /* 20px */
    margin-bottom: 2.5rem; /* 40px */
}

header img {
    max-width: 11.25rem; /* 180px */
    margin-bottom: 1.25rem; /* 20px */
}

.navbar {
    padding-top: 50px;
}

/* Page Layout */
.page {
    flex: 1;
    background: #fff;
    border-radius: 0.5rem; /* 8px */
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
    padding: 1.25rem; /* 20px */
    margin: 1.25rem auto; /* 20px */
    max-width: 60rem; /* 700px */
}

/* Logos */
.logos {
    text-align: center;
    margin: 40px 0;
}

/* Language Selector */
.lang-selector {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.875rem; /* 30px */
}

.lang-selector form {
    display: inline-block;
    margin: 0 1rem;
}

.lang-selector button {
    background-color: #3b82f6;
    color: white;
    border: none;
    padding: 0.625rem 1.875rem;
    border-radius: 50rem;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.lang-selector button:hover {
    background-color: #2563eb;
    cursor: pointer;
}

/* Language Visibility */
.lang-fr .nl, .lang-fr .en, .lang-fr .de,
.lang-nl .fr, .lang-nl .en, .lang-nl .de,
.lang-en .nl, .lang-en .fr, .lang-en .de,
.lang-de .nl, .lang-de .fr, .lang-de .en {
    display: none;
}

/* Intro Text */
.intro-text {
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-top: 1rem;
}

.intro-text p {
    margin: 0;
}

/* Footer */
.footer {
    background-color: #333;
    padding: 0.625rem 0;
    text-align: center;
    color: white;
    width: 100%;
    font-size: 0.75rem;
}

.footer a {
    text-decoration: none !important;
}

/* Buttons */
.btn-wbe, .btn-aqa {
    color: #ffffff !important;
    border-color: transparent !important;
}

.btn-wbe {
    background-color: #F81700 !important;
}

.btn-wbe:hover, .btn-wbe:focus, .btn-wbe:active {
    background-color: #d71500 !important;
    border-color: #c21400 !important;
}

.btn-aqa {
    background-color: #13B5EA !important;
}

.btn-aqa:hover, .btn-aqa:focus, .btn-aqa:active {
    background-color: #0ea1d0 !important;
    border-color: #0c90b8 !important;
}

/* Text Colors */
.text-wbe {
    color: #F81700 !important;
}

.text-aqa {
    color: #13B5EA !important;
}

/* Bootstrap adaptations */
.page {
    background-color: var(--bs-dark);
    color: var(--bs-light);
}

.px-10 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-10 {
  padding-left: 5rem;
  padding-right: 5rem;
}

.container {
border:2px solid #F81700;
}

/* DAtepicker */

.dtp {
max-width:100%;
overflow-x:auto;
}

.dtp table {
  width: 100%;
  text-align: center;
table-layout:fixed;
  border-collapse: collapse;
  margin-top: 10px;
}

.dtp thead td {
  font-weight: bold;
  color: #adb5bd; /* Bootstrap text-muted */
  padding: 0.5rem 0;
}

.dtp td {
  padding: 0.7rem;
  border: 1px solid #dee2e6;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dtp td.available {
  background-color: #297477;
  color: white;
}

.dtp td.available:hover,
.dtp td.available:focus {
	background-color: #153d3e;
}

.dtp td.near-month:hover {
  background-color: var(--bs-gray-700);
}

.dtp td.unavailable,
.dtp td.near-month {
  background-color: var(--bs-gray-700);
  color: #adb5bd;
  cursor: not-allowed;
}

.dtp td.selected {
  background-color: #0d6efd;
  color: white;
}

.dtp td.available.nocturne.cur-month {
  background-color: #E9775C;
}

.dtp td.available.nocturne.cur-month:hover {
  background-color: #db421e;
}

.dtp td {
border:1px solid black
}

/* Datepicker paging */


/* === Calendar header layout === */
.dtp .paging {
  display: flex;
  align-items: center;
  gap: .75rem;
  /* arrows left/right, month centered */
  justify-content: space-between;
}

/* Center the month name and keep it on one line */
.dtp .paging .month-name {
  flex: 1;
  text-align: center;
  white-space: nowrap;
  font-weight: 600;
}

/* The plugin prints "Oct<br>2025". Hide the <br> to keep one line */
.dtp .paging .month-name br {
  display: none;
}

/* Arrow containers (click targets) */
.dtp .paging .prev,
.dtp .paging .next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  cursor: pointer;
  user-select: none;
  /* feel free to tweak colors to your theme */
  color: #fff;
}

.dtp .paging .prev:hover,
.dtp .paging .next:hover {
  background: rgba(255,255,255,.12);
}

/* === Arrow icons (using the <i> elements that are already in the HTML) === */
/* If another stylesheet cleared these, we put them back */
.dtp .paging i.prev::before {
  content: "\2039"; /* ‹ */
  display: inline-block;
  font-size: 1.25rem;
  line-height: 1;
}

.dtp .paging i.next::before {
  content: "\203A"; /* › */
  display: inline-block;
  font-size: 1.25rem;
  line-height: 1;
}

/* Optional: if your theme italicizes <i>, neutralize it for icons */
.dtp .paging i.prev,
.dtp .paging i.next {
  font-style: normal;
}








.table.table-dark tr,
.table.table-dark td {
    border: none !important;
}

.table.eventtable td {
    padding: 0.2rem 0.5rem;
    line-height: 1;
}




/* Responsive Design */
@media (max-width: 480px) { /* 768px */
    .lang-selector {
        flex-direction: column;
        align-items: center;
    }

    .lang-selector button {
        margin: 0.625rem 0;
        width: 80%;
    }

    h1, .h1 {
        font-size: 0.75rem;
    }

  .dtp table th,
  .dtp table td {
    padding: 0.25rem;
    font-size: 0.8rem;
  }

  .dtp .paging {
    gap: 0.5rem;
  }

  .dtp .paging .month-name {
    font-size: 1rem;
  }

  .dtp .paging .prev,
  .dtp .paging .next {
    width: 1.75rem;
    height: 1.75rem;
  }

.px-10 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-10 {
  padding-left: 2rem;
  padding-right: 2rem;
}

}
