@import url('https://fonts.googleapis.com/css2?family=Aclonica&family=Amatic+SC:wght@400;700&family=Bungee&family=Cantarell:ital,wght@0,400;0,700;1,400;1,700&family=Caveat:wght@400;500;600;700&family=Nunito:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Playball&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

/* CUSTOM FONTS */
@font-face {
    font-family: lansdowne;
    src: url(../assets/fonts/font-lansdowne/Lansdowne.otf);
}

@font-face {
    font-family: lansdowne-slanted;
    src: url(../assets/fonts/font-lansdowne/Lansdowne\ Slanted.otf);
}

@font-face {
    font-family: fonseca-medium;
    src: url(../assets/fonts/font-fonseca/Fonseca-Medium.otf);
}

@font-face {
    font-family: fonseca-light;
    src: url(../assets/fonts/font-fonseca/Fonseca-Light.otf);
}

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

body {
  background: url(../assets/img/main-bg-2.jpg);
  /* background-color: #ecdafa; */
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;

  color: #444444;
  overflow-y: hidden;
}

body::after {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: rgba(176, 141, 247, 0.6);
  z-index: -1;
}

a {
  color: #106eea;
  text-decoration: none;
}

a:hover {
  color: #717ff5;
  text-decoration: none;
}

/* ===== MAIN BUTTON ===== */
.main-button {
  position: fixed;
  left: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #81f0a4;
  border: 2px solid #52344e;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  overflow-x: hidden;
}

.main-button i {
  font-size: 24px;
  color: #6d80e8;
  -webkit-text-stroke: 2px #52344e;
  line-height: 0;
}

.main-button:hover {
  background: #6d80e8;
}

.main-button:hover i {
  color: #81f0a4;
}

/* ===== TITLE ===== */
.main-title {
  font-weight: 800;
  font-size: 100px;
  font-family: 'Bungee', cursive !important;
  letter-spacing: 5px;
  /* -webkit-text-stroke: 1px #52344e; */
  color: #ffd870;
  text-shadow: 
    0.05em 0.05em 0 #52344e,
    0.075em 0.075em 10px rgba(0, 0, 0, 0.5);
}

/* ===== SCROLL FOR MORE ===== */
#arrow {
  -webkit-animation: bounce 1s infinite  alternate;
  animation: bounce 1s infinite  alternate;
}

@-webkit-keyframes bounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

@keyframes bounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

a[href="#vol-6"]{
  text-decoration: none;
  /* color: #00008b; */
  color:#fd5a7e;
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: 0.05em 0.05em 0 #52344e;
}

a[href="#vol-6"] h5 {
  font-family: fonseca-light, 'Poppins', sans-serif !important;
  font-weight: 600;
  font-size: 15px;
}

a[href="#vol-6"] i {
  font-size: 30px;
}

/* ===== MODAL ===== */
/* .modal {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
} */

.modal .modal-content {
  border: 2px solid #52344e;
}

.modal .modal-content .modal-header {
  background-color: #6d80e8;
}

.modal .modal-content .modal-header .btn-close {
  color: #52344e;
  border: 2px solid #52344e;
  background-color: #fd5a7e;
  opacity: 1;
}

.modal .modal-content .modal-header .btn-close:active,
.modal .modal-content .modal-header .btn-close:focus {
  outline: none;
  box-shadow: none;
}

.modal .modal-content .modal-body {
  border-top: 2px solid #52344e !important;
  background-color: #ffd870;
  font-family: 'Cantarell', sans-serif;
  font-size: 20px;
  color: #52344e;
}

.modal .modal-content .modal-body h1 {
  font-family: 'Bungee', cursive;
}

/* ===== MAIN ===== */
#main {
  display: flex;
  flex-direction: row;
  overflow-y: hidden;
  overflow-x: scroll;
  position: relative;
}

section.photostory {
  min-height: 100vh;
  min-width: 100vw;
}

/* ===== TITLE ===== */
#title {
  /* background: url(../assets/img/brick-wall-1-bg.jpg); */
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

