/* Global group-agreed styles. DO NOT TOUCH THIS SECTION AS IT WILL RESULT IN MERGE CONFLICTS */

/* fonts */
@font-face {
    font-family: 'raleway';
    src: url(../fonts/Raleway/Raleway-VariableFont_wght.ttf);
}

@font-face {
    font-family: 'playfair_display';
    src: url(../fonts/Playfair_Display/PlayfairDisplay-VariableFont_wght.ttf);
}

html {
    scroll-behavior: smooth
}
header {

}

body {
    /* this prevents the scrollbar being needed to go left-right */
    overflow-x: hidden;
    background-color: black;
    width: 103%;
    /*Removes black bars*/
}

h1 {
}


h2{

}

nav {

}

p {

}

footer {

}

/* To avoid merge conflicts, touch only your assigned section.*/
/* Also make custom class names/tag/ids unique. */

/* Styles for each section 1*/


/* Ticket Module (Section 1 - Stin)*/

.ticket_main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    text-align: center;
    width: 500px;
    height: 200px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    margin-left: 20%;
    margin-top: 1%;
}

.ticket_subsection {
    display: flex;
    flex-direction: column;
    width: 70%;
    height: 50%;
}

.button_ticket {
    font-family: 'raleway', 'sans-serif';
    font-weight: bold;


    background-color: #A17C3F;
    color: white;
    border-radius: 10px;
    border: none;
    padding: 4% 30%;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    font-size: 10pt;
    margin-right: auto;
    margin-left: auto;
    margin-top: 10px;
}

    .button_ticket:hover {
        background-color: #b1986e;
    }

.ticket_main h2 {
    font-family: 'raleway', 'sans-serif';
    color: white;
    font-size: 11pt;
}

.ticket_main h1 {
    font-family: 'playfair_display';
    color: white;
    margin: 50% 0;
    text-align: center;
}

/* Media Queries */
@media screen and (max-width: 60rem) {

    [class*="ticket_main"] {
        width: 50%;
        margin: 1.5% auto;
        flex-direction: column;
    }

    .ticket_main h1 {
        margin: 10% 0;
        text-align: center;
    }

    .ticket_main h2 {
        margin: 4%;
    }

    .ticket_subsection {
        height: 60%;
    }

    .button_ticket {
        padding: 4% 0%;
        white-space: nowrap;
        margin: 1% 0;
    }
}

/* End of Stin S1 */

.site_part1 {
    background-image: url(../images/main_img.png);
    background-size: cover;
}

.logo_header {
    width: 100%;
    height: 87%;
    text-align: center;
    padding: 35px 20px;
}

.logo_vso {
    width: 106%;
    height: 15%;
    text-align: center;
    display: block;
}

.title {
    width: 64%;
    height: 40%;
    text-align: center;
}

/* Nav bar stuff ~ Stin */

.front_nav {
    width: 80%;
    border-radius: 40px 40px 0 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    /* Center the nav */
    text-align: center;
    align-items: center;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    position: fixed;
    /* move the sticky nav in front of all other elements */
    z-index: 1;
}


.button_nav {
    font-family: 'raleway', 'sans-serif';
    font-weight: bold;
    margin-bottom: 2%;

    background-color: #A17C3F;
    border: none;
    border-radius: 35px;
    transform: translate(0,15%);
    padding: 1rem 4rem;
    color: white;
    text-decoration: none;
    text-align: center;
    align-items: center;
}

    .button_nav:hover {
        background-color: #b1986e;
    }

.front_nav a:hover {
    text-decoration: none;
    font-weight: bold;
}

.front_nav a:active {
    outline: 0;
}

.front_nav a {
    color: inherit;
    text-decoration: underline 0.15em rgba(255, 255, 255, 0);
    transition: text-decoration-color 300ms;
}

#img_nav {
    width: 9vw;
    padding-right: 12%;
}

.img_button_nav {
    /* width: 50px; */
    width: 30px;
    padding-right: .5rem;
}

.img_button_nav:hover {
    /* width: 60px; */
    width: 30px;
    padding-right: .5rem;
}

.selectors {
    font-family: 'raleway', sans-serif;
    display: inline-block;
    /* top | right | bottom | left */
    margin: 1vw 10% 1vw 0;
}

.selectors_m {
    font-family: 'raleway', sans-serif;
    /* top | right | bottom | left */
    transform: scale(-1,1);
    font-weight: 700;
    padding-top: 3vw;
    padding-bottom: 3vw;
}


.mobile_nav {
    position: fixed;
    float: right;
    width: 100%;
    height: 10%;
    z-index: 1;
    transform: scale(-1,1);
}

