/* styles.css */
*{
  font-family: poppins;
}
body {
  margin: 0;
  font-family: 'Georgia', serif;
  background-color: #1b1b1b;
  color: #f4f4f4;
  line-height: 1.6;
}

h2 {
  text-align: center;
  margin-bottom: 1rem;
}

h4{ 
  text-align: center;
  margin-bottom: 1rem;
}

header.hero {
  position: relative;
  overflow: visible; /* allows clipping to show fully */
  height: 80vh; /* or your chosen height */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background: url('header.png') no-repeat center center/cover;
}

/* Overlay to reduce opacity of background image */
header.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.4); /* 40% opacity black overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.25rem;
  font-style: italic;
  color: #ccc;
}

main {
  padding: 2rem;
  background: #2b2b2b;
}

.timeline {
  max-width: 900px;
  margin: auto;
}

.timeline h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #888;
  padding-bottom: 0.5rem;
}

.event {
  background: #3a3a3a;
  border-left: 4px solid #d9534f;
  margin-bottom: 2rem;
  padding: 1rem 1.5rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.event h3 {
  color: #ffcc00;
  margin-bottom: 0.5rem;
}


.timeline-line {
  position: relative;
  height: 6px;
  background: #d9534f;
  margin: 2rem auto 3rem auto;
  max-width: 700px;
  border-radius: 3px;
}

.timeline-dot {
  position: absolute;
  top: 50%;
  width: 15px;
  height: 15px;
  background: #3a3a3a;
  border: 3px solid #d9534f;
  border-radius: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: background 0.3s, border-color 0.3s;
}

.timeline-dot:hover {
  background: #d9534f;
  border-color: #ffcc00;
}

.timeline-dot.active {
  background: #ffcc00;
  border-color: #ffcc00;
}

/* Position dots evenly */
.timeline-dot[data-event="0"] { left: 0%; }
.timeline-dot[data-event="1"] { left: 12.5%; }
.timeline-dot[data-event="2"] { left: 25%; }
.timeline-dot[data-event="3"] { left: 37.5%; }
.timeline-dot[data-event="4"] { left: 50%; }
.timeline-dot[data-event="5"] { left: 62.5%; }
.timeline-dot[data-event="6"] { left: 75%; }
.timeline-dot[data-event="7"] { left: 87.5%; }
.timeline-dot[data-event="8"] { left: 100%; }


.event-details {
  max-width: 700px;
  margin: auto;
  background: #3a3a3a;
  padding: 1.5rem 2rem;
  border-left: 4px solid #d9534f;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.event-details h3 {
  color: #ffcc00;
  margin-bottom: 0.5rem;
}




.map-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border: 2px solid #444;
  border-radius: 8px;
  background: #222;
}
.map-image {
  margin: 15px;
  margin-top: 50px;
  margin-left: 10%;
  margin-bottom: 50px;
  width: 80%;
  display: block;
  border-radius: 8px;
}
.pin {
  position: absolute;
  width: 15px;
  height: 15px;
  background: #e46f6b;
  border: 2px solid #ffcc00;
  border-radius: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px #ffcc00;
}
.tooltip {
  position: absolute;
  background: rgba(0,0,0,0.85);
  color: white;
  padding: 10px;
  border-radius: 8px;
  width: 220px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1000;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.8);
}
.tooltip img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 8px;
  user-select: none;
}
.tooltip strong {
  font-size: 1.1em;
  display: block;
  margin-bottom: 6px;
}
.tooltip p {
  font-size: 0.9em;
  margin: 0;
  line-height: 1.2em;
}


.newspaper-clipping {
  max-width: 300px; /* control size */
  width: 80%;
  margin: 0 auto 1rem;
  display: block;
  border: 3px solid #ffcc00;
  box-shadow: 0 0 15px #ffcc00;
  border-radius: 8px;
  /* optionally add some animation or filter */
}


.animation-strip {
  margin: 20px;
  color: white;
  display: flex;
  overflow: hidden;
  width: 100%;
  gap: 30px;
  animation: slide-left 25s linear infinite;
}

.animation-strip:hover {
  animation-play-state: paused;
}


.block{
  margin-left: 5%;
  align-self: center;
  align-items: center;
  color: white;
  text-align: center;
  
}
.heading{
  font-size: 40px;
  font-weight: lighter;
  color: white;
}

.box1{
  color: #2e1f0e;
  background-color: #efaaaa;
  flex: 0 0 320px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  padding: 1.5rem;
  border-radius: 12px;
  font-size: small;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.animation-strip2 {
  margin: 20px;
  color: white;
  display: flex;
  overflow: hidden;
  width: 100%;
  gap: 30px;
 
}
.animation-strip2:hover {
  animation-play-state: paused;
  
}


.box1 img{
  width: 150px;
  border-radius: 15px;
}
.box {
  flex: 0 0 350px; /* wider box */
  background: #d9534f;
  color: white;
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(217, 83, 79, 0.5);
  cursor: pointer;
  transition: transform 0.3s ease;
  font-size: 1.1rem;
}

.box1:hover {
  transform: scale(1.08);
  z-index: 5;
}
.box:hover {
  transform: scale(1.08);
  z-index: 5;
}

@keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Adjust based on number of boxes */
  }
}


@keyframes slide-right {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(-50%); /* Adjust based on number of boxes */
  }
}
footer {
  text-align: center;
  padding: 1rem;
  background: #111;
  color: #aaa;
  font-size: 0.9rem;
}

.citations-list {
  max-width: 750px;
  margin: 3rem auto;
  padding: 2rem 2.5rem;
  background: #2f241b; /* deep rich brown */
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
  font-family: 'Georgia', serif;
  color: #d9b382; /* soft ochre */
  font-size: 1.05rem;
  line-height: 1.7;
  border-left: 6px solid #b07a3a; /* muted ochre accent */
  transition: background-color 0.3s ease;
  list-style: none; /* Remove default bullets */
}

.citations-list:hover {
  background: #3b2f25; /* slightly lighter on hover */
}

.citations-list li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 1.2rem;
}

/* Only triangle bullets */
.citations-list li::before {
  content: "▹"; /* subtle arrow bullet */
  position: absolute;
  left: 0;
  top: 0;
  color: #b07a3a; /* ochre bullet */
  font-size: 1.3rem;
  line-height: 1;
}

.citations-list a {
  color: #e4c88b; /* lighter ochre */
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-bottom-color 0.25s ease;
}

.citations-list a:hover {
  color: #f0dca0; /* brighter ochre */
  border-bottom-color: #f0dca0;
  text-decoration: none;
}