/* ===== CONTENT ===== */
.content {
  background-color: rgba(247, 238, 197, 1);
  border: 2px solid #52344e;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center !important;
  align-items: center !important;
  padding: 50px 50px;
  margin-top: 10px;
}

.content img {
  border-radius: 10% !important;
  border: 2px solid #52344e;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}

.content .caption {
  padding-left: 100px;
}

.content .caption h1 {
  font-family: 'Bungee', cursive;
  margin-bottom: 0;
  text-shadow: 0.05em 0.05em 0 #ffd870;
  color: #52344e;
}

.content .caption p {
  font-family: 'Cantarell', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 0;
}

.content .caption a {
  display: inline-block;
  padding: 0.625rem 1.875rem;
  line-height: 1.5625rem;
  background-color: transparent;
  border: 0.1875rem solid #6d80e8;
  color:#6d80e8;
  font-family: 'Bungee', cursive !important;
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: capitalize;
  border-radius: 0.5rem;
  box-shadow: 0px 2px 10px rgb(0 0 0 / 19%) !important;
  -webkit-transition: all .4s ease-out 0s;
  -o-transition: all .4s ease-out 0s;
  -moz-transition: all .4s ease-out 0s;
  transition: all .4s ease-out 0s;
}

.content .caption a:hover {
  background-color: #6d80e8;
  color: #f7eec5;
  letter-spacing: 2.5px;
}

/* ===== DECORATIONS ===== */
.decorations {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}

.deco-heading {
  background-color: rgba(255, 216, 112, 1);
  border: 2px solid #52344e;
  display: flex;
  justify-content: start;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
}

.deco-heading h1 {
  font-family: 'Bungee', cursive;
  margin-bottom: 0;
  color: #6d80e8;
}

.deco-heading h1 span {
  color: #52344e;
}

.deco-icons {
  background-color: rgba(62, 152, 247, 1);
  border: 2px solid #52344e;
  border-left: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 10px;
  /* margin-left: 10px; */
}

.deco-icons ul{
  list-style: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}

.deco-icons ul li {
  justify-content: center;
  align-items: center;
  margin: 0px 10px;
}

.deco-icons ul li i {
  color: #81f0a4;
  -webkit-text-stroke: 2px #52344e;
  font-size: 35px;
  text-align: center;
  cursor: pointer;
}

/* ===== PHOTOSTORY VOL. 6 ===== */
#vol-6 .container {
  opacity: 0;
  transform: translate(0, -40px);

  -webkit-transition: all .5s ease-out 0s;
  -o-transition: all .5s ease-out 0s;
  -moz-transition: all .5s ease-out 0s;
  transition: all .5s ease-out 0s;
}

#vol-6 .container.animate {
  opacity: 1;
  transform: translate(0, 0);
}

/* ===== PHOTOSTORY VOL. 7 ===== */
#vol-7 .container {
  opacity: 0;
  transform: translate(0, -40px);

  -webkit-transition: all .5s ease-out 0s;
  -o-transition: all .5s ease-out 0s;
  -moz-transition: all .5s ease-out 0s;
  transition: all .5s ease-out 0s;
}

#vol-7 .container.animate {
  opacity: 1;
  transform: translate(0, 0);
}

/* ===== PHOTOSTORY VOL. 8 ===== */
#vol-8 .container {
  opacity: 0;
  transform: translate(0, -40px);

  -webkit-transition: all .5s ease-out 0s;
  -o-transition: all .5s ease-out 0s;
  -moz-transition: all .5s ease-out 0s;
  transition: all .5s ease-out 0s;
}

#vol-8 .container.animate {
  opacity: 1;
  transform: translate(0, 0);
}

/* ===== PHOTOSTORY VOL. 9 ===== */
#vol-9 .container {
  opacity: 0;
  transform: translate(0, -40px);

  -webkit-transition: all .5s ease-out 0s;
  -o-transition: all .5s ease-out 0s;
  -moz-transition: all .5s ease-out 0s;
  transition: all .5s ease-out 0s;
}

#vol-9 .container.animate {
  opacity: 1;
  transform: translate(0, 0);
}