.mobile_nav_o {
    width: 0%;
    background-color: rgba(0, 0, 0, 0.8);
    height: 100%;
    animation-name: open;
    animation-duration: 1s;
    animation-direction: normal;
    animation-play-state: paused;
    z-index: 1;
}

.navigation_vert {
    text-align: center;
}

.nav_button_mob {
    width: 50px;
    padding: 10px;
    padding-right: .5rem;
}

.button_mobi {
    transform: scale(-1,1);
}

@keyframes open {
    from {
        width: 0%;
        height:100%;
    }

    to {
        width: 100%;
        height:100%;
    }
}

a:link {
    color: white;
    background-color: transparent;
    text-decoration: none;
}

a:hover {
    color: yellow;
    background-color: transparent;
    text-decoration: underline;
}

a:visited {
    color: white;
    background-color: transparent;
    text-decoration: none;
}
/* End of section */

/* Styles for each section 2: Program*/

.paragraphs {
    font-size: 11pt;
    font-weight: 300;
    padding: 10px;
    font-family: 'raleway', 'sans-serif';
}

.subsection_main {
    background-color: black;
    background-size: cover;
    width: 100%;
    height: 100%;
    display: flex;
}

/* Section 2 */
.site_part2 {
}

.pipe_1 {
    width: 15%;
    height: 50%;
}

.subsection {
    padding: 10%;
    width: 65%;
}

.subsection2 {
    padding-top: 15%;
}

#header_l {
    font-size: 20pt;
}

.information_row {
    font-family: 'raleway', 'sans-serif';
    display: flex;
    font-size: 9pt;
    font-weight: 600;
    padding-left: 18px;
    padding-top: 5px;
}

.icons {
    width: 10%;
    height: 10%;
}

.program_info {
    width: 78%;
    height: 78%;
    font-family: 'playfair_display', 'serif';
    font-size: 3em;
    font-weight: 600;
    color: white;
}

.overview_img {
    width: 100%;
    height: 100%;
    display: flex;
    background-size: cover;
    border-radius: 10px;
    background-image: url(../images/overview_img.png);
}

#header_p {
    padding-top: 20px;
}

.footer_2 {
    width: 100%;
}

/* Media Queries */
@media screen and (max-width: 60rem) {

    [class*="program_info"] {
        width:100%;
    }

    [class*="overview_img"] {
        flex-direction:column;
    }
    
    .subsection_main {
    }

    .pipe_1 {
        width: 0%;
        height: 0%;
    }

    .paragraphs {
        padding: 2% 0;
    }
    
    .subsection {
        padding: 10% 10% 0 10%;
        width: 100%;    
    }

    .subsection2 {
        padding: 4% 0 8% 10%;
    }

    .icons{
        width:5%;
        height:auto;
    }

    #header_p {
        padding: 20px 0 0 10%;
    }
    
}


/* End of section*/




/* Styles for each section 3*/

.site_part3 {
}

/* End of section*/




/* Styles for each section 4: Media Player*/

.site_part4 {
    color: white;
    margin-left: 10%;
    white-space: nowrap;
    background-size: cover;
}

.mainBackground {
    background-image: url("../images/outer box for tracks.png");
    background-repeat: no-repeat;
    background-size: 80% 100%;
}

.musicTrack {
    margin-top: 2%;

    margin-left: 2%;
    font-family: 'raleway', 'sans-serif';
    font-size: 15px;
    width: 60%;
    margin-bottom: 5%;
}

    .musicTrack .bottom td {
        padding-bottom: 20px;
    }

.musicTrack-mobile{
    display: none;
}

.musicH1 {
    font-family: 'playfair_display', 'serif';
    font-size: 3em;
    font-weight: 600;
}

.musicH2 {
    font-family: 'playfair_display', 'serif';
    font-size: 20pt;

    margin-left: 2%;
    font-style: normal;
}

.musicDisplayInfo span {
    display: flex;
}

#musicName {
    font-family: 'playfair_display', 'serif';

    font-size: 30px;
    font-weight: bold;
    margin-top: 5%;
    margin-left: 10%;
}

#musicAuthor {
    font-family: 'raleway', 'sans-serif';
    font-size: 16px;
    color: #B38C4A;
    margin-left: 10%;
    margin-bottom: 5%;
}

#musicTime {
    font-family: 'raleway', 'sans-serif';
    font-size: 16px;
    margin-left: 80%;
    position: relative;
    margin-top: -4%;
}

.musicDisplay {
    display: flex;
}

.musicDisplayInfo {
    background: rgba(0, 0, 0, 0.9);
    margin-top: 1%;
    margin-left: 2%;
    width: 50%;
    border-radius: 20px;
}

