/******************************************************************************
#CONTENT
******************************************************************************/

body,
html {
  background-color: #000;
  font-size: 100%;
}

html {
  min-height: 420px;
}

* {
  font-family: 'Anonymous Pro', monospace;
}

.hidden-absolute {
  display: none !important;
}

.personal main,
.comercial main,
.info main,
.contact main {
  margin-top: 240px;
}

@media (min-width: 768px) {
  /* --------------------- md -------------------- */
  .personal main,
  .comercial main,
  .info main,
  .contact main {
    margin-top: 0;
  }
}

/******************************************************************************
#TYPOGRAPHY
******************************************************************************/

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #eee;
  /* text-align: center; */
  user-select: none;
}

h1 {
  font-size: 1.1rem;
  font-weight: 900;
  margin: 2rem 0;
  border-bottom: 1px solid #fff;
  padding-bottom: 1rem;
}

h2 {
  font-size: 1.05rem;
}

p,  
li {
  color: #eee;
  font-size: 1rem;
}

li {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: #fff;
  
  &:hover {
    text-decoration: underline;
    color: #fff;
  }
}

/******************************************************************************
#MENU
******************************************************************************/

.menu {
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  left: 1rem;
  top: 1rem;
  transition: background-color .1s;
  user-select: none;
  z-index: 999;
}

.menu:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

@media (min-width: 768px) {
  /* --------------------- md -------------------- */
  .menu {
    background-color: rgba(0, 0, 0, 0);
    position: fixed;
    left: 2rem;
    top: 10rem;
  }
}

/* #LOGO
---------------------------------------------------------------------------- */

.menu a.logo {
  border-left: 4px solid transparent;
  color: #ccc;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
  padding: .1rem .5rem .1rem 1rem;
  transition-duration: .2s;
  transition-property: border-left, color;
}

.menu a.logo br.logo-name-br {
  display: none;
}

.menu a.logo span {
  font-size: 1.15rem;
}

.menu a.logo:hover {
  border-left-color: #fff;
  color: #fff;
  text-decoration: none;
}

.menu a.logo span {
  font-weight: 400;
}

@media (min-width: 768px) {
  /* --------------------- md -------------------- */
  .menu a.logo br.logo-name-br {
    display: inline;
  }
}

/* #NAV
---------------------------------------------------------------------------- */

.menu nav a {
  border-left: 2px solid transparent;
  clear: both;
  color: #666;
  display: block;
  float: left;
  margin-bottom: 0;
  padding: .1rem .5rem .1rem 1rem;
  transition-duration: .2s;
  transition-property: border-left, color;
  cursor: pointer;
}

.menu nav a:hover {
  color: #fff;
  text-decoration: none;
}

.menu nav a:active {
  color: #666;
}

.menu a#nav-active {
  border-left: 2px solid #fff;
  color: #fff;
  cursor: default;
}

.menu a#nav-active[href="index.html"] {
  border-left: 4px solid #fff;
  color: #fff;
  cursor: default;
}

@media (min-width: 768px) {
  /* --------------------- md -------------------- */
  .menu nav a {
    margin-bottom: .25rem;
  }
}

/* #SWITCH-LANGUAGE-BTN
---------------------------------------------------------------------------- */

.menu a.switch-language-btn {
  clear: both;
  color: #444;
  cursor: pointer;
  display: block;
  float: left;
  font-size: .95rem;
  margin-bottom: 0;
  padding: .1rem .5rem .1rem 1.1rem;
  transition-duration: .2s;
  transition-property: border-left, color;
}

.menu a.switch-language-btn:hover {
  color: #fff;
  text-decoration: none;
}

/******************************************************************************
#HOME
******************************************************************************/

.home {
  /* background-image: url('../img/personal/ella-2015/ella-2015-0.jpg'); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-size: contain;
  min-height: 100vh;
}

@media (min-width: 576px) {
  /* --------------------- sm -------------------- */

}

@media (min-width: 768px) {
  /* --------------------- md -------------------- */
  
}

@media (min-width: 992px) {
  /* --------------------- lg -------------------- */
  
}

@media (min-width: 1200px) {
  /* -------------------- xl -------------------- */

}

