* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Times New Roman", Times, serif;
}

.hero-section {
  position: relative;
  height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: start;
  text-align: justify;
  color: #fff;
  background-image: url(/Picturs/flag\ .jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 100vh rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  animation: slowZoom 1s infinite alternate;
}
@keyframes slowZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}

.hero-content {
  max-width: 800px;
  padding: 60px;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.5s;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem); /* Responsive font size */
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1.1;
  font-style: italic;
  text-shadow: 0px 2px 14px rgba(0, 0, 0, 0.9);
  letter-spacing: -1px;
  opacity: 0.9;
  color: antiquewhite;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  margin-left: 2.5rem;
  align-items: flex-start;
  line-height: 1.1;
  opacity: 0.7;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(2px);
  }
}
@media (max-width: 375px) {
  .hero-content {
    max-width: 10vh;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
}
@media (max-width: 300px) {
  .hero-content {
    max-width: 100vh;
  }
  .hero-subtitle {
    font-size: 0.8rem;
  }
}

.description {
  padding: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url(/Picturs/1000271030.jpg);
  background-attachment: fixed;
}
.description-h2 {
  font-size: clamp(1.5rem, 5vw, 2.8rem);
  padding-bottom: 16px;
  line-height: 1.1;
  color: #333;
  top: 0;
}
.description-text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  margin-left: 2.5rem;
  align-items: flex-start;
  line-height: 1.1;
  color: #333;
  opacity: 0.7;
}
/* monument */
.monument {
  height: 100vh;
  display: grid;
  grid-template-rows: 12rem;
  position: relative;
  overflow: hidden;
}

.monument-label {
  padding: 3rem 5vw 1.5rem;
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  position: relative;
}
.monument-number {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.4;
}
.monument-era {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.monument-name {
  font-size: clamp(1.6rem, 4vw, 3.5rem);
  font-weight: 700;
}
.monument-name em {
  font-style: italic;
  color: rgba(119, 103, 9, 0.8);
  font-size: 0.65em;
  display: block;
  margin-top: 0.3rem;
}

.monument-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  position: relative;
}

.img-panel {
  position: relative;
  overflow: hidden;
}
.img-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 2s;
}
.img-panel:hover img {
  transform: scale(1.4);
}

.img-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  padding: 0.45rem 0.9rem;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  z-index: 1;
}
.badge-then {
  background: #000;
  color: #fff;
  border-radius: 99px;
}
.badge-now {
  background: #000;
  color: #fff;
  border-radius: 99px;
}

.img-panel.old img {
  filter: sepia(1.4) brightness(0.5) contrast(1);
}
.divider-label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 19px;
  width: 44px;
  height: 44px;
  border-radius: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.desc-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 50%;
  background: rgba(0, 0, 0, 0.4) 40%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.desc-text {
  padding: 1.5rem 5vw 2.2rem;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.85);
}
.desc-text strong {
  display: block;
  margin-bottom: 0.4rem;
  letter-spacing: 0.4em;
  font-size: 0.8rem;
  text-transform: uppercase;
}

/* ── Outro ── */
#outro {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  gap: 2rem;
}
#outro .bg-img {
  position: absolute;
  inset: 0;
  background: url("/Picturs//Outer\ background.jpg");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 0 100vh rgba(0, 0, 0, 0.6);
}
#outro .quote {
  position: relative;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  max-width: 700px;
  line-height: 1.8;
  animation: slowZoom 4s infinite alternate-reverse;
}
#outro .quote::before,
#outro .quote::after {
  content: '  " ';
}

@keyframes slowZoom {
  from {transform: scale(0.8);}
  to { transform: scale(1);}
}
