@import url('https://fonts.googleapis.com/css2?family=Fontdiner+Swanky&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cherry+Cream+Soda&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

:root {
    --color1: rgba(146, 98, 31, 0.83);
    --color2: rgba(224, 183, 2, 0.72);
    --tileBG1: rgba(223, 106, 4, 1);
    --greenColor: rgba(0, 76, 14, 1);
    --pageBG: rgba(0, 76, 14, 1);
    /* --pageBG: rgba(187, 129, 49, 1); */
    /* --pageBG: rgba(184, 189, 16, 0.9); */
    --FontHeading: "Fontdiner Swanky";
    --FontBody: "Raleway";
    background-color: var(--pageBG);
    scroll-behavior: smooth;
    --menuSplitVH: 5.5vh;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    background-color: whitesmoke;
    font-family: var(--FontHeading);
    color: var(--greenColor);
}

#banner-outerBox {
    display: flex;
    justify-content: center;
    margin: 0;
    left: 0;
    right: 0;
    overflow: hidden;
}

#title {
    display: flex;
    position: fixed;
    top: 0;
    font-size: 3vw;
    background-color: var(--pageBG);
    color:var(--color2);
    width: 100%;
    height: var(--menuSplitVH);
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 20;
    text-shadow: 0 -1px 0 black;
    padding-top: 20px;
}

.menu {
    display: flex;
    position: fixed;
    top: var(--menuSplitVH);
    font-size: 2.5vw;
    background-color: var(--pageBG);
    width: 100%;
    height: 6vw;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 20;
}

.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu li {
    float: left;
}

.menu li a {
    display: block;
    color: var(--color2);
    text-align: center;
    padding: 16px;
    text-decoration: none;
    text-shadow: 0 -1px 0 black;
}

#billboard {
    position: relative;
    display: grid;
    z-index: 30;
    grid-template-rows: repeat(var(--grid-size-height), var(--cell-size));
    grid-template-columns: repeat(var(--grid-size-width), var(--cell-size));
}

.cell {
    background-color: var(--tileBG1);
}

.rotate0 {
    background-image: linear-gradient(to top, rgba(146, 98, 31, 0.83), rgba(224, 183, 2, 0.72));
}

.rotate90 {
    background-image: linear-gradient(to right, rgba(146, 98, 31, 0.83), rgba(224, 183, 2, 0.72));
}

.rotate180 {
    background-image: linear-gradient(to bottom, rgba(146, 98, 31, 0.83), rgba(224, 183, 2, 0.72));
}

.rotate270 {
    background-image: linear-gradient(to left, rgba(146, 98, 31, 0.83), rgba(224, 183, 2, 0.72));
}

.tile {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--cell-size);
    height: var(--cell-size);
    font-size: 7vmin;
    top: calc(var(--y) * var(--cell-size));
    left: calc(var(--x) * var(--cell-size));
    text-shadow: 0 -2px 3px var(--color2);
    
}

/* Product Container */
.container {
    margin-top: 0em;
    margin-left: 2em;
    margin-right: 2em;
    margin-bottom: 2em;
    color: black;
    display: grid;
    grid-auto-columns: 100%;
    /* grid-template-rows: 100%; */
    grid-auto-rows: auto;
    grid-template-areas:
        "details"
        "carousel";
}

@media only screen and (min-width: 1024px) {
    .container {
        grid-template-columns: 60% 40%;
        grid-template-rows: 63vh;
        grid-template-areas:
            "details carousel";
    }
}

.heading {
    font-size: 1.5rem;
    margin-top: 1rem;
    display: flex;
    
}
.heading::before {
    content: "-->";
}

.heading > img {
    display: flex;
    /* padding: 20px; */
    height: 150px;
    width: auto;
    margin: auto;
}

.about img {
    float: left;
    padding-right: 2px;
}

.details {
    font-size: 1.3rem;
    /* margin-right: 10%; */
    grid-area: details;
}

.ramble details summary {
    font-size: 2rem;
}
.details header {
    display: inline-flex;
    font-size: 2rem;
}

