* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  opacity: 1;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: hidden;
  background-color: #fff;
  color: #2f2f2f;
  z-index: 1;
  opacity: 1;
}

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 900;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 110%;
  height: 110%;
  background-image: url(../assets/images/anne.jpg);
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 0.1s ease-out;
  filter: brightness(0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0 1rem;
  max-width: 90vw;
}

.hero-content h1 {
  font-family: 'Georgia', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 600;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
  margin-bottom: 0.5rem;
}

.hero-content h2 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 5vw, 3rem);
  text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}

.start-btn {
  cursor: pointer;
  width: 280px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(99, 99, 99, 0.86);
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.25s ease-in-out;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  user-select: none;
}

.start-btn:hover {
  background-color: rgba(78, 78, 78, 0.67);
}

.back-btn {
  width: 0;
  height: 0;
  padding: 10px 20px;
  font-size: 1.1rem;
  background: transparent;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.back-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 30px;
  background: transparent;
  z-index: 950;
}

#main {
  height: 100vh;
  background-color: #f9f6f2;
  color: #2f2f2f;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
  text-align: center;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-content h2 {
  font-size: clamp(4rem, 10vw, 8rem);
  margin: 0; 
}

.hero-content h1 {
  font-size: clamp(6rem, 15vw, 12rem);
  margin: 0;
}

.main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  width: 100%;
  align-items: center;
}

.timeline {
  display: none;
  position: fixed;
  top: 0;
  right: 60px;
  height: 100vh;
  width: 80px;
  z-index: 99999;
  pointer-events: none;
}

.timeline-line {
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  background: linear-gradient(to bottom, #ccc, #000);
  border-radius: 3px;
  animation: growLine 1.2s ease-out forwards;
}

@keyframes growLine {
  from { height: 0%; }
  to { height: 80%; }
}

.timeline-dot {
  width: 20px;
  height: 20px;
  background: #e63946;
  border: 3px solid #fff;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(230, 57, 70, 0.7);
  transition: top 0.3s ease-out;
}

.timeline-year {
  position: absolute;
  left: -60px;
  font-size: 18px;
  font-weight: 700;
  background: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: top 0.3s ease-out;
  user-select: none;
}

/* =================== SECTIONS =================== */


/* Section headings */
.section h2 {
  font-size: 50px;
  font-weight: 700;
 
  color: #222;
}

/* Info container with side-by-side boxes */
.info-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 800px;
  width: 100%;
}

.info-container > div {
  flex: 1 1 350px;
  background-color: #fff;
  padding: 25px 30px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  font-size: 1.15rem;
  line-height: 1.7;
  color: #444;
  transition: all 0.5s ease;
  opacity: 1;
  transform: translateY(0);
}

