html {
    scroll-behavior: smooth;
}

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

::-moz-selection {
    background-color: #f4591e;
    color: white;
}

::selection {
    background-color: #f4591e;
    color: white;
}

a {
    text-decoration: inherit;
    color: inherit;
}

body {
    font-family: 'Lato', sans-serif;
    font-display: swap;
    font-size: 1rem;
    color: #fefefe;
    font-size: 16px;
    background-color: #1a1b1d;
}

/* Buttons */

.shareBtn {
    position: absolute;
    top: 5%;
    left: 5%;
    display: flex;
}
.elementBtn {
    padding: 0 5px;
    cursor: pointer;
    transition: all ease-in-out 250ms;
}
.elementBtn img {
    position: relative;
    width: 25px;
    margin: 0, 10px, 0, 10px
}

/* Main menu button behavior */

.menu {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 5%;
    right: 5%;
    width: 50px;
    height: 50px;
    background-color: #f4591e;
    border: solid 2px #f4591e;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
}
.menu .line {
    position: absolute;
    left: 25%;
    height: 1px;
    transform-origin: left;
    background-color: #1a1b1d;
}
.menu .line1 {
    top: 35%;
    width: 50%;
    transition: all ease-in-out 250ms;
    transform: translateY(-50%) scaleX(0.5);
}
.menu .line2 {
    top: 50%;
    width: 50%;
    transition: all ease-in-out 250ms;
    transform: translateY(-50%) scaleX(1);
}
.menu .line3 {
    top: 65%;
    width: 50%;
    transition: all ease-in-out 250ms;
    transform: translateY(-50%) scaleX(0.75);
}
.menu:hover .line1 {
    transform: scaleX(1);
}
.menu:hover .line3 {
    transform: scaleX(1);
}

/* Main menu items */

.ss-menu {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 5%;
    right: 5%;
    width: 50px;
    height: 50px;
    background-color: #1a1b1d;
    border: solid 2px #f4591e;
    border-radius: 50%;
    cursor: pointer;
    transition: all ease-in-out 100ms;
    opacity: 0;
    z-index: -1;
}
.ss-menu img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    transition: all ease-in-out 100ms;
}
.ss-menu:hover img {
    transform: translate(-50%, -50%) scale(1.2);
    transition: all ease-in-out 100ms;
}
.ss-menu:hover {
    background-color: #f4591e;
    transition: all ease-in-out 100ms;
}

/* Main menu button line behavior */

.menu.active .line1 {
    top: 50%;
    width: 50%;
    transform: scaleX(1);
    transition: all ease-in-out 250ms;
    transition-delay: 25ms;
}
.menu.active .line2 {
    width: 50%;
    transform: scaleX(1);
    opacity: 0;
    transition: all ease-in-out 250ms;
}
.menu.active .line3 {
    top: 50%;
    width: 50%;
    transform: scaleX(1);
    transition: all ease-in-out 250ms;
    transition-delay: 25ms;
}

/* Main menu choices visibility */

.visible1 {
    opacity: 1;
    transform: translateY(75px);
    transition: all ease-in-out 250ms;
    transition-delay: 25ms;
    z-index: 1;
}
.visible2 {
    opacity: 1;
    transform: translateY(150px);
    transition: all ease-in-out 250ms;
    transition-delay: 50ms;
    z-index: 1;
}
.visible3 {
    opacity: 1;
    transform: translateY(225px);
    transition: all ease-in-out 250ms;
    transition-delay: 100ms;
    z-index: 1;
}
.visible4 {
    opacity: 1;
    transform: translateY(300px);
    transition: all ease-in-out 250ms;
    transition-delay: 125ms;
    z-index: 1;
}
.visible5 {
    opacity: 1;
    transform: translateY(375px);
    transition: all ease-in-out 250ms;
    transition-delay: 150ms;
    z-index: 1;
}

/* Each section of the site */

section {
    min-height: 50vh;
    padding: 50px 15% 50px 15%;
    background-color: #1a1b1d;
}

/* Orange line separator for ea section */

.separator {
    width: 35vw;
    height: 2px;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: #f4591e;
}

/* Main elements */

.mainView {
    position: relative;
    min-height: 100vh;
    max-height: 100vh;
    color: #9fa0ac;
    background: url('../img/Group_Pic_02.jpg');
    background-size: cover;
    background-position: center;
    background-color: transparent;
}

/* Header 1: Site Title */

