/* ========== Base Reset ========== */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 10px;
  height: 100%;
  background-color: #ffffff;
  font-family: 'Arial', sans-serif;
  overflow-y: auto;
}

/* ========== Main Container ========== */
.jozek {
  position: relative;
  max-width: 800px;
  height: 100%;
  margin: 0 auto;
  padding: 20px;
  border: 2px solid #0268CE;
  border-radius: 8px;
  background: url('background.png') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}


/* ========== Left Text Content ========== */
.left-text {
  position: absolute;
  top: calc(25% + 10px);
  left: 33px;
  font-size: 40px;
  color: black;
  z-index: 2;
}

.left-text p {
  position: relative;
  left: 15px;
  top: -50px;
  font-size: 28px;
  color: navy;
  text-align: left;
  line-height: 40px;
  margin: 0;
  padding: 0;
}

/* ========== Arrows ========== */
/* Arrows container aligned with content */
.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;
}

/* 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;
}

/* ========== Footer ========== */
.copyright {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-top: auto;
  padding: 5px;
  font-family: inherit;
  z-index: 1;
}

/* ========== Responsive Typography ========== */
/* Base styles for mobile */
h1.site-title {
  font-size: 38px;
  text-align: center;
  color: black;
  margin: -12px;
}

h2 {
  font-size: 28px;
  text-align: center;
  color: black;
  font-weight: normal;
 
}

h3 {
  font-size: 20px;
  text-align: center;
  color: navy;
  font-weight: normal; 
  margin-bottom: 1px;
}

p {
  color: black;
  text-indent: 0;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 0px;
  font-size: 18px;
  
}

/* Tablet styles */
@media (min-width: 768px) {
  h1.site-title {
    font-size: 54px; /* bigger font for iPad */
  }
  h2 {
    font-size: 44px;
  }
  h3 {
    font-size: 26px;
  }
  p {
    font-size: 18px;
  }
}

/* Desktop styles */
@media (min-width: 1024px) {
  h1.site-title {
    font-size: 60px; /* even bigger for desktop */
  }
  h2 {
    font-size: 44px;
	
  }
  h3 {
    font-size: 30px;
	margin-bottom: -12px;
	margin-top: 10px;
  }
  p {
    font-size: 22px;
	margin-left: 50px;
	margin-right: 50px;
  }
}

/* --------------------------------
   Logo
-------------------------------- */
header {
  position: relative;
  padding: 30px;
}

.site-title {
  margin: 0;
  font-size: 2em;
}

.logo-link {
  position: absolute;
  top: -45px;   /* Adjust to move inside your design */
  right: -60px;
  z-index: 10;
}

.site-logo {
  width: 100%;
  max-width: 140px;
  height: auto;
}