/******************************************************************************
#GALERIE
******************************************************************************/

a.galerie-img {
  margin-bottom: 1rem;
  user-select: none;
}

a.galerie-img img {
  border: 1px solid #000;
  opacity: .92;
  transition-duration: .2s;
  transition-property: border, opacity;
  width: 100%;
}

a.galerie-img.hidden-galerie {
  display: none;
}

a.galerie-img:hover img {
  border: 1px solid #fff;
  opacity: 1;
}

@media (min-width: 576px) {
  /* --------------------- sm -------------------- */
  a.galerie-img {
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 768px) {
  /* --------------------- md -------------------- */
  a.galerie-img {
    margin-bottom: 2rem;
  }
}

@media (min-width: 992px) {
  /* --------------------- lg -------------------- */
  a.galerie-img {
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 1200px) {
  /* -------------------- xl -------------------- */
  a.galerie-img {
    margin-bottom: 3rem;
  }
}

/******************************************************************************
#LANGUAGES
******************************************************************************/

.lang-es {
  display: none;
}

.lang-en {
  display: inline;
}

/******************************************************************************
#INFO
******************************************************************************/

.info p a {
  color: #666;
  font-weight: 700;
}

.info p a:hover {
  color: #fff;
}

/******************************************************************************
#PHOTOBOOK
******************************************************************************/

.photobook.photobook-link a {
  color: #fff;
  font-size: 1.125rem;
}

/******************************************************************************
#SERIES
******************************************************************************/

a.series-link {
  text-align: center;
  margin-top: 2rem;
  user-select: none;
}

a.series-link img {
  border: 1px solid #000;
  opacity: .92;
  transition-duration: .2s;
  transition-property: border, opacity;
  max-width: 100%;
}

a.series-link.series-link-vertical img {
  max-width: 80%;
}

a.series-link:hover img {
  border: 1px solid #fff;
  opacity: 1;
}

a.series-link h2 {
  color: #aaa;
  margin-top: 1rem;
}

a.series-link:hover h2 {
  color: #fff;
}

.series-link:hover {
  color: #fff;
  text-decoration: none;
}

.series-link img {
  max-height: 320px;
}

.series-info {
  margin-bottom: 2rem;
}

/* @media (min-width: 768px) { */
  /* a.series-link { */
    /* display: flex; */
    /* flex-direction: column; */
    /* justify-content: center; */
  /* } */
/* } */

/******************************************************************************
#BREADCRUMBS
******************************************************************************/

.breadcrumbs {
  color: #333;
  position: relative;
  text-align: right;
  top: -1.5rem;
  user-select: none;
}

.breadcrumbs a {
  color: #666;
  text-decoration: none;
  transition: color .2s ease;
}

#breadcrumbs-active {
  color: #ccc;
  cursor: default !important;
  font-weight: bold;
}

.breadcrumbs a:hover {
  color: #fff;
}

/******************************************************************************
#COLLECTION NAV
******************************************************************************/

nav.collection-nav {
  padding: 1rem 0;
  text-align: center;
  margin: 1rem auto;
}

nav.collection-nav .collection-nav-link {
  color: #666;
  padding: .2rem .1rem;
  text-decoration: none;
  transition: color .2s ease;
  font-size: .9rem;
}

nav.collection-nav .collection-nav-link.active {
  color: #fff;
  cursor: default;
}

nav.collection-nav .collection-nav-link.prev {
  font-size: 1rem;
}

nav.collection-nav .collection-nav-link:hover {
  color: #fff;
}

@media (min-width: 576px) {
  nav.collection-nav .collection-nav-link {
    padding: .2rem .5rem;
    font-size: 1rem;
  }

  nav.collection-nav .collection-nav-link.prev {
    font-size: 1.1rem;
  }
}

/******************************************************************************
#MEDIA QUERIES
******************************************************************************/

@media (min-width: 576px) {
  /* --------------------- sm -------------------- */
}

@media (min-width: 768px) {
  /* --------------------- md -------------------- */
}

@media (min-width: 992px) {
  /* --------------------- lg -------------------- */
}

@media (min-width: 1200px) {
  /* -------------------- xl -------------------- */
}