/* --------------------------------
   Reset & Base Layout
-------------------------------- */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 10px;
  height: 100%;
  background-color: #ffffff;
  font-family: 'Montserrat', 'Arial', sans-serif;
  overflow-y: auto;
}

/* --------------------------------
   Main Container
-------------------------------- */
.container {
  position: relative;
  max-width: 800px;
  height: 100%;
  margin: 0 auto;
  padding: 20px;
  border: 2px solid #0268CE;
  border-radius: 8px;
  background-image: url('background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}

/* --------------------------------
   Dimming Effect
-------------------------------- */
.dimmed {
  pointer-events: none;
}

.dimmed::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 5;
  pointer-events: auto;
}

/* --------------------------------
   Typography
-------------------------------- */
h1.site-title {
  font-size: 42px;
  text-align: center;
  color: black;
  margin: 0;
}

h2 {
  font-size: 34px;
  text-align: center;
  color: black;
  font-weight: normal;
  margin-top: 10px;
}

p {
  text-align: center;
  color: black;
  font-size: 22px;
}

/* --------------------------------
   Side Menu & Buttons
-------------------------------- */
.side-menu {
  position: absolute;
  top: 38%;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1;
}

.btn-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spacer {
  height: 25px;
}

.menu-btn {
  background-color: #0e52cc;
  color: white;
  border: 2px solid #0268CE;
  padding: 10px 10px;
  font-size: 16px;
  border-radius: 10px;
  width: 105px;
  text-align: center;
  font-weight: bold;
  transition: background-color 0.3s;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}

.menu-btn:hover {
  background-color: #0268CE;
}

/* --------------------------------
   Arrows
-------------------------------- */
.arrows-container {
  position: fixed;
  bottom: 42px;
  width: 800px;       /* match your content width */
  max-width: 80vw;    /* responsive fallback */
  left: 50%;          /* center horizontally */
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;    /* small padding so arrows don't hug edges */
  z-index: 10;
  pointer-events: none; /* container itself ignores pointer events */
}

/* Individual arrow styling */
.text-arrow {
  font-size: 30px;
  font-family: Arial, sans-serif;
  color: #0268CE;
  cursor: pointer;
  user-select: none;
  line-height: 1;
  transition: color 0.3s ease;
  pointer-events: auto; /* allow clicking the arrows */
}

.text-arrow:hover {
  color: #014aad;
}
#left-arrow.hidden {
  visibility: hidden;   /* keeps layout but hides the arrow */
  pointer-events: none; /* disables clicking */
}

/* --------------------------------
   Footer
-------------------------------- */
.copyright {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-top: auto;
  padding: 5px;
  z-index: 1;
}

/* --------------------------------
   Consent Popup
-------------------------------- */
.consent-wrapper {
  width: 100%;
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  background: transparent;
  text-align: center;
  pointer-events: none;
}

.consent-box {
  display: inline-block;
  background: #f1f1f1;
  border-top: 1px solid #ccc;
  padding: 20px 15px;
  min-height: 100px;
  text-align: center;
  opacity: 0;
  max-width: 800px;
  width: 100%;
  border-radius: 0 0 8px 8px;
  pointer-events: auto;
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 1.5s;
}

.consent-box p {
  font-size: 14px;
  margin: 5px 0;
}

.consent-box a {
  color: #0268CE;
  font-size: 13px;
  text-decoration: none;
  margin-bottom: 6px;
  display: inline-block;
}

.consent-box a:hover {
  text-decoration: underline;
}

.consent-box button {
  margin: 5px;
  padding: 8px 14px;
  font-size: 14px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.accept { background-color: #4CAF50; color: white; }
.decline { background-color: #f44336; color: white; }
.necessary { background-color: #ff9800; color: white; }

/* --------------------------------
   Fade-In Animation
-------------------------------- */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------------------
   Left Text Blocks
-------------------------------- */
.left-text {
  position: absolute;
  top: calc(30% + 10px);
  left: 33px;
  font-size: 40px;
  color: black;
  z-index: 2;
}

.left-text p {
  position: relative;
  left: -5px;
  top: -50px;
  font-size: 26px;
  color: navy;
  text-align: left;
  line-height: 28px;
}

.left-text.small p {
  font-size: 20px;
  top: -30px;
  left: 10px;
  line-height: 26px;
}

/* --------------------------------
   Bullet List
-------------------------------- */
.bullet-list {
  padding-left: 20px;
  max-width: 280px;
  font-size: 25px;
  line-height: 1.4;
  color: navy;
  list-style-type: disc;
  margin: 0;
}

.bullet-list li {
  margin-bottom: 20px;
}

/* --------------------------------
   Responsive Styles
-------------------------------- */
@media (max-width: 768px) {
  h1.site-title {
    font-size: 32px;
  }

  h2 {
    font-size: 22px;
  }

  .menu-btn {
    font-size: 14px;
    width: 90px;
  }

  .side-menu {
    top: 30%;
    right: 10px;
    gap: 8px;
  }

  .consent-wrapper {
    padding: 0 20px;
  }

  .consent-box {
    font-size: 13px;
    padding: 10px;
  }

  .consent-box button {
    font-size: 13px;
    padding: 7px 12px;
  }
}

@media (min-width: 769px) {
  
  .left-text p {
    top: -60px;
    left: 100px;
    font-size: 55px;
    line-height: 32px;
  }

  .left-text.small p {
    font-size: 30px;
    top: -40px;
    left: 50px;
    line-height: 30px;
  }


  .consent-box {
    margin: 0 auto;
    border-left: 2px solid #ccc;
    border-right: 2px solid #ccc;
  }
}
@media (max-width: 768px) {
  .site-title {
    font-size: 8vw;
  }
}
/* --------------------------------
   Logo
-------------------------------- */
header {
  position: relative;
  padding: 20px;
}

.site-title {
  font-size: 6vw;
}

.logo-link {
  position: absolute;
  top: -30px;   /* Adjust to move inside your design */
  right: -35px;
  z-index: 10;
}

.site-logo {
  width: 100%;
  max-width: 190px;  /* Default desktop size */
  height: auto;
}

@media (max-width: 600px) {
  .site-logo {
    max-width: 100px;  /* Smaller size for mobile */
  }
}
