/* TRL colors:
dark sienna - #3a1926 | rgba(58,25,38,1)
burnished brown - #9b7977 | rgba(155,121,119,1)
ivory - #fffff0 | rgba(255,255,240,1)


*/


.page-header {
  background-color: #3a1926;
  color: #fffff0;
}

.page-footer {
  background-color: #3a1926;
  color: #fffff0
}

.page-main {
  width: 100%;
  margin: auto;
  height: 100vh;
  padding: 40px;
  background-image: url(/media/images/image-background-wood-3.jpg);
  background-size: cover;
  background-size: 100%;
  background-attachment: local;
  overflow: hidden;
}

.page-nav-top {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background-color: #3a1926;
}

.page-nav-top > a {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  background-color: #3a1926;
}

.nav-link {
    font-size: 16px;
    border: none;
    outline: none;
    color: #fffff0;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit; /* Important for vertical align on mobile phones */
    margin: 0; /* Important for vertical align on mobile phones */
}


/* Dropdown button */

.dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: #fffff0;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit; /* Important for vertical align on mobile phones */
    margin: 0; /* Important for vertical align on mobile phones */
  }
  
  /* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
    background-color: #9b7977;
  }
  
  /* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #9b7977;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(58,25,38,0.2);
    z-index: 1;
  }
  
  /* Links inside the dropdown */
.dropdown-content a {
    float: none;
    color: #fffff0;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  /* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
    background-color:#3a1926;
  }
  
  /* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
  }



@media (min-width: 576px) {
    
}

@media (min-width: 768px) {

}

@media (min-width: 992px) {

}

@media (min-width: 1200px) {

}

@media (min-width: 1440px) {

}

li {
  list-style-type: none;
  line-height: 250%;
}


.container-catalogue h3 {
  text-decoration: underline;
}

.container-catalogue a {
  font-size: 1em;
  transition: all 0.5s ease-in-out;
}

.container-catalogue a:hover {
  color: #3a1926;
  font-size: 1.2em;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.75);
}

.container-catalogue a img {
  animation: spin 12s infinite linear;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
  .container-catalogue a:hover img {
  animation-play-state: paused;
}

.container-catalogue {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(12);
  gap: 2px;
  text-transform: uppercase;
  align-items: center;
  overflow: visible;
}

.catalogue-tile {
  min-width: 400px;
  min-height: auto;
}

#cata-tile-rollers {
  grid-column: 1 / span 2;
  grid-row: 1;
  text-align: center;
  padding: 18px;
  background-image: url(/media/images/image-background-parchment-8.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(3deg);
}

#cata-tile-gmgens {
  grid-column: 3 / span 2;
  grid-row: 1;
  text-align: center;
  padding: 18px;
  background-image: url(/media/images/image-background-parchment-6.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(-4deg);
}

#cata-tile-pcgens {
  grid-column: 5 / span 2;
  grid-row: 1;
  text-align: center;
  padding: 18px;
  background-image: url(/media/images/image-background-parchment-7.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(8deg);
}

#cata-tile-homebrew {
  grid-column: 1 / span 2;
  grid-row: 2;
  text-align: center;
  padding: 18px;
  background-image: url(/media/images/image-background-parchment-4.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(-7deg);
}

#cata-tile-quests {
  grid-column: 3 / span 2;
  grid-row: 2;
  text-align: center;
  padding: 18px;
  background-image: url(/media/images/image-background-parchment-5.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(-1deg);
}

#cata-tile-published {
  grid-column: 5 / span 2;
  grid-row: 2;
  text-align: center;
  padding: 18px;
  background-image: url(/media/images/image-background-parchment-6.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(1deg);
}

#cata-tile-trl {
  grid-column: 3 / span 2;
  grid-row: 3;
  text-align: center;
  padding: 18px;
  background-image: url(/media/images/image-background-parchment-7.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(3deg);
}

#cata-tile-trl img {
  max-width: 200px;
}