h1 {
    position: absolute;
    text-align: center;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20%;
    font-size: 8vh;
    font-weight: 900;
    color: #fefefe;
    text-shadow: 0 2px 10px #1a1b1d;
    text-transform: uppercase;
    opacity: 0;
    -webkit-animation: opacity 2s cubic-bezier(0.17, 0.67, 0.14, 0.97) both;
    animation: opacity 2s cubic-bezier(0.17, 0.67, 0.14, 0.97) both;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

@-webkit-keyframes opacity {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes opacity {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Header 2: Slogan */

h2 {
    font-size: 2rem;
}

h2#slogan {
    position: absolute;
    text-align: center;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10%;
    font-size: 5vh;
    font-weight: 600;
    color: #f4591e;
    text-shadow: 0 2px 10px #1a1b1d;
    opacity: 0;
    transform: translateY(-45px);
    -webkit-animation: slideY 2s cubic-bezier(0.17, 0.67, 0.14, 0.97) both;
    animation: slideY 2s cubic-bezier(0.17, 0.67, 0.14, 0.97) both;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

@-webkit-keyframes slideY {
    from {
        opacity: 0;
        transform: translateY(-45px) translateX(-50%);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateX(-50%);
    }
}
@keyframes slideY {
    from {
        opacity: 0;
        transform: translateY(-45px) translateX(-50%);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateX(-50%);
    }
}

/* Paragraph Styles */

p {
    color: #9fa0ac;
    line-height: 20px;
    margin: 10px 0 5px 0;
}

p.miniPara {
    color: #fefefe;
    line-height: 20px;
    margin: 0;
}

/* Title Text */

.hardLight {
    font-size: 3vh;
    line-height: 40px;
    font-weight: 900;
    text-align: center;
    width: 70%;
    margin: 20px auto 20px auto;
}

/* Band Memeber Image Cards */

.imgContent {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin: auto;
    width: 80%;
}
/* NORMAL */
.imgContent .card-norm {
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
}
.imgContent .card-norm p {
    text-align: center;
    margin: 0;
    padding: 0;
}
.imgContent .card-norm p:first-of-type {
    font-size: 1.3rem;
    color: #fefefe;
}

/* INSTAGRAM LINKED */
.imgContent .card-insta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
}
.imgContent .card-insta p {
    text-align: center;
    margin: 0;
    padding: 0;
}
.imgContent .card-insta p:first-of-type {
    font-size: 1.3rem;
    color: #fefefe;
}
.imgContent .card-insta::before {
    content: url('../img/social/instagram-min-white.svg');
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    top: 0;
    left: 0;
    margin: 15px auto;
    width: 100%;
    max-width: 250px;
    height: 250px;
    opacity: 0;
    background-color: rgba(244, 89, 30, 0.7);
    z-index: 2;
    transition: all ease-in-out 150ms;
}
.imgContent .card-insta:hover::before {
    opacity: 1;
    transition: all ease-in-out 150ms;
}

.imgContent img {
    position: relative;
    width: 100%;
    max-width: 250px;
    margin: 15px auto;
    border-radius: 15px;
}

/* Band Video Section */

.video-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#bandVideo {
    width: 640px;
    background-color: #1e0e18;
    cursor: pointer;
}

/* QR Codes */

.qrcode {
    text-align: center;
    padding: 30px 0 30px 0;
}
.qrcode img {
    max-width: 120px;
    margin: 0 10px 0 10px;
    cursor: pointer;
}

/* Show Dates Table */

.date table {
    margin: 10px 0;
    width: 100%;
    border-spacing: 0;
}
.date table td {
    border-bottom: solid 1px #9fa0ac;
    color: #9fa0ac;
    padding-top: 10px;
    padding-bottom: 10px;
}
.date table td a {
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}
.date table td a:hover {
    transform: translateX(5px);
    transition: all 250ms cubic-bezier(0, 0.69, 0.46, 0.95);
}
.date table td:first-of-type {
    color: white;
}
.date table td:nth-of-type(even) {
    padding-left: 7px;
}
.date table span {
    color: white;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Form */

.contact p {
    text-align: center;
}

.contactForm {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contactForm input,
.contactForm textarea {
    color: #1a1b1d;
    padding: 15px;
    width: 70%;
    border: none;
    margin: 15px 0 15px 0;
    font-family: inherit;
    outline: none;
}
.contactForm input {
    border-radius: 999px;
}
.contactForm label,
.contactForm p.labelP {
    color: white;
    font-size: 3vh;
    font-weight: 900;
}
.contactForm p.labelP {
    margin: 20px auto;
}
.contactForm textarea {
    border-radius: 5px;
}
.contactForm input[type='submit'] {
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-size: 2vh;
    cursor: pointer;
    transition: all ease-in-out 250ms;
    background-color: white;
}
.contactForm input[type='submit']:hover {
    transform: scaleX(0.8);
    letter-spacing: 0.8rem;
    transition: all ease-in-out 250ms;
    color: white;
    background-color: #f4591e;
}
.contactForm .inscriptionCheck {
    display: flex;
    align-items: center;
    margin: 10px 0;
}
.contactForm .inscriptionCheck input[type='radio'] {
    margin: 0 10px;
    width: 10px;
}
.contactForm .inscriptionCheck label {
    font-size: 2vh;
    font-weight: inherit;
}
.contactForm #helpName,
.contactForm #helpTel,
.contactForm #helpMail,
.contactForm #helpRobot {
    display: none;
}

/* Contact Form Miscellaneous */

.hidePara {
    margin: 0;
    color: #f4591e;
}

::-webkit-input-placeholder {
    color: #1a1b1d;
}

::-moz-placeholder {
    color: #1a1b1d;
}

:-ms-input-placeholder {
    color: #1a1b1d;
}

::-ms-input-placeholder {
    color: #1a1b1d;
}

::placeholder {
    color: #1a1b1d;
}

/* Footer */

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #f4591e;
    min-height: 5vh;
}
footer p {
    margin: 15px 0;
    color: white;
}
footer p.bolder {
    font-size: 1.2rem;
    letter-spacing: 0.2rem;
    font-weight: bold;
    text-transform: uppercase;
}
footer .socialBanner {
    display: flex;
    align-items: center;
    justify-content: center;
}
footer img {
    max-width: 24px;
    margin: 0 10px 0 10px;
    cursor: pointer;
}

/* Footer Logo Banner */

.footerBanner {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footerBanner .bandBanner {
    margin: 0 30px;
    width: 100%;
    max-width: 75px;
    cursor: default;
}

/* Arrow to return to Top */

#upArrow {
    display: none;
    position: fixed;
    bottom: 5%;
    right: 5%;
    width: 50px;
    height: 50px;
    cursor: pointer;
}
#upArrow:hover {
    -webkit-animation: animeLogo ease-in-out 0.3s;
    animation: animeLogo ease-in-out 0.3s;
}

