/* VARIABLES
----------------------------------------------- */
:root {
    --background-color: #FFFEFA;
    --Tittle_color_primary: #18788B;
    --Tittle_color_primary_hover: #44a4b8;

    --NavBar_Button: #0e2c4d;

    --overlay_IMG: #52909c9a;
}

@font-face {
    font-family: 'Chalkboard';
    src: url('../Fonts/Chalkboard/Chalkboard-Regular.ttf') format('truetype');
} 

@font-face {
    font-family: 'lazy_dog';
    src: url('../Fonts/Lazy_Dog/lazy_dog.ttf') format('truetype');
}  

@font-face {
    font-family: 'MelonFruit';
    src: url('../Fonts/Melon_Fruit/Melon\ Fruit.otf') format('truetype');
} 

@font-face {
    font-family: 'WorkSans';
    src: url('../Fonts/WorkSans/Fonts/TTF/WorkSans-Variable.ttf') format('truetype');
} 

/* BASE
----------------------------------------------- */
body {
    background-color: var(--background-color);
    margin: 0; 
    opacity: 0;
    transition: opacity 1s ease-in-out; 
}

body.loaded {
    opacity: 1;
}

.GradientLine {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, #00000000, var(--Tittle_color_primary), #00000000);
}

.fade-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}


/* --------------------------------------------------------------------- */
.close {
  position: absolute;
  right: 32px;
  top: 32px;
  width: 32px;
  height: 32px;
  opacity: 0.7;
  transition: .3s ease;
  cursor: pointer;
}
.close:hover {
  opacity: 1;
}
.close:before, .close:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 33px;
  width: 2px;
  background-color: #ffffff;
}
.close:before {
  transform: rotate(45deg);
}
.close:after {
  transform: rotate(-45deg);
}


/* --------------------------------------------------------------------- */
.arrow {
    border: solid #fff;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 8px;

    transition: .3s ease;
}

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

/* IMAGE VIEWER
----------------------------------------------- */
#ImageViewer {
    width: 100%;
    height: 100vh;
    position: fixed;
    background-color: #999999aa;
    backdrop-filter: blur(3px);
    z-index: 21;
    display: none;
    justify-content: center;
    align-items: center;
    transition: .3s ease;
    opacity: 0;
}

.imageContainer {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 90vw;
    max-height: 100vh;
    width: auto;
    height: 89vh;
    overflow: hidden;
}

.imageContainer img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: .3s ease;
}

.imageContainer:hover .projectInfo{
    opacity: 1;
}

.projectInfo {
    display: flex;
    opacity: 0;
    justify-content: space-between;

    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000000bd;
    backdrop-filter: blur(3px);
    color: white;
    padding: 10px;
    box-sizing: border-box;

    transition: .3s ease;
}

.Btn_VisitProject {
    display: flex;
    cursor: pointer;
    justify-content: space-around;
    align-items: center;
    width: 160px;
    border: 2px solid #fff;
    border-width: 0px 0px 2px 0px;
    border-radius: 0px;
    transition: .3s ease;
}

.Btn_VisitProject:hover {
    background-color: #ffffff;
    border-radius: 12px;
}

.Btn_VisitProject p {color: #fff; font-family: "Chalkboard"; font-size: 18px; font-weight: 550;}
.Btn_VisitProject:hover p {color: #000;}

.Btn_VisitProject:hover .arrow {
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: translate(5px) rotate(-45deg);
}

/* PARALLAX
----------------------------------------------- */
#SplashArt_2_text {
  display: none;
}

#SplashArt_1_text {
  display: none;
}

#SplashArt_1 {
    height: 43vw;
    width: 90%;
    margin-left: 5%;
    padding-top: 100px;
    background-image: url("../Images/0.Menú/1.splash\ art.png");
    background-attachment: scroll;
    background-position: center 0px;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 1;
    will-change: background-position;
}

#SplashArt_2 {
    height: 40vw;
    width: 90%;
    margin-left: 5%;
    background-image: url("../Images/0.Menú/2.splash\ art.png");
    background-attachment: scroll;
    background-position: center 0px;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 1;
    will-change: background-position;
    /* box-shadow: rgba(0, 0, 0, 0.137) 0px -14px 20px 8px; */
}

#SplashArt_1_Text {
    position: absolute;
    width: 25%;
    top: 4468px;
    left: 1250px;
}

#SplashArt_2_Text {
    position: absolute;
    width: 30%;
    top: 180px;
    left: 160px;
  }

.Artist_Title {transition: .3s ease;}
.Artist_Title:hover {transform: scale(1.1);}

/* PROJECTS
----------------------------------------------- */
.project_container {
    background-color: var(--background-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0px 40px 0px;
    /* box-shadow: 0px -14px 20px 8px #00000023; */
}
#project_list_mobile{display: none;}
#project_list {
    width: 90%;
    padding: 20px 0px 70px 0px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

.column {
  flex: 24%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid #00000023;
  box-shadow: 2px 5px 5px 0px #00000023;
  transition: .2s ease-in-out;
  z-index: 2;
}

.column img:hover {
    transform: scale(1.1) rotate(2deg);
    z-index: 5;
    position: relative;
}

#portfolio_Title {
    font-size: 38px;
    margin-bottom: 15px;
    margin-top: 15px;
    font-weight: 600;
    font-family: "Chalkboard";
    color: var(--Tittle_color_primary);
}

#imageTitle {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 400;
    font-family: "Chalkboard";
    color: #fff;
    margin-right: 30px;
}

@media screen and (max-width: 767px) {
  #SplashArt_1_Text {
    display: none;
  }

  #SplashArt_2_Text {
    display: none;
  }

  #project_list{display: none;}
  #project_list_mobile{
    width: 90%;
    padding: 20px 0px 70px 0px;
    display: block;
  }

  #SplashArt_2 {
    display: none;
  }

  #SplashArt_1 {
    display: none;
  }

  #SplashArt_1_text {
    display: block;
    height: 43vw;
    width: 90%;
    margin-left: 5%;
    padding-top: 88px;
  }

  #SplashArt_2_text {
      display: block;
      width: 90%;
      margin-left: 5%;
  }
}