/* menusys.css */

/* ===== TOP-LEVEL MENU BAR ===== */
.menu-bar {
    background-color: #031D72;
    display: flex;
    padding: 0;
    margin: 0;
    width: 101%;
    list-style: none;
    font-size: 125%;
    line-height: 40%;
    font-family: "Times New Roman", serif;
    font-variant: small-caps;
    text-shadow: 1px 1px 2px black, 0 0 25px black, 0 0 5px black;
    background-image: url('../Logos/Hueyskin.jpg');
    
}

.menu-bar > li {
    position: relative;
}

.menu-bar > li > a {
    color: gold;
    padding: 12px 18px;
    display: block;
    text-decoration: none;
    text-shadow: 1px 1px 2px black, 0 0 25px black, 0 0 5px black;
}

.menu-bar > li > a:hover {
    background-color: darkred;
    color: gold;
    text-shadow: 1px 1px 2px black, 0 0 25px black, 0 0 5px black;
}

/* ===== FIRST-LEVEL SUBMENU ===== */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: black;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 95%;
    min-width: 320px;
    border: 1px solid #222;
    z-index: 2;
    line-height: 40%;
    font-family: "Times New Roman", serif;
}

.submenu li {
    position: relative;   /* needed for second-level submenu */
}

.submenu li a {
    color: white;
    padding: 10px 14px;
    display: block;
    text-decoration: none;
}

.submenu li a:hover {
    background-color: #2f3927;
    color: gold;
    text-shadow: 1px 1px 2px black, 0 0 25px black, 0 0 5px black;
}

/* ===== SECOND-LEVEL SUBMENU (fly-out) ===== */
.submenu .submenu {
    top: 0;               /* aligns with parent item */
    left: 100%;           /* fly-out to the right */
    background-color: black;
    min-width: 320px;
    border: 1px solid #222;
    line-height: 40%;
}

/* ===== SHOW SUBMENUS ON HOVER ===== */
.menu-bar li:hover > .submenu,
.submenu li:hover > .submenu {
    display: block;
}

.menuback {
    background-image: linear-gradient(to right, #01180E 50%, white);
     width: 101%;
}

.formal-frame {
    width: auto;
    padding: 6px;
    background-blend-mode:darken;
    background-image: radial-gradient(darkgreen, black);
    border: 3px solid #aaa;
    box-shadow:
        inset 3px 3px 6px rgba(0,0,0,0.4),
        inset -3px -3px 6px rgba(255,255,255,0.8);
}

h1 {   
    font-family: New Times Roman !important;
    color: Gold !important;
    font-size: 290% !important;
    text-shadow: 1px 1px 2px black, 0 0 25px black, 0 0 5px black !important;
    line-height: 1 !important;
    font-variant: small-caps !important;
    padding-top: 1% !important;
    margin-bottom: 2px !important;
    padding-left: 7.5% !important;
    margin: 0 !important;
}

h2 {    
    font-size: 100% !important;
    line-height: 1.5 !important;
    color: white !important;
    font-weight: normal !important;
    text-shadow: 1px 1px 2px black, 0 0 25px black, 0 0 5px black !important;   
    padding-left: 7.8% !important;
    margin-top: 2px !important;
    margin-bottom: 2px !important;
    margin: 0 !important;
}

h3 {
    font-size: 115% !important;
    text-shadow: 1px 1px 2px black, 0 0 25px black, 0 0 5px black !important;
    color: white !important;
    line-height: 1.1 !important;
    font-weight: normal !important;
    font-variant: normal !important;
    padding-left: 7.8% !important;
    text-align: left !important;
    margin-bottom: 2px !important;
    margin: 0 !important;
}

.help-icon {
    position: absolute;
    top: 27px;
    left: 120px;  
    padding: 5px;
    cursor: pointer;
    z-index: 1;
}

.help-icon::before {
    content: ' ';
    font-size: 12px;
    color: gold;
    font-weight: bolder;   
}

.help-text {
    display: none;
    position: absolute;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.75);
    text-shadow: 1px 1px 2px black, 0 0 25px black, 0 0 5px black;
    top: 180px;
    left: 340px;
    color: gold;
    padding: 3%;
    font-size: 95%;
    width: 610px;
    text-align: justify;
    line-height: 120%;
    background-blend-mode:darken;
    background-image: radial-gradient(darkgreen, black);
    border: 3px solid #aaa;
    box-shadow:
        inset 3px 3px 6px rgba(0,0,0,0.4),
        inset -3px -3px 6px rgba(255,255,255,0.8);
    z-index: 1;
    animation: grow 0.5s forwards;
}

