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

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

.projects {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 2rem;
}

.project-card {
  text-align: center;
}

.project-image {
  width: 100%;
  max-width: 50vw;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.project-image:hover {
  transform: scale(1.04);
}

.project-title {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #c79c97;
  text-decoration: none;

}