.musicControl {
    display: flex;
    text-align: center;
    align-items: center;
    background-color: #A17C3F;
    margin-left: 5%;
    margin-top: 4%;
    border-radius: 20px;
    height: 60px;
    width: 20%;
}

    .musicControl span {
        transition: all 0.4s;
        cursor: pointer;
        width: 80px;
    }

.pipe {
    margin-top: 8%;
    margin-left: 2.9%;
    position: absolute;
    width: 18%;
    overflow: hidden;
}

@media screen and (max-width: 60rem){

    .site_part4 {
        margin-left: 8vw;
    }

    .mainBackground{
        background-size: 100% 90%;
        height: 100vh;
        width: 80vw;
    }

    .musicTrack{
        display: none;
    }

    .musicTrack-mobile{
        font-family: 'raleway', 'sans-serif';
        display: block;
        font-size: 100%;
        margin-left: 7vw;
        margin-top: 15%;
    }


    .musicH1{
        font-size: 2rem;
    }
    .musicH2{
        font-size: 2rem;
    }

    .musicDisplay {
        display: block;
        padding-top: 10px;
    }

    .musicDisplayInfo {
        background: rgba(0, 0, 0, 0.9);
        margin-top: 1%;
        margin-left: 2%;
        padding-bottom: 20%;
        width: 95%;
        border-radius: 20px;
    }

    .musicControl {
        display: flex;
        text-align: center;
        align-items: center;
        background-color: #A17C3F;
        margin-left: 10%;
        margin-top: -22%;
        border-radius: 20px;
        height: 50px;
        width: 70%;
    }
    
    .musicControl span {
        transition: all 0.4s;
        cursor: pointer;
        width: 80px;
    }

    #musicName{
        font-size: 3vw;
        overflow: hidden;
    }
    #musicTime{
        font-size: 1.2rem;
    }
    #musicAuthor{
        font-size: 2vw;
        overflow: hidden;   
    }
    .pipe{
        display: none;
    }
}
/* End of section*/




/* Styles for section 5: Orchestra*/
    /* this entire section has moved to grid.css */
/* End of section*/




/* Styles for section 6: FaQ*/

.site_part6 {
}



.faq_container {
    text-align:left;
    padding: 0 0 0 40%;
    display: flex;
    flex-direction: column;

    background-color: black;
    height: 100vh;
    width: 100%;
  
    /* Rat Image */
    background-position: left;
    background-size: 40%;
    background-repeat: no-repeat;
    background-image: url(../images/faq_rat.png);


    font-family: 'raleway', sans-serif;
} 

.faq_container h1 {
    font-family: 'playfair_display', 'serif';
    font-size: 3em;
    font-weight: 600;
    color:white;
}

/* Style for the FAQ */
details {    
    width:80%;
    margin-top:25px;
    text-align:left;
    border-radius: 4px;
    padding: 1em 0;
    

    color: #B38C4A; 
}

summary {
    font-weight: bold;
    margin: -0.5em -0.5em 0;
    padding: 0.5em;
    cursor: pointer;
}

/* hide html style by default */
summary {list-style: none}
summary::-webkit-details-marker {display: none; }

/* This is for the little "twisty" before the question */
details summary::before { 
    content:"> "; 
    color: #B38C4A; 
  }
  
  details[open] summary::before { 
    content:"∨ "; 
  }
  
/* What happens to the text when its opened */


details[open] summary {
    margin-bottom: 0.5em;
}


/* Media Queries for FAQ */
@media screen and (max-width: 60rem){
    summary {
        margin: 0 0;
        padding: 1%;
    }

    details {    
        width:100%;
        margin-top:1.5vw;
        text-align:center;
        padding: 0 0 2% 0;
    
        border: 1px solid #B38C4A;
        border-right-color: transparent;
        border-left-color: transparent;
        background-color: rgba(0, 0, 0, 0.8);
        color: #B38C4A; 
    }

    [class*="faq_container"] {
        text-align:center;
        align-items: center;

        padding-top:0;
        padding: 0 0 0 0;

        /* Rat Image */
        background-color:rgba(0, 0, 0, 0.5);
        background-size: 50%;
        background-position:center;
    } 
}


/* End of section*/

/* Styles for footer */
footer {
    padding-top: 2%;
    padding-left: 2%;
    padding-bottom: 6%;
    color: #A17C3F;
    font-family: 'raleway', sans-serif;
    font-weight: bold;
}

.end-footer {
    display: flex;
}

    .end-footer a {
        margin-right: 5%;
        color: #A17C3F;
        font-size: 10pt;
    }