@-webkit-keyframes animeLogo {
    0% {
        transform: scale(1);
    }
    10% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes animeLogo {
    0% {
        transform: scale(1);
    }
    10% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
button[name='backSite'] {
    border: none;
    border-radius: 5px;
    max-width: 250px;
    margin: 25px;
    padding: 10px;
    background-color: #f4591e;
    font-size: 2.5vh;
    font-weight: bolder;
    color: white;
    cursor: pointer;
}

/* Anamations */

.animatableY {
    opacity: 0;
    transform: translate3d(0, 3vh, 0);
    transition: all ease-in-out 1s;
}

.animatableX {
    opacity: 0;
    transform: translate3d(-3vw, 0, 0);
    transition: all ease-in-out 1s;
}

.animatableOpacity {
    opacity: 0;
    transition: all ease-in-out 1s;
}

.showed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: all ease-in-out 1s;
}

/* Media Queries */

/* Maximum Screen Width = 1024 */
@media screen and (max-width: 1024px) {
    .menu:hover .line1 {
        transform: scaleX(0.5);
    }

    .menu:hover .line3 {
        transform: scaleX(0.75);
    }

    .menu.active .line3 {
        transform: scaleX(1);
    }
}

/* Maximum Screen Width = 767 */
@media screen and (max-width: 767px) {
    h1 {
        width: 90%;
        font-size: 4vh;
        bottom: 45%;
    }

    h2#slogan {
        width: 90%;
        font-size: 4vh;
        bottom: 20%;
    }
    /* Soial buttons need to always be visible
  .shareBtn {
    display: none;
  }

  footer .socialBanner {
    display: none;
  }
  */
    section {
        padding: 50px 2% 50px 2%;
    }

    .hardLight {
        width: 100%;
    }

    #bandVideo {
        max-width: 100%;
    }

    .contactForm input,
    .contactForm textarea {
        width: 90%;
    }

    .imgContent .card-insta::before {
        display: none;
    }

    .date table td a:hover {
        transform: none;
    }

    .contactForm input[type='submit']:hover {
        transform: none;
        letter-spacing: 0.2rem;
        color: #1a1b1d;
        background-color: white;
    }

    #upArrow {
        width: 48px;
    }
    #upArrow:hover {
        -webkit-animation: none;
        animation: none;
    }

    .date table td:nth-of-type(even) {
        padding-left: 1px;
    }
}

/* Width (all media) between 768 to 1024 */
@media all and (min-width: 768px) and (max-width: 1024px) {

    .contactForm input,
    .contactForm textarea {
        width: 90%;
    }
}

/* Maximum width (all media) = 320 */
@media all and (max-width: 320px) {
    table {
        font-size: 0.8rem;
    }
    table td:last-of-type {
        display: none;
    }

    .hardLight {
        font-size: 2vh;
    }
    .footerBanner p.bolder {
        font-size: 0.8rem;
    }
}
