/* CSS Document */

/* Navigation */

li a {
  color:white;
}
li a:hover {
  color:whitesmoke;
}

/* Texts */

h2 {text-align: center;}
h3 {text-align: center;}
h4 {text-align: center;}
p {text-align: center;}

table, th, td {
  text-align: center;
  font-size: large;
  margin-right: auto;
  margin-left: auto;
  border:0px;
}

blockquote {
  text-align: center;
}

/* Images */
.img-responsive {
  margin: 0 auto;
  display: block;
}

  /* Breakpoints */

  .row-height {
    display: flex;
  }
  
  .pr0 {
    padding-right: 100px;
  }
  
  .col-custom {
    border: 1px solid blue;
  }
  
  .img-box {
    display: inline-flex;
    width: 100%;
    height: 100%;
  }
  
  .img-box img {
    object-fit: cover
  }

  /* Social Media Icon */

  ion-icon {
    font-size: 64px;
  }
 
/* Interactive PDF */

#myPDF {
  width: 80%;
  height: 1000px;
  border: 0px;
}

/*this pdf file is not working, fix it to center of web layout*/

iframe {
  margin-left: 100px;
  margin-right: 100px;
} 
 
  /* Footer */

  #footer {
    text-align: center;
}

/* Collage Images */

.collage img {
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.collage img:hover {
  transform: scale(1.05);
}



.collage-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0 auto;
  max-width: 100%;
}
.collage-container img {
  width: 100%;
  height: 300px;
  display:block;
  object-fit: cover;
}
.collage-item {
  padding: 0;
  margin: 0;
}

/* Animated Background */
body, html {
  height: 100%;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}
.animated-bg {
  position: relative;
  height: 300vh;
  background: linear-gradient(-45deg, #260505, #53033c, #7d043e, #e8326f);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
}
@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 20px;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.photo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}
.photo-grid figure {
  display: block;
  text-align: center;
}
.photo-grid img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.photo-grid img:hover {
  transform: scale(1.1);
}
.photo-grid figcaption {
  color: #ffffff;
  margin-top: 10px;
}

/* Scrollable PDF Files */
.pdf-container {
  height: 130vh;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  border: 0px solid #ddd;
  position: relative;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}
.btn-position {
  position: absolute;
  top: -4px;
  z-index: 1;
}
.go-back-btn {
  left: 100px;
}
.next-page-btn {
  right: 100px;
}
iframe {
  width: 100%;
  height: 100%;
  border: none;
}
@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    iframe {
      display: block;
      width: calc(100% - 1px);
    }
  }
}



/* Background color for photoprocesses page */
body {
  background-color: #340320; /* Wine red background color */
  color: #fff; /* Optional: white text for contrast */
  margin: 0;
  padding: 0;
}

/* Social Media Icons */
.social-icons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.social-icons a {
  text-decoration: none;
  color: #585631;
  margin: 0 10px;
  font-size: 30px;
  transition: color 0.3s;
}
.social-icons a:hover {
  color: #0077b5;
}
.social-icons a.behance:hover {
  color: #1769ff;
}
.social-icons a.pinterest:hover {
  color: #e60023;
}
.copyright {
  margin-top: 20px;
  font-size: 16px;
  color: #ffffff;
  text-align: center;
}

