/*Little Boy Dog Stylesheet*/
.cursor {
  cursor: pointer;
}

body { 
    font-family: "National Park";
    background-image: url("images/lbd_bglight.png") ;
    background-color: #f6f2ee;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color:#6c3d24;
}

/*Font*/
.national-park-<uniquifier> {
  font-family: "National Park", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

/*Header*/
header {
    position: sticky;
    top : 0;
    z-index: 5;
    background: inherit;
    height : 8rem;
    width:100%;
}
.mobile {
    display:none;
    position: relative;
}

/*Navbar*/
.tab {
    border-radius: 1rem; 
    background-color : #6c3d24;
    width: 100%;
    list-style: none;
    padding: 0;
    margin:0;
    display: flex;
    align-items: center;
    justify-content: center;
    color:#e1af83;
}
.tab li {
    margin:1rem;
    text-align: center;
    font-size: large;
}
.tab li img {
    height:auto;
    width:5rem;
}
.tab li a {
    display: block;
    color: #e1af83;
    text-decoration: none;
}
.tab li a:hover {
    color:#f6f2ee;
}

.collapse:hover {
    cursor:pointer;
    color:#f6f2ee;
}
.collapse.active {
    color:#f6f2ee;
}
.collapse.active:hover {
    color:#e1af83;
}

/*Mobile Menu*/
.menu {
    position:absolute;
    z-index: 10;
    border-radius: 1rem; 
    background-color : #6c3d24f1;
    width: 100%;
    max-height:0;
    overflow:hidden;
    padding:0;
    margin:0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    font-size:3rem;
    font-weight: 500;
}
.menu li a {
    color: #e1af83;
    margin: 2rem;
}
.menu.open {
    max-height: 100vh;
    opacity:1;
}

/*Link Interaction*/
ul li a:hover {
    cursor:pointer;
    color:#f6f2ee;
}
ul li a.active {
    color:#f6f2ee;
}
ul li a.active:hover {
    color:#e1af83;
}

/*Text Style*/
ul{
    list-style: none;
}
ul li a {
    user-select: none;
    display: block;
    text-align: center;
    color: #6c3d24;
    text-decoration: none;
}
p {
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
}
.desc {
    margin-left:0.3rem;
    margin-right:0.3rem;
}

div.flex-container { 
    display: flex;
    flex-direction:row;
}

/*Sidebar*/
.side {
    flex: 20%;
    position : sticky;
    top : 8rem; 
    padding: 1rem;
    margin-right:1rem;
    border-radius: 1rem;
    background-color: #efd9c8;
    color:#49210c;
    height:100%;
}
.side img {
    border-radius: 50%;
    width:15rem;
    height:auto;
    display:block; 
    margin: auto;
}
.side ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

/*Main*/
.main {
    flex: 80%;
    margin:0;
    color:#49210c;
    min-width: 0;
    padding-top:2rem;
    padding-left:1rem;
    padding-right:1rem;
    padding-bottom:1rem;
    scroll-margin-top: 11rem;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.main.fade-out {
    opacity: 0;
}


img, video {
  user-select: none;
  -webkit-user-drag: none;
}
.showreel {
    display: block;
    margin:auto;
    width:72vw;
    height:auto;
    border-radius:0.5rem;
}

/*Carousel*/
.carousel-wrapper {
    width : 100%;
    overflow:hidden;
}
ul.carousel {
    display: flex;
    animation: scroll 40s linear infinite;
    justify-content: flex-start;
    width:max-content;
}
ul.carousel li {
    flex: 0 0 auto;
    margin-right: 0.3rem;
}
ul.carousel li img {
    width:auto;
    height:10rem;
    border-radius:0.3rem;
}
.carousel:hover {
  animation-play-state: paused;
}

/*Gallery*/
.gallery {
    padding:0;
    display: flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
}
ul.gallery li {
    margin-left:0.3rem;
}
ul.gallery img:hover,
ul.gallery video:hover {
    cursor:pointer;
    transform:scale(1.02);
    transition: transform 0.25s; 
}
 ul.gallery li img,
 ul.gallery li video {
    width:auto;
    height:20rem;
    border-radius:0.5rem;
}

/*Slideshow*/
.modal {
    display: none;
    position: fixed;
    z-index: 10;
    background-color:#f6f2eee8;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    overflow: auto;
    opacity:0;
    transition: opacity 0.3s ease;
}
.modal.show {
  opacity: 1;
}
.modal-content {
    position: relative;
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slideshow img,
.slideshow video {
    max-width:100%;
    max-height:98svh;
    width:auto;
    height: auto;
    border-radius:0.5rem;
    margin:auto;
}
.mySlides {
  position: absolute;
  opacity: 0;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.mySlides.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

/*Slideshow Commands*/
.close {
  color:#e1af83;
  position: absolute;
  z-index:3;
  top: 10px;
  right: 25px;
}
.close:hover,
.close:focus {
  color:#e76e3e;
  text-decoration: none;
  cursor: pointer;
}
.prev,
.next {
  cursor: pointer;
  position: absolute;
  z-index:3;
  top: 50%;
  width: auto;
  margin-top: -50px;
  color:#e1af83;
  transition: 0.6s ease;
  user-select: none;
  -webkit-user-select: none;
}
.prev {
    left:1%;
 }
.next {
  right:1%;
}

/*Footer*/
footer {
    position : sticky;
    bottom : 0;
    z-index : 5;
    background: inherit;
    text-align: center;
}
footer.mobile {
    font-size:x-large;
    position : sticky;
    bottom : 0;
     z-index : 5;
    background: inherit;
    text-align: center;
}

/*Animations*/
@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/*Mobile Display*/
@media screen and (max-width: 1000px) {
    .flex-container {
        font-size: xx-large;
    }
    h1{
        line-height:0.6;
    }
    span {
        font-size: x-large;
        font-weight: 400;
    }
    .tab {
        border-radius: 1rem; 
        background-color : #6c3d24;
        width: 100%;
        list-style: none;
        padding: 0;
        margin:0;
        display: flex;
        justify-content: space-between;
        color:#e1af83;
    }
    .tab li{
        font-size: xx-large;
        margin-left:2rem;
        margin-right:2rem;
        margin-top:0;
        margin-bottom: 0;
    }
    
    /*Sidebar*/
    .side {
        display : none;
    }

    /*Showreel*/
    .showreel {
        width:100%;
        height:auto;
    }
    .desc {
        margin-top : 1rem;
        margin-bottom: 2rem;
    }

    /*Gallery*/
    ul.gallery li img,
    ul.gallery li video {
        width: 100%;
        height:auto;
        border-radius : 0.5rem;
    }

    .slideshow img,
    .slideshow video {
    max-width:100%;
    max-height:none;
    width:auto;
    height: auto;
    border-radius:0.5rem;
    margin:auto;
    }

    /*Slideshow Commands*/
    .close {
        top:35px;
        right:50px;
        scale: 1.5;  
    }
    .prev, .next {
        display:none;
    }

    /*Display*/
    .pc {
        display:none;
    }
    .mobile{
        display:block;
    }

}