.details p {
    font-size: 1.2rem;
    font-family: var(--FontBody);
}

.details img {
    float: left;
    width: 20%;
    margin-top: 5px;
    margin-right: 1vw;
}

#footer {
    grid-area: footer;
    margin: 4vh 0 1vh 0;
}

#smallPrint {
    font-size: x-small;
}

.carousel {
    grid-area: carousel;
    display: grid;
    place-content: center;
    position: relative;
    /* grid-template-columns: 2fr 8fr 2fr; */
    /* grid-template-rows: max-content 36vh; */
    /* grid-template-rows: 90% 10%; */
    grid-template-areas:
        "prev slides next";
    /* width: 80%; */
    width: 100%;
    /* margin: auto; */
    /* height: auto; */
    /* position: relative; */
    /* gap: 1.5rem; */

}

@media only screen and (min-width: 1024px) {
    .carousel {
        grid-template-rows: 63vh;
    }
}

.slides {
    grid-area: slides;
    /* justify-content: center; */
    text-align: center;
    display: flex;
    height: fit-content;
    /* width: 60%; */
}

.slide {
    opacity: 0;
    display: none;
    /* position: absolute; */

}
.slide > figure > img {
    /* max-width: 25vw; */
    /* margin-left: auto; */
    /* margin-right: auto; */
    margin: auto;
    max-height: 500px;
    /* width: auto; */
    transition: opactiy 1.5s ease-in-out 500ms;
}

.slide[data-active] {
    opacity: 1;
    display: block;
    z-index: 3;
    transition-delay: 10ms;
}

.buttonBox {
    display: flex;
    place-content: center;
    /* align-items: center;
    justify-content: center; */
    /* width:max-content; */
}

.carousel-button {
    z-index: 1;
    border: none;
    font-size: 2em;
    color: rgba(0, 0, 0, .8);
    cursor: pointer;
    border-radius: .25rem;    
    margin: auto;
    background-color: rgba(0, 0, 0, .1);
}

.carousel-button:hover,
.carousel-button:focus {
    color: rgba(0, 0, 0, .7);
    ;
    background-color: white;
}

.carousel-button:focus {
    outline: 1px solid black;
}

.buttonBox.prev {
    grid-area: prev;
}
.buttonBox.next {
    grid-area: next;
}
/* 
.carousel-button.prev { grid-area: prev; }
.carousel-button.next { grid-area: next; } 
*/

.caption {
    grid-area: caption;
    font-size: 1.5rem;
    font-family: var(--FontBody);
    padding: 0 0 0 0;
}

.ramble {
    display: block;
    font-family: var(--FontBody);
    font-size: 1.2rem;
    margin-left: 10%;
    margin-right: 10%;
}

.ramble img {
    height: 14vh;
}
blockquote {
    font-size: 1.6rem;
    padding: 1vmin;
  }

.ramble .heading {
    font-family: var(--FontHeading);
    margin-top: 3vh;
    margin-left: -3vw;
}

.staff {
    /* display: inline-block; */
    display: table;
    /* grid-template-areas: "puppet"; */
    /* grid-template-columns: 2fr 2fr 2fr; */
    /* grid-template-rows: auto; */
    gap: 1em;
}
.who {
    /* grid-area: puppet; */
    /* display: block; */
    display: table-row;
    font-family: var(--FontHeading);
    font-size: 1.5rem;
    height: fit-content;
}
.who img {
    /* grid-area: pic; */
    overflow: clip;
    height: 100px;
    width: auto;
    float: left;
    padding: 7px;
}

.bio {
    grid-area: bio;
    /* display: block; */
    font-family: var(--FontBody);
    font-size: 1rem;
    margin: 1vh 1vh 2vh 5vh;
}

.flippy {
    transform: rotateY(180deg) translateX(10%);
    display: inline-flex;

}

summary {list-style: none;}
summary::-webkit-details-marker { display: none;}
details summary::before { 
    content: "🧑‍💻▶";
}
details[open] summary::before {
    content: "🤪▼";
}