@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&display=swap');

body{
    margin: 0;
    padding: 0;
    background: rgb(94, 0, 0);
    font-family: "Comfortaa", sans-serif;
}

/* Container Start */
    .container{
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        gap: 30px;
    }
/* Container End */


/* Nav Start */
.hamburger-menu{
    width: 75px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    z-index: 10;
}
.menu-line-1{
    width: 45%;
    height: 5px;
    background: white;
    transition: all 0.3s ease-in-out;
}
.menu-line-2{
    width: 45%;
    height: 5px;
    background: white;
    transition: all 0.3s ease-in-out;
}
.menu-line-3{
    width: 45%;
    height: 5px;
    background: white;
    transition: all 0.3s ease-in-out;
}
/* Nav End */


/* Home Hero Start */
.home-hero{
    background: url('../images/home/skillsrmctchomehero.png');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    width: 100%;
    height: 95vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.home-hero .overlay{
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.3);
    position: absolute;
    top: 0;
    left: 0;
}
.home-hero h1{
    color: white;
    padding: 0;
    margin: 0;
    font-size: 6vw;
    position: relative;
    z-index: 9999;
    animation: glow 2s ease-in-out infinite alternate;
}
/* Home Hero End */


/* glow animation keyframes start */
@keyframes glow {
      0% {
        text-shadow:
          0 0 5px pink,
          0 0 10px pink,
          0 0 15px pink,
          0 0 20px pink;
      }
      100% {
        text-shadow:
          0 0 10px pink,
          0 0 20px pink,
          0 0 30px pink,
          0 0 40px pink,
          0 0 50px pink;
      }
    }
/* glow animation keyframes end */


/* Home Side Nav Start */
.home-side-nav-container{
    width: 25%;
    min-width: 200px;
}
#home-side-nav{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
#home-side-nav li{
    display: flex;
    justify-content: center;
    align-items: center;
}
#home-side-nav li a{
    text-decoration: none;
    background: #FFD700;
    color: maroon;
    font-family: sans-serif;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    transition: all 0.3s ease-in-out;
}
#home-side-nav li a:hover{
    background: maroon;
    border: 3px solid white;
    color: #FFD700
}
.home-section-1{
    margin-top: 15px;
}

/* Home Side Nav End */


/* Home Sections Start */
.home-sections{
    width: 75%;
    flex-direction: column;
    display: flex;
    text-align: center;
    color: white;
}
.home-sections section{
    margin-top: 35x;
    margin-bottom: 35px;
}
.home-sections section h1{
    padding-bottom: 10px;
    text-shadow: 0 0 30px white;
    text-decoration: underline;
    font-size: 3vw;
}

.home-section-left{
    width: 100%;
}

.home-section-right{
    width: 100%;
    color: white;
}
.home-section-right h2{
    text-shadow: 0 0 30px white;
    text-decoration: underline;
}
/* Home Sections End */



/* Home Mission Statement Start */
#mission-statement img{
    width: 100%;
}

#mission-statement ul{
    list-style: none;
    padding-left: 1.5em;
}
#mission-statement ul li{
    position: relative;
    margin: 0.5em 0;
    padding-left: 1.5em;
}
#mission-statement ul li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0.3em;
    width: 16px;
    height: 16px;
    background: url('../images/home/rmctcgear.png');
    background-size: contain;
}
/* Home Mission Statement End */


/* Home skills framework start */
#skills-framework{
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
}

#skills-framework-img{
    width: 100%;
}
#skills-framework img{
    max-width: 600px;
    height: 100%;
}

.home-section-2 h3{
    padding: 20px;
}
/* Home skills framework end */


/* Home events & dates start */
#events-dates{
    display: flex;
    flex-direction: column;
    width: 100%;
}
#events-dates h2{
    text-decoration: underline;
}
/* Home events & dates start */