/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'EBGaramond-Regular';
  src: url('../fonts/EBGaramond-Regular.ttf') format('truetype');
  font-style: normal;
}

@font-face {
  font-family: 'EBGaramond-SemiBold';
  src: url('../fonts/EBGaramond-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'EBGaramond-SemiBoldItalic';
  src: url('../fonts/EEBGaramond-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
}

html, body {
  height: 100%;
}

body {
  font-family: 'EBGaramond-Regular', serif;
  background: #FAFADC;
  color: #222423;
  display: flex;
  flex-direction: column;
}

/* Header */
.header {
  position: relative;
  width: 100%;
}
.responsive-image {
  width: 100%;
  height: 60vh;
}

/* Hamburger menu */
.hamburger-menu {
  position: absolute;
  top: 20px;
  right: 20px;
}
.menu-icon {
  font-size: 30px;
  cursor: pointer;
  color: white;
  background: rgba(0,0,0,0.4);
  padding: 6px 12px;
  border-radius: 6px;
}

.hamburger {

  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background-color: #0000001A;
  color: #FAFADC;
  border: none;
  font-size: 1.5rem;
  padding: 12px 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.menu {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 150vw;
  max-width: 320px;
  background: #fff;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  transition: right 0.3s;
  z-index: 1000;
  padding: 10px 16px 16px 24px;
  display: flex;
  flex-direction: column;
  border-radius: 0px;
  color: #3E87D3;
  text-decoration-thickness: .1px;
}

.menu.open {
  right: 0;
}

.menu .close {
  align-self: flex-end;
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 2px;
}

.menu ul {
  list-style: none;
}

.menu li {
  margin: 8px;
}

.menu a {
  text-decoration: none;
  color: #222423;
  font-size: 17.6px;
  transition: color 0.2s;
  padding: 0 0 0 10px;
}

.menu a:hover {
  color: #0078d7;
  text-decoration: underline;
}

/* Content equal spacing */
.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;  /* center contents vertically */
  align-items: center;
  text-align: center;
  padding: 20px;
}
.block {
  max-width: 1000px;
  font-size: 20px;
  line-height: 1.6;
}
/* Space between description and phone */
.description {
  margin-bottom: 24px;  /* adjust as needed */
}

a {
  text-decoration: none;
  color: #222423;
  text-decoration-thickness: .1px;
}

a:hover {
  color: #0078d7;
  text-decoration: underline;
  text-decoration-thickness: .1px;
}

/* Footer pinned bottom */
.footer {
  background-color: #FAFADC;
  color: #222423;
  padding: 20px 10px 10px 10px;
  font-size: 14px;
  align-items: center;
  text-emphasis: center;
  display: flex;
  justify-content: space-between;
}

.footer .column {
  flex: 2;
}

.footer .left {
  text-align: left;
  text-decoration: none;
  color: #222423;
  font-size: 14px;
  transition: color 0.2s;
  padding: 0 0 0 10px;
}

.footer .right {
  text-align: right;
  color: #222423;
  padding: 0 10px 0 0px;
}

.footer>div {
  text-align: center;
}

/* Info icon */
.image-wrapper .info-icon {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.image-wrapper:hover .info-icon {
  opacity: 1;
  visibility: visible;
}

.info-icon {
  position: absolute;
  bottom: 14px;
  left: 8px;
  cursor: pointer;
  color: rgb(245, 239, 239);
  /* font-weight: bold; */
  font-size: 1.0em;
  width: 1.1em;
  height: 1.1em;
  line-height: .7em;
  text-align: center;
  border-radius: 50%;
  background-color: #5a5b5c;
  box-shadow:
    0 0 0 2px rgb(245, 239, 239) ; /* outer ring */
  user-select: none;
  z-index: 10;
  border: 2px solid rgb(245, 239, 239); /* subtle border inside the ring */
}

.info-icon:hover circle {
  fill: rgba(0, 0, 0, 0.1);
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.2));
}

.info-icon:hover .tooltip,
.info-icon:focus .tooltip,
.tooltip:hover {
  visibility: visible;
  opacity: 1;
}

.info-icon:hover,
.info-icon:focus {
  background-color: #797a7a; /* Light blue on hover (example) */
}

.tooltip {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 120%;
  transform: translateY(-50%);
  padding: 0.5em 0.7em 0.5em 15px;
  background: rgba(241, 239, 239, 0.85);
  color: #2b2a2a;
  border-radius: 4px;
  white-space: nowrap;
  transition: opacity 0.3s ease;
  z-index: 20;
  font-size: 10px;
  }

.tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  
  border-width: 5px;
  border-style: solid;
  border-color: transparent rgba(77, 76, 76, 0.85) transparent transparent;
  transform: translateY(-50%);
}

.tooltip a {
  color: #535251;
  text-decoration: underline;
}

.info-char {
  font-size: 0.8em; /* Reduce this to make the 'i' smaller */
  display: inline-block;
  line-height: inherit;
  vertical-align: middle;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  background: white;
  padding: 15px;
  width: 100%;
  text-align: center;
  z-index: 1000;
}

.cookie-banner div {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  color: white;
  padding: 15px;
  text-align: center;
  z-index: 1000;
}

.cookie-banner-btn-primary {
  margin-left: 10px;
  font-family: 'EBGaramond-Regular';
  margin-top: 10px;
  background-color: #2770B9;
  color: #FAFADC;
  width: 60px;
  height: 30px;
  border: none;
}

.cookie-banner-btn-secondary {
  margin-left: 10px;
  font-family: 'EBGaramond-Regular';
  margin-top: 10px;
  background-color: #e4eaea;
  color: #222423;
  width: 60px;
  height: 30px;
  border: none;
}
li {
  list-style: none;
}
@media (max-width: 768px) {
  .description {
    margin-bottom: 40px; /* bigger gap on mobile */
  }
}