.ColumnContainer {
  display: flex;
  flex-direction: column;
  gap: 75px;
  padding: 40px;
}

.RowContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.TextWrapper {
  flex-basis: 40%;
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.ImageWrapper {
  flex-basis: 45%;
  max-width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #dedcdc;
}

.TextContent {
  font-size: 22px;
  color: #444;
  margin: 0;
}

.ResponsiveImage {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

body {
  margin: 0;
  font-family: 'Garamond', serif;
  background-color: #dedcdc;
}
body {
  margin: 0;
  background-color: #dedcdc;
  font-family: 'EB Garamond', serif;
}


.SectionTitle {
  padding-top: 25px;
  justify-content: flex-end;
  font-size: 50px;
  color: #2a2a2a;
  text-align: center;
  overflow: hidden;
}

.Divider,
.TitleDivider {
  width: 30%;
  height: 1px;
  background-color: #c9c9c9;
  margin: 30px auto;
  border: none;
}

.MenuContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.MenuLinks {
  font-size: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: rgb(32, 32, 32);
}

.MenuLinks a {
  text-decoration: none;
  color: inherit;
}

.MenuLinks a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .RowContainer {
    flex-direction: column;
    gap: 4px;
  }

  .ImageWrapper {
    max-width: 85%;
    flex-basis: 100%;
    width: 100%;
  }

  .TitleDivider,
  .Divider {
    width: 70%;
  }

  .TextWrapper {
    padding: 0;
    margin: 0;
  }

  .TextContent {
    margin: 0;
    padding: 0;
    font-size: 20px;
  }
}

.Modal {
  display: none; 
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #c9c9c9;
  justify-content: center;
  align-items: center;
}


.ModalContent {
  margin: auto;
  display: block;
  max-width: 85%;
  max-height: 95vh; 
  object-fit: contain;
}


.ModalClose {
  position: absolute;
  top: 20px;
  right: 35px;
  color: rgb(0, 0, 0);
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
}

.FullWidthImage {
  justify-content: center;
}

.FullWidthImage .ImageWrapper {
  max-width: 60%;
  flex-basis: auto;
}

@media (max-width: 768px) {
  .FullWidthImage .ImageWrapper {
    max-width: 100%;
  }
  .ColumnContainer{
    gap: 20px;
  }
}


.ImageVisible {
  opacity: 1;
  transform: scale(1);
}

.ImageLoading {
  width: 15px;
  aspect-ratio: 1;
  border-radius: 50%;
  animation: l5 1s infinite linear alternate;
}

.ModalInner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#Loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  aspect-ratio: 1;
  border-radius: 50%;
  animation: l5 1s infinite linear alternate;
  z-index: 10;
}

.ImageLoading {
  display: none; 
}

@keyframes l5 {
    0%  {box-shadow: 35px 0 #000, -35px 0 #0002;background: #000 }
    33% {box-shadow: 35px 0 #000, -35px 0 #0002;background: #0002}
    66% {box-shadow: 35px 0 #0002,-35px 0 #000; background: #0002}
    100%{box-shadow: 35px 0 #0002,-35px 0 #000; background: #000 }
}