* {
  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;
}

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

.gallery img{
  width: 50vw;
  padding-left: 10vw;
}

.links{
  color: #c79c97;
  font-weight:700;
}

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

#scrub {
    width: 100%;
    margin-top: 8px;
    -webkit-appearance: none;
    background: transparent;
  }
  #scrub::-webkit-slider-runnable-track { height: 6px; background: #e3e3e3; border-radius: 6px; }
  #scrub::-webkit-slider-thumb { -webkit-appearance: none; width: 14px; height: 14px; border-radius: 50%; background: #B31C85; margin-top: -4px; }
  #scrub::-moz-range-track { height: 6px; background: #e3e3e3; border-radius: 6px; }
  #scrub::-moz-range-thumb { width: 14px; height: 14px; border-radius: 50%; background: #B31C85; border: none; }