.footer-links {
    font-size: 1vw;
    color: #A17C3F;
    margin-top: 5%;
    text-decoration: none;
    font-family: 'raleway', sans-serif;
    font-weight: bold;
}

    .footer-links:hover {
        color: white;
        text-decoration: none;
    }

@media screen and (max-width: 60rem) {
    .footer {
        padding-top: 2%;
        padding-left: 2%;
        padding-bottom: 6%;
        color: #A17C3F;
        font-family: 'raleway', sans-serif;
        font-size: 10vw;
        font-weight: bold;
    }
}

/* End of Section */

/* Styles for Documentation Page */
.doc-heading, .cite-heading {
    color: white;
    font-family: 'playfair_display', 'serif';
    font-size: 3vw;
    margin-bottom: 5%;
    margin-top: 3%;
    text-align: center;
}

.wireframes-section {
    margin-left: 1%;
    margin-right: 1%;
    font-family: 'raleway', sans-serif;
    font-size: 1.2vw;
    color: white;
}

.wireframes-flex {
    display: flex;
    justify-content: center;
}

.wireframe-heading {
    color: white;
}

/* the 3 site pictures */
.wireframe, .final-mockup, .final-mobile-mockup {
    width: 99%;
    height: auto;
}

.w-flex2 {
    color: white;
    font-size: 0.6vw;
}

.wireframe-inspo {
    font-size: 1vw;
}


.robert-kondo-pipes {
    width: 50%;
    height: auto;
}

.knob-inspo {
    width: 40%;
    height: auto;
}

.colour-section {
    margin-top: 20%;
    color: white;
}

.colours-heading, .type-heading {
    font-family: 'raleway', sans-serif;
    font-size: 2vw;
    text-align: center;
    margin-bottom: 5%;
}
.colours-headingg{
    font-family: 'raleway', sans-serif;
    font-size: 2vw;
    text-align: center;
    margin-bottom: 5%;
    margin-top: 10%;
}

.colour {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-bottom: 1%;
}

.colours-img {
    width: 19vw;
}

.c-info {
    font-family: 'raleway', 'sans-serif';
    font-size: 1vw;
}

.colours-pics-flex {
    overflow: hidden;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.main-rat-pic {
    width: 70vw;
}

.c-doc {
    width: 35vw;
}

.colours-info {
    display: flex;
    text-align: center;
    align-items: center;
}


.colours-flex-1 {
    align-items: center;
    justify-content: center;
}

.colours-flex-2 {
    flex-direction: row;
    width: 90%;
}

.typography-section {
    margin-top: 20%;
    color: white;
    margin-bottom: 10%;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.type-pics-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    margin-top: 10%;
}

.o-doc {
    width: 60%;
    height: auto;
    margin-left: 10%;
}

.type-text-header, .type-text-subheader, .type-text-body, .type-text-interactable {
    font-family: 'raleway', 'sans-serif';
    font-size: 1.2vw;
}

.type-text-headerr, .type-text-subheaderr, .type-text-bodyy, .type-text-interactablee, .c-infoo {
    font-family: 'raleway', 'sans-serif';
    color: rgb(226, 226, 226);
    font-size: 1vw;
}

.figma{
    font-family: 'raleway', 'sans-serif';
    font-size: 3vw;
    font-weight: bold;
    margin-top: 20%;
    color: #A17C3F;
    text-align: center;
}
.fig-link{
    color: #A17C3F;
    text-decoration: none;
}


@media screen and (max-width: 60rem) {
    .wireframes-flex {
        display: inline-block;
        /* justify-content: center; */
    }
    .wireframe-heading, .wireframe-inspo {
        margin-top: 10%;
        font-size: 3vw;
    }
    .colour{
        /* display: inline-block; */
    }
    .colours.img{
        width: 200%;
        height: auto;
    }
    .colours-pics-flex{
        display: inline-block;
        width: 100%;
    }

    .typography-section{
        display: inline-block;
        justify-content: center;
    }
}

/* End of Section */

/* Styles for Citation Page */

.img-heading {
    text-align: center;
    color: white;
    margin-bottom: 4%;
}

.code-heading {
    margin-top: 5%;
    text-align: center;
    color: white;
    margin-bottom: 4%;
}

.cite-img-grid, .cite-code-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.mid-citations-col {
    text-align: center;
    color: white;
}

#remy-cite {
    margin-left: 20%;
}

.cite-text {
    font-family: 'raleway', 'sans-serif';
    margin-bottom: 5%;
}

#remy-lay {
    margin-left: 10%;
    width: 80%;
    height: auto;
}

@media screen and (max-width: 60rem) {
    #remy-lay, #remy-cite {
        display: none;
    }
    .cite-text{
        font-size: 2vw;
    }
}


/* End of Section */