* {
  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;
  padding-bottom: 0px;
}

.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: 0px;
}

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

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

.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;
}

.gallery h1{
  padding-top: 50px;
  font-family: "Ppoppins", sans-serif;
  font-size: 1.6rem;
  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;
  margin: 0;
}

.text-link {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  padding-left: 70px;
}

.text-link a {
  color: #c79c97 ; /* link color */
  text-decoration: none; /* remove underline */
  font-weight: bold;
  transition: color 0.2s ease;
}

.text-link a:hover {
  color: #bf2c6a; /* hover color */
  text-decoration: underline;
}


.min{
  width: 70vw;
}


.video-container {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}

.video-container video {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  padding-bottom: 10px;
}

.media-row {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
  margin: 2rem 0;
  padding: 2rem; /* ✅ Added padding around the whole row */
  flex-wrap: wrap; /* allows stacking on small screens */
}

.media-item {
  flex: 1;
}

.media-item img,
.media-item video {
  width: 100%;
  height: auto;
/*  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);*/
  cursor: pointer;
}

.videos {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Mobile layout */
@media (max-width: 768px) {
  .media-row {
    flex-direction: column;
  }

  .videos {
    flex-direction: column;
  }
}

