body {
padding:0px; 
margin: 0px;
margin-top: 125px;
}


section {
  width: 100%;
  /*background-color: #1f1f1f;*/
  background-color: #464545;
}


.content1 {
        padding-top: 60px;
    padding-bottom: 60px;
   }

.content1 p {
  color: lightgray;
}

.content1 h2 {
    color: #d83f87;
}

.container {
  max-width: 1140px;
  padding-left: 15px;
  padding-right: 15px;
    margin-right: auto;
    margin-left: auto;
}

/*----------------------------header section----------------------*/

header{

	background-color:black;
  padding-top:0px;
  padding-bottom:0px;
  top: 0; /* fix the header to top of the page */
  width: 100%; /* make the header strecth ful width when fixed to the top of page */
  position: fixed; /* fix the header to the top of the page so that the content scrolls under it*/
 	}	

.logo {
padding-top:10px;
padding-bottom:10px;
width: 80%;
display: flex;
align-items: center;
}


.Navbar {
  background-color: black;
  display: flex; /* using flex aligns the links on the same row easily n a line */
  font-family: sans-serif;
  color: white;
  max-width: 1140px;
  margin: auto;
  align-items: center; /*using flex aligns te items in the center of the nav bar*/
  min-height: 84px;
  }

.Navbar__Link {
  padding-left: 15px;
  list-style-type: none;
  

}

.Navbar__Link a  {
    color: #73c2d5;
    text-decoration: none!important;
    font-family: 'Titillium Web', sans-serif;

}

.Navbar__Link a:focus {
  color: white;

}

.Navbar__Link a:hover {
  color: rgba(255,255,255,.75);
    border-bottom: 2px solid lightblue;
    padding-bottom: 5px;
  
}

nav .current {
  color: rgba(255,255,255,.75);
    border-bottom: 2px solid lightblue;
    padding-bottom: 5px;
  
}

.Navbar__Items, ul {
  display: flex; /* display in a row */
  margin-left:auto;
}

.Navbar__Items--right {
  margin-left:auto; /* links will move to the right side of the nav bar by having left margin auto */
}

 .fas .fa-bars {
align-items: center; 
}

.Navbar__Link-brand {
  margin-right:auto;
}


/*-------------------social media bar-----------------*/
.socialmedia {
  background-color: #d83f87;
  height: 42px;
 width:100%;

  }

  .socialmedia a {
    padding-left: 20px;
    color: white;
    text-decoration: none;
    }

.socialmedia nav ul {
  display:flex;
  height: 42px;
  align-items: center;
  list-style-type: none;
  padding-left: 0px;
 margin-top: 0px;
}


ul li.buy {
  margin-right: auto;
  margin: 7px;
  background-color: #d83f87;
  color: white;
  border: 1px solid;
  padding: 6px 6px;
  font-family: "Arial";
  font-size: 14px;
}

.buy a  {
  padding-left: 0px;
}

.rightsocial {
  margin-left: auto;
}
@media only screen and (min-width: 769px) {
  .Navbar__Link-toggle {
  display: none; /* this will hide the toggle button */ 
 }

}

/*---------------Nav bar on small screen ---------------------------*/
@media only screen and (max-width: 768px) {

.Navbar {
  align-items: left;
}

  .Navbar__Items,
  .Navbar {
    flex-direction: column; /* nav links will display in a column */

  }
  .Navbar__Items {
    display: none;
    margin-right:auto;

  }
  .Navbar__ToggleShow {
    display: flex;
  }
  .Navbar__Link-toggle {
    margin-top: 35px;
    align-self: flex-end; 
    display: inline-flex;
    position: absolute;
    cursor: pointer;
    margin-left: auto;
   } 

  .Navbar .Navbar__Items.Navbar__ToggleShow {
    margin-left: 15px;
    
  }

  .Navbar__Link {
    padding-bottom: 10px;
  }


  .Navbar__Items ul{
    flex-direction: column;
    padding-left: 0px;
  }
  .Navbar__Link-brand {
    margin-top:10px;
  }

  

}



