/*
 © 2023 Web Design by Boyan Donev
www.boyans.com
 */



@font-face {
   font-family: 'LemonTuesday';
   src: url('../fonts/LemonTuesday.woff2');
}
* {
    font-family: 'LemonTuesday';
    font-size: 1.2em;
}
@font-face {
   font-family: 'GNUTypewriter';
   src: url('../fonts/GNUTypewriter.woff2');
}

body {
    user-select: none;
    width: 100%;
    height: 100%;
}
p {
    line-height: 2.5rem;
    letter-spacing: 0.1rem;
    padding: 1rem;
}

/*
 * Base structure
 */

body {
    background: url("../img/wood-bgr.jpg") top center no-repeat fixed saddlebrown;
}

a, a:hover, a:active, a:visited {
    text-decoration: none;
    color: #000000;
}
a:hover, a:active {
    text-shadow: 0 0 2px #000000;
}
/* Top Navigation */

#drawer {
    background-color: transparent;
    background: url("../img/wood-top-nav-drawer.png") center bottom no-repeat;
    padding-bottom: 390px;
    position: absolute;
    transition: ease-in-out 0.5s;
}
#drawer:hover, #drawer:active{
    top:0;
}
/* Very Small devices (landscape phones, 200px and up)*/
@media (min-width: 200px) { 
    #drawer {
    /*border: 2px solid white;*/
    font-size: 16px;
    top:-560px;
    }
}
/* Small devices (landscape phones, 300px and up)*/
@media (min-width: 330px) { 
    #drawer {
    /*border: 2px solid gold;*/
    font-size: 16px;
    top:-420px;
    }
}

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) { 
    #drawer {
    /*border: 2px solid blue;*/
    font-size: 24px;
    top:-320px;
    }
}

/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) { 
    #drawer {
    /*border: 2px solid green;*/
    font-size: 24px;
    top:-240px;
    }
}

/* X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) { 
    #drawer {
    /*border: 2px solid yellow;*/
    }
}

/* XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) { 
    #drawer {
    /*border: 2px solid violet;*/
    font-size: 32px;
    top:-250px;
    }
    #drawer li.close {
        display: none;
    }
}


#drawer ul li {
    background-image: url("../img/paper-01.jpg");
    background-size: cover;
    display: inline-block;
    list-style-type: none;
    padding: 5px 20px 10px 20px;
    margin: 5px;
    box-shadow: 3px 10px 15px 2px #000000;
}
#drawer a {
    color: #000000;
}
#drawer a:hover {
    text-shadow: 0 0 2px #000000;
}

.paper-1 {
    background-image: url("../img/paper-01.jpg");
    background-position: 0px 0px;
    transform: rotate(5deg);
    box-shadow: 3px 10px 15px 2px #000000;
}
.paper-2 {
    background-image: url(../img/paper-02.jpg);
    background-position: 0px 0px;
    transform: rotate(-5deg);
    box-shadow: 3px 10px 15px 2px #000000;
}
.paper-3, .single-poem {
    background-image: url(../img/paper-03.jpg);
    background-position: 0px 0px;
    background-size: cover;
    box-shadow: 3px 10px 15px 2px #000000;
}
.prose, .typewriter {
    background-image: url(../img/paper-02.jpg);
    background-repeat: repeat-y;
}
.single-poem, .prose {
    margin-bottom: 4rem;
}
.single-poem p, .prose p {
    line-height: 4rem;
}
.single-poem h2, .prose h2 {
    font-size: 4rem;
    padding: 10rem 0 5rem;
    text-shadow: 0 0 2px #000000;
}
@media (min-width: 200px) { 
    .single-poem p, .prose p {
    font-size: 1.5rem;
    line-height: 2rem;
    }
}
@media (min-width: 200px) { 
    .single-poem h2, .prose h2 {
    font-size: 2rem;
    }
}
@media (min-width: 330px) { 
    .single-poem p, .prose p {
    font-size: 1.5rem;
    line-height: 2rem;
    }
}
@media (min-width: 330px) { 
    .single-poem h2, .prose h2 {
    font-size: 2rem;
    }
}
@media (min-width: 768px) { 
    .single-poem p, .prose p {
    font-size: 2rem;
    line-height: 2.5rem;
    }
}
@media (min-width: 768px) { 
    .single-poem h2, .prose h2 {
    font-size: 2.5rem;
    }
}
@media (min-width: 992px) { 
    .single-poem p, .prose p {
    font-size: 2rem;
    line-height: 2.5rem;
    }
}
@media (min-width: 992px) { 
    .single-poem h2, .prose h2 {
    font-size: 2.5rem;
    }
}
@media (min-width: 1400px) { 
    .single-poem p, .prose p {
    font-size: 2.5rem;
    line-height: 3rem;
    }
}
@media (min-width: 1400px) { 
    .single-poem h2, .prose h2 {
    font-size: 4rem;
    }
}
.prose {
    text-align: left;
    text-indent: 3rem;
}
.typewriter p, .typewriter h2 {
    font-family: 'GNUTypewriter';
    font-size: 0.6em;
}
.typewriter p {
    text-align: left;
    text-indent: 2em;
}
.typewriter a {
    font-family: 'GNUTypewriter';
}
.shadow-card {
    box-shadow: 3px 10px 15px 2px #000000;
}


