* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000000;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  
}

.triptych {
  display: grid;
  grid-template-columns: 2fr 2fr;
  grid-template-rows: 1fr 1fr;
  column-gap: 12px;
  row-gap: 4px;
  height: 80vh;
  width: 400px;
}

.panel-left {
  grid-row: 1 / 3;
  grid-column: 1;
  width: 100%;
}
.panel-right-top {
  grid-row: 1;
  grid-column: 2;
}
.panel-right-bottom {
  grid-row: 2;
  grid-column: 2;
}

.panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-page {
  flex-direction: column;
  gap: 20px;
}

.back-link {
  position: fixed;
  top: 20px;
  left: 20px;
  color: #ffffff;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.back-link:hover {
  text-decoration: underline;
}

.gallery-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

#gallery-image {
  max-height: 75vh;
  max-width: 85vw;
  object-fit: contain;
  cursor: pointer;
}

#gallery-title {
  color: #ffffff;
  font-family: sans-serif;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.contact-page {
  flex-direction: column;
}

.contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 500px;
}

.contact-heading {
  color: #ffffff;
  font-family: sans-serif;
  font-size: 18px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: normal;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.contact-form input,
.contact-form textarea {
  background-color: #111111;
  border: 1px solid #333333;
  color: #ffffff;
  font-family: sans-serif;
  font-size: 14px;
  padding: 12px;
  width: 100%;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ffffff;
}

.contact-form button {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  cursor: pointer;
  font-family: sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  padding: 10px;
  text-transform: uppercase;
}

.contact-form button:hover {
  background-color: #ffffff;
  color: #000000;
}
.panel {
  position: relative;
  overflow: hidden;
}

.panel .hover-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  font-family: sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.panel:hover .hover-label {
  opacity: 1;
}