@charset "UTF-8";

:root {
  --dark-color: darkslateblue;
  --light-color: lightgrey;
  --window-sm-width: 335px;
  --window-md-width: 750px;
  --window-lg-width: 1200px;
  --content-font: 'Montserrat', Helvetica, sans-serif;
  --title-font: 'Times', Times, serif;
}

/* PALATTE */
    .bckgrnd_dark {
        background-color: grey; 
    }
    .bckgrnd_light {
        background-color: lightgrey; 
    }
    .bckgrnd_white {
        background-color: white; 
        color: var(--dark-color);
        border: var(--dark-color);
    }
    .bckgrnd_black {
        background-color: black; 
    }
    .bckgrnd_transparent {
        background-color: transparent; 
        background: rgba(0, 0, 0, 0.4);
        color: white;
        border: white;
    }

h1 {
    width: var(--window-sm-width);
    box-sizing: border-box;
    font-size: 36px;
    text-align: center;
    margin: auto;
    padding: 20px;
    border: 3px solid;
    border-radius: 12px;
}

h2 {
    padding: 0 0 8px 0;
    font-size: 30px;
    border-bottom: 2px solid #000;
}

body
	{
    background-size: 100% auto;
    background-color: lightgrey;
	font-family: var(--content-font);
    font-weight: 400;
    margin: 0;
    padding: 0;
	}

.container {
        box-sizing: border-box;
        width: var(--window-md-width);
        margin: 0 auto;
        padding: 0;
    }
    
    header { 
        display: block;
        background: inherit;
        width: 100%;
	    font-family: 'Roboto', Roboto, sans-serif;
	    z-index: 2000;
        position: -webkit-sticky;
        position: -moz-sticky;
        position: -ms-sticky;
        position: -o-sticky;
        position: sticky;
        top: 0;
        }
        header hr {
            background-color: orange;
            height:4px;
            width:100%;
            margin: 10px 0;
            border:1px solid #000;
        }
        header #logo {
           float: left;
            width: 100%;
            margin: 30px 0 0 0;
        }
            header #logo.img {
                margin: 0 auto;
            }
        header #topnavbar {
           float: left;
            width: 300px;
            display: grid; 
            grid-template-columns: auto auto auto auto auto;
            color: white;
            margin: 0 30px 0 10px;
        }
            header #topnavbar .navtab {
                box-sizing: border-box;
                color: white;
                border-left: 1px solid white;
                text-align: center;
                margin: 0 10px 0 10px;
            }
            header #topnavbar .navtab:first-child{
                border-left: none;
            }
            header #topnavbar .navtab a {
                color: white;
                text-decoration: none;
            }
            header #topnavbar .navtab a:hover {
                color: white;
                padding-bottom: 10px;
                border-bottom: 6px solid yellow;
            }
            
    #navbar_management {
        width: 300px;
        padding: 0 0 20px 0;
        background-color: orange;
    }
            
            
main { 
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
}

main p {
    color: blue;
}
main p::first-line { 
    font-weight: 600;
}
.pageLabel {
    width: 90%;
    box-sizing: border-box;
    margin: auto;
    font-size: 40px;
    text-align: center;
}

.section {
        box-sizing: border-box;
        height: auto;
        width: 100%;
        margin: 0;
        padding: 0 0 20px 0;
        background-color: white;
    }

    .subsection_narrow {
        box-sizing: border-box;
        float: left;
        width: 50%;
        margin: 0;
        padding: 0 8px;
        background: transparent;
    }
    
    .subsection .redirect_button {
        box-sizing: border-box;
        width: 350px;
        display: inline-block;
        font-size: 36px;
        text-align: center;
        margin: 20px auto;
        padding: 20px;
        border: 4px solid white;
        border-radius: 12px;
        background: rgba(72, 61, 139, 0.4);
        color: white;
    }
    
    .subsection .redirect_button:hover {
        background: var(--dark-color);
    }
    .subsection .redirect_button a:link {
        color: var(--light-color);
    }
    .subsection .redirect_button a:visited {
        color: var(--light-color);
    }
    .subsection .redirect_button a:hover {
        color: var(--light-color);
    }
    .subsection .redirect_button a:active {
        color: green;
    }
#conductor_button {
    	font-family: var(--title-font);
}
#pianist_button {
    	font-family: var(--title-font);
}
.sectionLabel {
        box-sizing: border-box;
        height: auto;
        width: 100%;
        margin: 0;
        padding: 20px;
    }

    .sectionLabel .frame {
        width: var(--window-sm-width);
        box-sizing: border-box;
        font-size: 36px;
        text-align: center;
        margin: auto;
        padding: 20px;
        border: 3px solid;
        border-radius: 12px;
    }

    .grid {
        box-sizing: border-box;
        width: 100%;
        margin: auto;
        background-color: inherit; 
        display: grid; 
        grid-template-columns: auto auto;
    }
    
/* FOOTER */

    footer {
	    z-index: 2000;
        padding: 8px;
    	background: var(--dark-color);
        width: 100%;
        height: auto;
        box-sizing: border-box;
        margin: 0;
        color: #FFFFFF;
    }
    footer  a:link {
        color: #FFFFFF;
        text-decoration: none;
    }
    footer a:visited {
        color: #FFFFFF;
        text-decoration: none;
    }
    footer a:hover {
        color: var(--light-color);
    }
    footer a:active {
        color: green;
    }
    
    footer .container {
        display: grid;
        grid-template-columns: 50% 50%;
        margin: auto;
        padding: 0;
        justify-content: space-around;
        font-size: 24px;
        text-align: center;
    }
    
    footer .container .subscribe {
        box-sizing: border-box;
        width: 100%;
        margin: auto;
        padding: 10px;
        justify-content: space-around;
    }

    footer .container .social {
        box-sizing: border-box;
        width: 100%;
        margin: auto;
        padding: 10px;
        justify-content: space-around;
        color: #FFFFFF;
    }

    footer .legal {
        display: grid;
        width: var(--window-md-width);
        box-sizing: border-box;
        grid-template-columns: auto auto auto auto;
        margin: 0 auto;
        text-align: center;
        font-size: 14px;
    }
    footer .legal .privacy {
        box-sizing: border-box;
        border-right: 1px solid white;
        padding: 2px;
    }
    footer .legal .copyright {
        box-sizing: border-box;
        padding: 2px;
    }
    
@media (max-width: 768px) {
    main {
        max-width: 700px;
    }
    .container {
        width: var(--window-sm-width);
    }
    .subsection_narrow {
        width: 100%;
    }
    .section .label {
        padding: 0 40px 0 40px;
        font-size: 32px;
    }
    .grid {
        grid-template-columns: auto;
    }
    footer .container {
        grid-template-columns: 100%;
    }
    footer .legal {
        width: var(--window-sm-width);
        grid-template-columns: auto;
    }
    footer .legal .privacy {
        border-right: none;
    }
}

@media (min-width: 1200px) {
    .container {
        width: var(--window-lg-width);
    }
    .grid {
        grid-template-columns: auto auto auto;
    }
}