/* For smooth appearing animations */
.show {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* =================== SPECIFIC SECTIONS BACKGROUNDS =================== */

/* Birth section */
.section-birth {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #f9f9f9, #fff8e1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  pointer-events: none;
  z-index: 10;
}

.star {
  font-size: 60px;
  color: gold;
  text-shadow: 0 0 10px rgba(255,215,0,0.8);
}

.birth-date {
  font-size: 28px;
  font-weight: 700;
  color: #555;
}

.info-left,
.info-right {
  flex: 1;
  min-width: 250px;
  background-color: #fafafa;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* Escape to Netherlands */
.wrapper-childhood,
.wrapper-escape {
  height: 150vh;
}



.escape-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.section-escape .info-container {
  gap: 25px;
}


.section-childhood {
  background: linear-gradient(135deg, #6dd5fa, #2980b9); /* světle modrá až střední modrá */
  color: white;
  padding: 4rem 3rem;

  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  text-align: center;
}

.section-escape {
  background: linear-gradient(135deg, #1bdf66, #2c3e50); /* tmavší modrozelená */
  color: white;
  padding: 4rem 3rem;

  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  text-align: center;
}

.section-occupation {
  background: linear-gradient(135deg, #0255a8, #22303c); /* temně šedá s modrým nádechem */
  color: white;
  padding: 4rem 3rem;

  box-shadow: 0 8px 40px rgba(0,0,0,0.7);
  text-align: center;
}

.section-backtrack {
  background: linear-gradient(135deg, #4e749b, #1a252f); /* hlubší modrošedá */
  color: #e0f8f4;
  padding: 4rem 3rem;
 
  box-shadow: 0 8px 30px rgba(15,65,40,0.4);
  text-align: center;
}

.section-deportation {
  background: linear-gradient(135deg, #2e5a25, #000000); /* černá sekce */
  color: #ccc;
  padding: 4rem 3rem;

  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  text-align: center;
}

.section-annex {
  background: linear-gradient(135deg, #4b1e1e, #000000); /* také černá (pokud chceš dvě temné sekce) */
  color: #ccc;
  padding: 4rem 3rem;

  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  text-align: center;
}

.section-remember {
  background: linear-gradient(135deg, #532f70, #2c2c2c); /* tmavě šedá, melancholická */
  color: #eee;
  padding: 4rem 3rem;
  
  box-shadow: 0 8px 30px rgba(102,60,0,0.3);
  text-align: center;
}




/* =================== OVERLAY =================== */

.overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100vw; height: 100vh;
      background: black;
      opacity: 0;
      pointer-events: none;
      z-index: 1000;
    }

/* =================== RESPONSIVE =================== */



section {
  
  height: 230vh; /* fullscreen */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
 

  overflow: hidden;
  color: white;
  transition: background 1s ease;
  /* základní pozadí, přepíše JS podle sekce */
  background: linear-gradient(135deg, #333, #555);
}

/* Různá pozadí podle sekcí */
.section-childhood {
  background: linear-gradient(135deg, #a8edea, #fed6e3);
  color: #333;
}

.section-escape {
  background: linear-gradient(135deg, #606c88, #3f4c6b);
}

.section-occupation {
  background: linear-gradient(135deg, #434343, #000000);
}

.section-diary {
  background: linear-gradient(135deg, #283048, #859398);
}

.section-betrayal {
  background: linear-gradient(135deg, #42275a, #734b6d);
}

.section-death {
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
 
}

.section-conclusion {
  background: linear-gradient(135deg, #11998e, #38ef7d);
}


  



/* Když se má objevit */
.image-box.visible {
  opacity: 1;
  transform: translateY(0);
}



.content-box h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}



.content-box, .image-box {
  position: absolute;
  top: 20%;
  right: 10%;
  transform: translateY(-50%);
  max-width: 460px;
  padding: 2rem 2.2rem;
  background-color: #1e1e1e;
  border-left: 4px solid #e3b505;
  border-right: 4px solid #e3b505;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  color: #f5f5f5;
  font-family: 'Segoe UI', sans-serif;
  font-size: 1.15rem;
  line-height: 1.65;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease, opacity 0.3s ease;

 


}

.image2-box img{
  border-radius: 10px;
}

.image2-box{
 position: absolute;
 border-radius: 10px;
 top: 30%;
 width: 20%;
 height: 200px;
 background-image: url(../assets/images/born.jpg);
 background-repeat: no-repeat;
 background-size: cover;
}

.content-box h2 {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
  color: #ffd369;
  font-weight: 600;
}
.content-box p {
  margin: 0;
  color: #dcdcdc;
}

.image-box {
  position: absolute;
  left: 10%;
  
}

.image-box h2{
  color: white;
}

.section-title{
  position: absolute;
  top: 5%;
  font-size: 60px;
}

p{
  height: 100%;
  width: 100%;
}

.gallery {
  position: absolute;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  opacity: 0; /* nastav na 0 až později pro animaci */
  z-index: 10;
}

.gallery-image {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.summary-section {
  overflow-x: hidden;
  position: relative;
  height: 100vh;
  padding: 3rem 5vw;
  background: linear-gradient(135deg, #1e1e2f, #12121a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #f0f0f5;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  user-select: none;
  overflow: visible;
}

.summary-title {
  color: white;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 500px;
  letter-spacing: 0.03em;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.summary-timeline-container {
  position: relative;
  width: 90%;
  max-width: 900px;
  height: 8px;
  background: #3b3b59;
  border-radius: 4px;
  box-shadow: inset 0 0 12px #2a2a42;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
  margin-bottom: 3rem;
}

.summary-timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 8px;
  background: #5c5c7d;
  border-radius: 4px;
  transform: translateY(-50%);
  z-index: 0;
}

.summary-point {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--point-color, #729dfc);
  box-shadow:
    0 0 10px var(--point-color),
    inset 0 0 8px var(--point-color);
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
  z-index: 2;
  animation: pulse 2.5s ease-in-out infinite;
}

.summary-point:hover {
  transform: scale(1.3);
  filter: drop-shadow(0 0 12px var(--point-color));
  box-shadow:
    0 0 25px var(--point-color),
    inset 0 0 15px var(--point-color);
  z-index: 10;
  animation: none;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 0 10px var(--point-color),
      inset 0 0 8px var(--point-color);
  }
  50% {
    transform: scale(1.15);
    box-shadow:
      0 0 25px var(--point-color),
      inset 0 0 15px var(--point-color);
  }
}

.summary-dates {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 600;
  color: #a5a5c8;
  user-select: none;
  letter-spacing: 0.05em;
  padding: 0 2px;
  z-index: 5;
}

.summary-tooltip {
  position: absolute;
  bottom: 350px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(255, 255, 255, 0.95);
  color: #12121a; /* pevná barva textu */
  padding: 1.4rem 2rem;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25); /* výchozí box-shadow */
  font-weight: 700;
  font-size: 1.3rem;
  max-width: 340px;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
  user-select: none;
  white-space: normal;
  line-height: 1.75;
  letter-spacing: 0.02em;
  z-index: 20;
}

.summary-tooltip::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: rgba(255 255 255 / 0.95) transparent transparent transparent;
}



.diary-section {
  overflow-x: hidden;
  height: 100vh;
  padding: 5rem 8vw;
  background: linear-gradient(135deg, #1a1a2e, #0f0f1f);
  color: #f0f0f0;
  font-family: 'Georgia', serif;
  position: relative;
  overflow: hidden;
}

.diary-intro {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 1s ease forwards;
}

.diary-quote {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 1rem;
  color: #a3b9ff;
}

.diary-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #ffffff;
}

.diary-description {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
  color: #ccccdd;
}

.diary-book {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4rem 0;
  gap: 3rem;
  flex-wrap: wrap;
  animation: fadeInUp 1.5s ease forwards;
}

.diary-page {
  width: 280px;
  height: 380px;
  background: #f8f8f8;
  color: #121212;
  padding: 1.5rem;
  box-shadow: 0 0 30px rgba(100, 100, 255, 0.25);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.diary-page:hover {
  transform: scale(1.05);
}

.page-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.diary-entry {
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  line-height: 1.6;
  white-space: pre-line;
}

.diary-versions {
  animation: fadeInUp 2s ease forwards;
  text-align: center;
  margin-top: 4rem;
}

.versions-title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #ffffff;
}

.version-books {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.version-book {
  padding: 1.5rem;
  border-radius: 10px;
  width: 280px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.version-book h4 {
  margin-bottom: 0.8rem;
  font-size: 1.25rem;
  color: #f8f8f8;
}

.version-book p {
  font-size: 0.95rem;
  color: #ddddf5;
  line-height: 1.5;
}

.version-book.original {
  background-color: #2f2f4f;
  box-shadow: 0 0 20px rgba(80, 100, 255, 0.4);
}

.version-book.edited {
  background-color: #3a2f4f;
  box-shadow: 0 0 20px rgba(200, 80, 255, 0.3);
}

.version-book.final {
  background-color: #2f4f3a;
  box-shadow: 0 0 20px rgba(100, 255, 180, 0.3);
}

.version-book:hover {
  transform: translateY(-5px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




.hideout-section {
  height: 100vh;
  padding: 50px;
  background: linear-gradient(135deg, #141629, #1c1f3a);
  color: #f0f0f5;
  font-family: 'Georgia', serif;
  overflow: hidden;
  overflow-x: hidden;
}

.hideout-header {
  text-align: center;
  margin-bottom: 3rem;
  margin-right: 100px;
}

.hideout-title {
  font-size: 2.6rem;
  font-weight: bold;
  color: #f4f4ff;
  margin-bottom: 0.5rem;
}

.hideout-subtitle {
  font-size: 1.2rem;
  color: #a5a5d1;
}

.hideout-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  align-items: flex-start;
}

.hideout-text {
  position: absolute;
  align-self: flex-start;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #d4d4e8;
  max-width: 600px;
}

.hideout-images {
  margin-bottom: 200px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 150px;
  max-width: 400px;
}

.hideout-images img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.hideout-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(90, 120, 255, 0.7);
}

.hideout-facts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.fact {
  background: #2b2e4b;
  padding: 1.8rem 2rem;
  border-radius: 14px;
  width: 280px;
  box-shadow: 0 0 20px rgba(90, 120, 255, 0.25);
  transition: background 0.3s ease;
  text-align: center;
}

.fact:hover {
  background: #3c3f6c;
  box-shadow: 0 0 30px rgba(90, 120, 255, 0.45);
}

.fact h4 {
  color: #aabbff;
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.fact p {
  color: #d5d5f2;
  font-size: 1.05rem;
  line-height: 1.4;
}

/* --- Animace textu fade-in s delay --- */
.fade-in-text {
  opacity: 0;
  transform: translateY(20px);
  animation-fill-mode: forwards;
  animation-name: fadeInUp;
  animation-duration: 0.8s;
  animation-timing-function: ease-out;
}

.delay-1 {
  animation-delay: 0.3s;
}
.delay-2 {
  animation-delay: 0.6s;
}
.delay-3 {
  animation-delay: 0.9s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Parallax efekt obrázků při scrollu --- */
.parallax-img {
  will-change: transform;
  transition: transform 0.2s ease-out;
}

/* Parallax JS uděláme níže */





.hideout-visual{
  height: 100vh;
}
/* Celý obsah vycentrovaný s max šířkou */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
  color: #d0e4ff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Textová část zabírá přibližně 40% */
.hideout-text1 {
  flex: 1 1 40%;
  min-width: 320px;
}

.hideout-text1 h2 {
  color: white;
  font-size: 2.6rem;
  margin-bottom: 1rem;
  color: #aad3ff;
}

.hideout-text1 p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #c0d7ff;
}


.hideout-map-wrapper {
  flex: 1 1 60%;
  position: relative;
  min-width: 400px;
}

.white{
  color: white;
}

.tooltip-box {
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  background: #11233fdd;
  padding: 0.8rem 1.3rem;
  border-radius: 12px;
  box-shadow: 0 0 12px #aad3ff88;
  color: #aad3ff;
  font-size: 1rem;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  transition: opacity 0.25s ease;
  opacity: 1;
  z-index: 10;
}

.interactive-hideout {
  width: 100%;
  height: auto;
  border-radius: 12px;
  background-color: #0c1a36;
  box-shadow: 0 0 30px #2a3f6f88;
  user-select: none;
  display: block;
}

/* Místnosti styl */
.room rect {
  fill: #3b4a63;
  stroke: #aad3ff;
  stroke-width: 3;
  transition: fill 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  rx: 10; 
  ry: 10;
}

.room:hover rect {
  fill: #5a73a0;  
  filter: drop-shadow(0 0 6px #aaccee);
}

.room text {
  fill: #aad3ff;
  font-size: 20px;
  font-weight: 600;
  pointer-events: none;
  user-select: none;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.image-box_okupace{
  background-image: url(../assets/images/okupace.jpg)
}

.image-box_backtrack{
  background-image: url(../assets/images/72a5eb00023e3699903ca6f2cc611803_resize=1960\,1306_.jpg);
}

.image-box_deportace{
  background-image: url(../assets/images/Varsavske-gheto.jpg);
}

.image-box_death{
  background-image: url(../assets/images/tombstone-1735439_1280.jpg);
}

@media only screen and (max-width: 600px) {

  .hero-content h1{
    font-size: 60px;
    
  }

  .hero-content h2{
    font-size: 40px;
  }

  .start-btn{
    width: 150px;
    height: 50px;
    font-size: 20px;
  }

  .timeline-year{
    font-size: 10px;
    left: -25%;
    top: 0;
  }

  .section-escape .image2-box img{
    width: 300px;
  }

  .section-escape .image2-box{
    background-image: none;
  }

  .section h2{
    font-size: 30px;
    position: absolute;
    top: -2%;
  }

  section {
    padding: 3rem 1.5rem;
  }

  .timeline {
    right: -5%;
  }

  .image-box, .content-box{
    font-size: 10px;
    width: 300px;
    height: 100px;
    right: 0;
  }

  .image-box{
    margin-top: 100px;
  }

  .content-box{
    
    left: 10%;
    padding: 0;
    padding-top: 15px;
    margin-top: -70px;
  }

  .image2-box{
    width: 300px;
  }

  .summary-title{
    font-size: 25px;
  }

  .summary-tooltip{
    bottom: 20%;
    font-size: 15px;
  }

  .section-content {
    padding: 0 1rem;
  }

  .timeline-container {
    gap: 1rem;
  }

  .timeline-tooltip {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .diary-title, .hideout-title, .hideout-text1 h2{
    text-align: center;
    font-size: 35px;
  }

  .diary-page{
    width: 300px;
    height: 150px;
    
  }

  .left-page{
    height: 400px;
  }

  .diary-section{
    display: flex;
    flex-direction: column;
    height: 280vh;
  }

  .diary-entry{
    font-size: 10px;
  }
  
  .hideout-section{
    display: flex;
    flex-direction: column;
    height: 280vh;
  }

  .hideout-text, .hideout-text1{
    padding: 20px;
  }

  .hideout-images{
    margin-top: 300px;
  }
}