/*-------------------------------Header end-------------------------------*/

/*-----------------------------------fonts-------------------------------*/



h1 {
    font-size: 45px;
    font-family: 'Titillium Web', sans-serif;
    background-color: rgba(42, 27, 61, 0.8);
    font-weight: 400;
    padding:10px;
}

@media only screen and (max-width: 600px) {
  h1 {
    font-size: 20px;
  }
}

h2 {
  font-size: 28px;
  font-family: 'Titillium Web', sans-serif;
  color: white;
}
p {
  font-size: 22px;
  font-family: 'Open Sans', sans-serif;
  margin:0px;
}




/*---------------------------------mailing list footer------------------------*/

.mailinglistfooter {
  background-color: #73c2d5;
}

 .mailinglist {
  display: flex;   /*displays all items in a row*/
  flex-wrap: wrap; 
  align-items: center;
  justify-content: center;
 min-height: 42px;
 padding-bottom: 10px;
 padding-top: 10px;
}

.mailinglist h2,label {
  padding-left: 20px;
  padding-right: 20px;
  color: #2a1b3d;
  font-size:16px;
  font-family: 'Titillium Web', sans-serif;

}

.mailinglist input {
  margin-right: 20px;
  padding: 3px;
}

@media screen and (max-width: 610px) {
    .mailinglist input {
        margin-bottom: 10px;
    }  
}

.mailinglist button {
  background-color: #d83f87;
    border: none;
    padding: 5px 10px;
    color: white;
    font-size: 15px
}



/*----------bottom footer--------- */
footer {
  
  background-color: #2a1b3d;
 /* padding-top: 10px;
  padding-bottom: 10px;*/
  color: #e0b5c8;
  text-align: center;
  min-height: 58px;
}


/*footer are created with a grid layout and template areas assigned*/

.footerlinks {
  display: grid;
  grid-template-areas: 
  "footer2 footer3 footer4";
grid-template-rows: 40px 1fr ;
grid-auto-columns: 1fr; /*this make all the footer grid rows the same width, without they are uneven sizes*/
}

.footerlinks p {
  font-size:12px;
      margin-top: 20px;
      font-family: 'Titillium Web', sans-serif;

}

/*on a mobile device to make grid areas stack on each other and position of them rearranged so footer3 shall appear first*/
@media all and (max-width: 575px) {
  .footerlinks {
  display: grid;
  grid-template-areas: 
  "footer3"
  "footer4"
  "footer2";
}
}

.footer2 {
  grid-area: footer2;
 margin-bottom: 20px;
}

.footer3 {
  grid-area: footer3;
  margin:auto;
  font-size:12px;
   margin-top:10px;
      font-family: 'Titillium Web', sans-serif;

}

.footer3 li {
  list-style-type: none;
  color: #73c2d5;
 }

 .footer3 ul {
  padding-left:0px;
 }
.footer3  a {
     text-decoration:none;
      color: #73c2d5;
      padding-left:5px;
      padding-right:5px;
  }

.footer4 {
  grid-area: footer4;
}

/*-------------------------------Footer end------------------------------*/

/*-------------------------------Home page-------------------------------*/


/* top full width image */
/*.homeimg {
  
   background-image: url("images/audience2.jpg");
  display:grid;
  min-width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin:0;
  padding-top: 50px;
  padding-bottom: 50px;
}*/

/*@media (min-width: 768px) {
 .homeimg {
  height: 300px;
 }
 }*/
.homehero {
  background-image: url("images/audience2.jpg");
}

/* Image heading */
.mainheading {
    color: white;
    text-shadow: 2px 2px 4px #000000;
    text-align: center;
   display: table-row;
    padding:10px;
}


/*desktop view of 4 picture links these are laid out using Grid CSS */
.piclinks {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  padding-bottom: 30px;
  padding-top: 60px;
  grid-gap: 10px 20px; /*adds padding between the grids*/
}


