.photo-gallery {
  display: flex;
  padding: 100px 30px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}
.photo-gallery div {
  width: 300px;
  height: 450px;
  position: relative;
}

.photo-gallery div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-gallery div p {
  position: absolute;
  color: grey;
  top: 10px;
  left: -30px;
  font-size: 18px;
  transform: rotate(90deg);
}
.photo-gallery div video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-info {
  text-align: center;
  padding: 1rem 1rem;
  border-radius: 10px;
  margin: 1rem auto;
  max-width: 900px;
}
.gallery-info h2 {
  font-size: 2rem;
  color: var(--black);
  font-family: var(--light-font);
  margin-bottom: 0.5rem;
}
.gallery-info p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 1rem;
}
.gallery-blog {
  text-align: left;
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}
.book-btn {
  background: #a0522d;
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
  transition: background 0.3s;
}
.book-btn:hover {
  background: #7a3e21;
}

/* Button */
.btn-style-one {
  display: inline-block;
  color: #000;
  padding: 12px 30px;
  font-weight: bold;
  border: 1px solid #000;
  transition: background 0.3s;
}
.btn-style-one:hover {
  background: #000;
  color: #fff;
}