/* Video play button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: darkgoldenrod;
  font-size: 5em;
  cursor: pointer;
  text-align: center;
  opacity: 0.7;
}

.play-btn:hover, .play-btn:active {
    color:palegoldenrod;
    opacity: 0.8;
}


.subheading {
    background: rgb(255,166,0);
    background: linear-gradient(0deg, rgba(255,166,0,1) 0%, rgba(135,63,0,1) 5%, rgba(105,40,2,1) 9%, rgba(191,125,0,1) 39%, rgba(98,66,4,1) 90%, rgba(255,239,198,1) 100%);
    color:#996515;
    text-shadow: -1px -1px 0px #ffffff, 2px 2px 3px #000000;
    border-radius: 50%;
    margin-top: 2rem;
    padding: 0.5rem;
    font-size: 1.5rem;
}

/* Fancy effects */

.move-it {
    transition: ease-in-out 0.3s;
}
.move-it:hover {
    transform: translateY(-5px);
}



/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */
.carousel {
    background-image: url("../../assets/img/wood-bgr.jpg");

}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  height: 90%;
  z-index: 10;
}

/* Declare heights because of positioning of img element */
      .carousel-inner,
      .carousel-item,
      .carousel-item.active {
        height: 100vh;
}
.carousel-control-prev-icon {
    background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23996515' %3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")
}
.carousel-control-next-icon{
    background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23996515' %3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
}

.carousel-indicators [data-bs-target]{
    background-color:#996515;
    opacity:.5;
    position: relative;
    bottom: 2rem;
}
.carousel-indicators .active{
    opacity:1
}


.carousel-slide img {
    height: 80%;
}

/* Pages */
.page-heading {
    margin-top: 5rem;
}


.card-h {
    margin-top: 3rem;
    margin-left: 3rem;
    margin-right: 3rem;
    padding-top: 1rem;
    width: 24rem;
}

.card-v {
    margin-top: 3rem;
    margin-left: 3rem;
    margin-right: 3rem;
    padding-top: 1rem;
    width: 20rem;
}

h2.card-text {
    font-size: 1.5rem;
    color:#996515;
    text-shadow: -1px -1px 0px #ffffff, 2px 2px 3px #000000;
    margin-top: 1rem;
}

/* Featurettes
------------------------- */

.featurette-divider {
  margin: 1rem 0;
  color:darkgoldenrod;
}

/* fancybox */
@media all and (min-width: 768px) {
  .fancybox-thumbs {
    top: auto;
    width: auto;
    bottom: 0;
    left: 0;
    right : 0;
    height: 95px;
    padding: 10px 10px 5px 10px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.5);

  }
    .fancybox-thumbs__list a::before {
    border: 6px solid #75B3FF;
    }
  .fancybox-show-thumbs .fancybox-inner {
    right: 0;
    bottom: 95px;
  }
}
  .fancybox-caption h2 {
    font-size: 1.5rem;
}
/* Rotations */
.rotated {
    background: transparent;
    max-width: 30%;
    float: left;
    margin-left: -50px;
    margin-top: -50px;
    transition: ease-in-out 0.5s;
}
.rotated:hover  {
    transition: ease-in-out 0.5s;
    transform: translateY(-20%);
}
.rotated:active  {
    transform: translateY(-20%);
}
.rotated img, .rotated img:hover  {
    box-shadow: none;
}
.rot-cw-5 {
    transform: rotate(5deg);
}
.rot-cw-15 {
    transform: rotate(15deg);
}
.rot-cw-30 {
    transform: rotate(30deg);
}
.rot-cw-45 {
    transform: rotate(45deg);
}
.rot-ccw-5 {
    transform: rotate(-5deg);
}
.rot-ccw-15 {
    transform: rotate(-15deg);
}
.rot-ccw-30 {
    transform: rotate(-30deg);
}
.rot-ccw-45 {
    transform: rotate(-45deg);
}
.flip-x {
    transform: scale(-1,1);
}

/* Gallery */

#gallery figure {
    max-width: 30%;
    box-shadow: 3px 10px 15px 2px #000000;
    float: left;
    margin-left: -50px;
    margin-top: -50px;
    transition: ease-in-out 0.5s;
}
#gallery figure:hover  {
    transition: ease-in-out 0.5s;
    transform: translateY(-20%);
}
#gallery figure:active  {
    transform: translateY(-20%);
}

@media (min-width: 200px) {
  .gallery-wrapper {
    padding-left: 22.5vw;
    max-width: 100%;
  }
    #gallery figure {
    min-width: 45vw;    
    }
}
@media (min-width: 768px) {
  .gallery-wrapper {
    padding-left: 15vw;
    max-width: 100%;
  }
    #gallery figure {
    min-width: 40%;
    }
}
@media (min-width: 992px) {
  .gallery-wrapper {
    padding-left: 15vw;
    max-width: 100%;
  }
    #gallery figure {
    min-width: 35%;
    }
}
@media (min-width: 1400px) {
  .gallery-wrapper {
    padding-left: 10vw;
    max-width: 100%;
  }
    #gallery figure {
    min-width: 35%;
    }
}




footer {
    position: relative;
    top:-4rem;
    font-size: 32px;
    color: #ffffff;
    text-shadow: none;
}
footer img {
    opacity: 0.5;
}



