/* Bnaar section start Start */

.photoshoot-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  margin-top: 3vh;
}

/* Left Image Side */
.photoshoot-left {
  flex: 0 0 55%;
  position: relative;
  overflow: hidden;
  animation: slideFromLeft 1s ease forwards;
}

.photoshoot-left img {
  width: 100%;
  margin-top: 1vh;
  height: 115vh;
  object-fit: cover;
  display: block;
  filter: brightness(80%) contrast(110%);
  transition: transform 0.8s ease, filter 0.8s ease;
}

.photoshoot-left:hover img {
  transform: scale(1.05);
  filter: brightness(90%);
}

/* Right Text Content */
.photoshoot-right {
  flex: 0 0 45%;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 116vh;
  padding: 70px;
  animation: slideFromRight 1s ease forwards;
}

/* Headline */
.photoshoot-right h1 {
  font-size: 12vh;
  font-weight: 700;
  margin-bottom: 2px;
  text-transform: uppercase;
  line-height: 1.1;
  opacity: 0;
  transform: translateX(100%);
  animation: slideFadeRight 1s ease forwards;
  animation-delay: 0.3s;
}

.photoshoot-right h1 span{
  color: #00a0e3;
  font-weight: 200;
}

/* Paragraph */
.photoshoot-right p {
  font-size: 20px;
  line-height: 1.6;
  opacity: 0;
margin-right: 7vh;
  text-align: end;
  transform: translateX(100%);
  animation: slideFadeRight 1s ease forwards;
  animation-delay: 0.6s;
}

/* Animations */
@keyframes slideFromLeft {
  0% { transform: translateX(-100%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideFromRight {
  0% { transform: translateX(100%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideFadeRight {
  0% { transform: translateX(100%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 900px) {
  .photoshoot-section {
    flex-direction: column;
  }
  .photoshoot-left, .photoshoot-right {
    flex: 0 0 100%;
    height: 60vh;
  }
  .photoshoot-right h1 {
    font-size: 6vh;
  }
  .photoshoot-right p {
    font-size: 16px;
  }
}



@media (max-width: 480px) {

  .photoshoot-section {
    flex-direction: row;              
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    height: auto;
    margin-top: 11vh;
    overflow: hidden;
  }

  .photoshoot-left {
    flex: 0 0 50%;                
    height: auto;
    margin-top: 0;
  }

  .photoshoot-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-top: 0;
  }

  .photoshoot-right {
    flex: 0 0 50%;                
    height: auto;
    padding: 2px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;              
  }

  .photoshoot-right h1 {
    font-size: 3.7vh;
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .photoshoot-right p {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
  }
}



@media (min-width: 481px) and (max-width: 1024px) {

  .photoshoot-section {
    flex-direction: row;              
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    height: auto;
    margin-top: 10vh;    
    overflow: hidden;

  }

  .photoshoot-left {
    flex: 0 0 50%;                
    height: auto;
    margin-top: 0;
  }

  .photoshoot-left img {
    width: 100%;
    height: 100%;         
    object-fit: cover;
    margin-top: 0;
 
  }

  .photoshoot-right {
    flex: 0 0 50%;                
    height: auto;
    padding: 5px 15px;      
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;              
  }

  .photoshoot-right h1 {
    font-size: 4.9vh;       
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .photoshoot-right p {
    font-size: 19px;       
    line-height: 1.6;
    text-align: center;
  }
}



/* Bnaar section start Start */




/* Intro Part start */

.photoshoot-intro {
  background-color: white; 
  padding: 40px 20px;
  text-align: center;
  color: #00a0e3;
}

.photoshoot-intro .container {
  max-width: 900px;
  margin: 0 auto;
}

.photoshoot-intro h2 {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 600;
}

.photoshoot-intro p {
  font-size: 22px;
  line-height: 1.6;
  max-width: 1200px;
  color: #555;
  margin: 0 auto;
}



@media screen and (max-width: 480px) {
  .photoshoot-intro {
    padding: 15px 15px !important; 
    margin-top: 0 !important;     
    position: relative;
    width: 100% !important; 
  }

  .photoshoot-intro h2 {
    font-size: 20px;
    margin-top: 0 !important;    
  }

  .photoshoot-intro p {
    font-size: 15px;
    width: 100% !important;
    line-height: 1.4;
    margin-top: 5px;
  }
}



@media screen and (min-width: 481px) and (max-width: 1024px) {
  .photoshoot-intro {
    padding: 30px 20px;
  }
  .photoshoot-intro h2 {
    font-size: 28px;
  }
  .photoshoot-intro p {
    font-size: 18px;
    line-height: 1.5;
  }
}

/* Intro part End */





/* Image Gallery Section */
.image-gallery {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  
}

.image-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

/* Each Image Box */
.image-wrapper {
  position: relative;
  flex: 1 1 calc(25% - 20px); /* 4 images per row */
  min-height: 300px;
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
  perspective: 1000px; /* 3D effect for shutter */
}

.image-wrapper img {
  width: 100%;
  height: 97%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}


.image-wrapper::before,
.image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 2;
  transition: transform 0.6s ease, opacity 0.4s ease;
}

.image-wrapper::before {
  left: 0;
  transform-origin: left;
  transform: rotateY(-90deg); 
}

.image-wrapper::after {
  right: 0;
  transform-origin: right;
  transform: rotateY(90deg); 
}


.image-wrapper:hover::before {
  transform: rotateY(0deg); 
}

.image-wrapper:hover::after {
  transform: rotateY(0deg); 
}

/* Optional subtle zoom */
.image-wrapper:hover img {
  transform: scale(1.05);
}

/* Responsive design */
@media (max-width: 1024px) {
  .image-wrapper {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .image-wrapper {
    flex: 1 1 100%;
  }
}