.piclink img{
   max-width: 100%;
  height: auto;
}
/*--------------------- media queries for home page-----------------------*/


/*           */
@media screen and (max-width: 738px) {
.homeimg  {
  padding-top: 50px;
  padding-bottom: 50px;
  }
}
/*        */
@media screen and (max-width: 500px) {
  .piclink img {
    max-width: 100%;
  }

/*                    */
.piclinks {
  display: grid;
 grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  padding-bottom: 30px;
  padding-top: 30px;
  grid-gap: 10px 20px; /*adds padding between the grids*/
}

.homeimg  {
  padding-top: 20px;
  padding-bottom: 20px;
  }

/*on a mobile device the footer links display stacked in a column */
  .footerlinks {
  flex-direction: column;
}

}
/*------------------------------home page end -----------------------------*/

/*------------------------------ events Page --------------------------------*/

.eventshero {
    background-image: url('images/eventsbanner.jpg');
  }




/*-------------------------------------------------------------------------*/

/*------------------------------artists page---------------------------------*/


.artistshero {
    background-image: url('images/artistbanner2.jpg');
  }



p.intro   {
  text-align: center!important;
}

/*         */
.artists {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: 1fr 1fr 1fr;   
  text-align: center;
  margin-top:80px;
}

@media screen and (max-width: 700px) {
  .artists {
    grid-template-columns: 1fr 1fr;    
  }
  }  

  @media screen and (max-width: 510px) {
  .artists {
    grid-template-columns: 1fr ; 
  }
  }  

  .artists h2 {
    width:190px;
    background-color: #2a1b3d;
    margin: 0px;
    padding: 5px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

.artists img {
width:auto;
}

.artists p {
  font-size: 14px;
  width: 200px;
  margin:auto;
  text-align: left;
  padding-top: 10px;
 padding-bottom: 20px;
}
/*-------------------Gallery page ------------------------*/


/*.galleryhero {
    background-image: url('images/gallerybanner.jpg');
  }
*/



/*---------------------------------------------------------*/


/*---------------------About Page---------------------------*/

.abouthero {
      background-image: url('images/gallerybanner.jpg');
  }

/*        */
.accordion {
  background-color: #2a1b3d;
  color: #d83f87;
    font-weight: 700;
    font-size: 18px;
 
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
    
  border: 1px grey solid;  
}

/*.active, .accordion:hover {
  background-color: #ccc;
}*/

/*           */
.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  margin-bottom: 10px;
  background-color: lightgrey;
}

.panel p {
  margin-top: 0px;
 
    color: black;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    padding:10px;
}

/*-----------------------------------------------------------*/

/*----------------------Links Page----------------------------*/

.linkshero {
    background-image: url('images/linksbanner.jpg');
  }

/*   */
.links {
  display:grid;
  /*grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));*/
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 20px;
  text-align: center;
}

.links h2 {
  margin-top: 0px;
}

/*------------------------------------------------------------*/

/*-----------------------Contact Page-------------------------*/

.contactshero {
      background-image: url('images/contactbanner.jpg');
  }

.contactpage a {
  font-size:22px;
  color:lightblue;
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
}

.contactpage {
  display:flex;
 }
 .contactpage p {
  padding-bottom: 20px;
 }

.contactpage article {
  width:50%;
  }

.contactpage h2 {
margin-top: 0px;
}
 .pic {
  max-width: 100%;
  padding-top: 20px;
} 


@media screen and (max-width: 650px) {
  .contactpage  {
    flex-flow: column;
    }

  .contactpage article {
      width:100%;

    }
  .pic {
    max-width:85%;
  }
}
/*------------------------------------------------------------*/

/*--------------top full width image and title-------*/


/*The image is displayed using Flex CSS*/
.hero {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 300px;
  display: flex;
}


@media screen and (max-width: 650px) {
  .hero {
    height: 200px!important;
  }
}


/* the title is positioned using Flex CSS */
.center-content {
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
  color:white;
  }

 