@keyframes grow {
    from {
        transform: translate(0%, 0%) scale(0.1);
    }
    to {
        transform: translate(0%, 0%) scale(1);
    }
}

.help-icon:hover .help-text {
    display: block;
}

.round-background { 
    width: 500px;
    height: 27px;    
    display: flex;
}

.help-icon2 {
    position: absolute;
    top: 70px;
    left: 335px;
    font-size: 135%;
    padding: 5px;
    cursor: pointer;
}

.help-icon2::before {
    content: '*';    
    color: white;
    font-weight: bolder;   
}

.help-text2 {
    display: none;
    position: absolute;
    top: -20px;
    left: 450px;
    color: white;
    padding: 10px;
    font-size: 85%;
    font-family: shelleyvolute;
    width: 410px;
    font-style: italic;    
    text-shadow: 1px 1px 2px black, 0 0 25px black, 0 0 5px black;
    text-align: right;
    line-height: 110%;
    z-index: 1;
    animation: grow 0.5s forwards;
}

@keyframes grow {
    from {
        transform: translate(0%, 0%) scale(0.1);
    }
    to {
        transform: translate(0%, 0%) scale(1);
    }
}

.help-icon2:hover .help-text2 {
    display: block;
}

.round-background2 { 
    width: 160px;
    height: 20px;    
    display: flex;
}

.help-icon3 {
  position: absolute;
  top: 75px;
  left: 330px;
  padding: 5px;
  cursor: pointer;
}

.help-icon3::before {
  content: '*';
  font-size: 25px;
  font-weight: bold;
  color: white; 
}

.help-text3 {
  display: none;
  position: absolute;  
  top: -20px;
  left: 525px;
  color: white;
  font-size: 100%;
  width: 320px;
  text-align: right;
  line-height: 80%;
  text-shadow: 1px 1px 2px black, 0 0 25px black, 0 0 5px black;
  z-index: 1;
  animation: grow 0.5s forwards;
  font-family: New Times Roman;
  font-style: italic;
}

@keyframes grow {
    from {
        transform: translate(0%, 0%) scale(0.1);
    }
    to {
        transform: translate(0%, 0%) scale(1);
    }
}

.help-icon3:hover .help-text3 {
    display: block;
}

.round-background3 { 
    width: 25px;
    height: 25px;
    display: flex;
    align-items: right;
    font-family: Arial, sans-serif;
}
.content {
  position: fixed;
  bottom: 1;
  color: #f1f1f1;
  width: 100%;
  /*padding: 20px;*/
}

.slideshow-container {
    position: relative;
    width: auto;      
    height: 570px;    
    margin: auto;
    overflow: hidden;
}

.slides {
    display: none;
    width: auto;
    height: auto;
}

.slides img {
    width: auto;
    height: 570px;
    display: block;
    text-align: center;
}

/* Apply fade animation to any slide that has class="fade" */
.fade {
    animation-name: fadeEffect;
    animation-duration: 1.4s;
    animation-timing-function: ease-in-out;
}

/* Keyframes for fade animation */
@keyframes fadeEffect {
    from { opacity: 0.3; }
    to   { opacity: 1; }
}
.arrow {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: white;
    background-image: radial-gradient(rgba(0, 0, 0, 0.7), transparent);
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    user-select: none;
}

.arrow.left {left: 50px;}
.arrow.right {right: 50px;}

figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;    
    text-shadow: 1px 1px 2px black, 0 0 25px black, 0 0 5px black;
    font-size: 130%;
    line-height: 130%;
    font-weight: normal;
    font-variant: normal;
    font-style: normal;
    background-blend-mode:darken;
    background-image: radial-gradient(rgba(0, 0, 0, 0.7), transparent);
    font-family: 'Lobster', cursive;
    background-size: cover;
    padding: 6px 0;
    opacity: 0.85;
}

bottom-caption {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    text-shadow: 1px 1px 2px black, 0 0 25px black, 0 0 5px black;
    font-size: 120%;
    line-height: 130%;
    font-weight: normal;
    font-variant: normal;
    font-style: normal;
    background-blend-mode:darken;
    background-image: radial-gradient(rgba(0, 0, 0, 0.7), transparent);
    font-family: 'Lobster', cursive;
    background-size: cover;
    padding: 6px 0;
    opacity: 0.85;
}