* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #f6f6f6;
  color: #333;
}

html {
  scroll-behavior: smooth;
}

.exit-button {
  position: fixed;
  top: 2rem;
  left: 2rem;
  background-color: #fcf1f0;
  color: #bf2c6a;
  font-size: 24px;
  text-decoration: none;
  text-align: center;
  padding: 0.5rem 1rem;
  border: 2px solid #bf2c6a;
  border-radius: 100px;
  height: 50px;
  width: 50px;
  font-weight: 800;
  z-index: 999;
  transition: all 0.2s ease;
}

.exit-button:hover {
  background-color: #f9ca24;
  border: 3px solid #f9ca24;
  color: white;
}


.container {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

/* Left Column (Sidebar) */
.sidebar {
  flex: 0 0 30%;
  background-color: #fcf1f0;
  padding: 2rem;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-right: 1px solid #ddd;
}

.sidebar nav ul {
  list-style: none;
  padding-left: 30px;

}

.sidebar nav ul li {
  margin-bottom: 1.2rem;
}

.sidebar nav ul li a {
  text-decoration: none;
  color: #c79c97;
  font-size: 1.1rem;
  font-weight: bold;
  transition: color 0.2s ease;
}

.sidebar nav ul li a:hover {
  color: #f0932b;
}

.sidebar h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
  font-size: 2.4vw;
  color: #bf2c6a;
  font-weight: 600;
}

.sidebar h2 {
  font-size: 2rem;
  font-family: "Playfair Display", serif;
  font-size: 1.6vw;
  color: #bf2c6a;
  font-weight: 600;
}

.sidebar p {
  font-size: 1rem;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  font-size: 1.2vw;
  font-weight: 500;
  color: #c79c97;
  padding-bottom: 10px;
}

/* Right Column (Gallery) */
.gallery {
  flex: 1;
  padding: 2rem;
  overflow-y: scroll;
  display: grid;
  grid-template-columns: 1fr;
  background-color: #fcf8f7;
  gap: 1rem;
  scroll-behavior: smooth;
}

.image-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 20px;
}

.image-row img {
  width: 100%;
  max-width: 24%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease; /* smooth zoom animation */
  cursor: pointer;
  overflow: hidden;
}

.image-row img:hover {
  transform: scale(1.75); /* zooms in the image slightly */
  z-index: 1;
}

.image-row-still {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 15px;
  padding-left: 50px;
  padding-right: 50px;
}

.image-row-still img {
  width: 100%;
  max-width: 50%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease; /* smooth zoom animation */
  cursor: pointer;
  overflow: hidden;
}

.gallery h1{
  padding-top: 50px;
  font-family: "Ppoppins", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #c79c97;
  margin: 0;
}

.gallery h2{
  padding-top: 20px;
  padding-bottom: 5px;
  font-family: "Ppoppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #c79c97;
  margin: 0;
}

.gallery p {
  font-size: 1.1rem;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  font-size: 1.0vw;
  font-weight: 500;
  color: #c79c97;
  padding-top: 20px;
  padding-bottom: 30px;
  padding-right: 40px;
  margin: 0;
}

.hyperlink{
  color: #c79c97;
  font-weight: 800;
}

.min{
  margin: 30px;
  width: 60vw;
}

.stacked-images {
  display: flex;
  flex-direction: column; /* stack vertically */
}

.stacked-images img {
  display: block;         /* removes inline spacing */
  width: 65vw;            /* optional: full container width */
  height: auto;
  margin: 0;              /* no margin */
  padding: 0;             /* no padding */
  border: none;           /* no border */
}


.image-pair {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;            /* full viewport height */
  padding: 2rem 4rem;       /* large outer margins */
  gap: 4rem;                /* space between images */
  box-sizing: border-box;
}

.image-pair img {
  max-height: 100%;
  max-width: 45%;           /* allow space for padding + gap */
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}












