@import url('https://fonts.googleapis.com/css?family=Lato');

* {
  box-sizing: border-box;
  transition: all ease-in-out 250ms;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Lato', sans-serif;
  text-align: center;
}

img {
  max-width: 100%;
  height: auto;
}

.clearfix::after,
section::after,
footer::after {
  content: '';
  display: block;
  clear: both;
}

.container {
  width: 80%;
  margin: 0 auto;
}




/* list
-----------------------------------------*/

.unstyled-list {
  list-style-type: none;
}



/* buttons
------------------------------------------*/

.button {
  display: inline-block;
  font-size: 1.2rem;
  text-decoration: none;
  text-transform: uppercase;
  border-width: 2px;
  border-style: solid;
  padding: .5em 1.5em;
}

.button-accent {
  color: #00ff6c;
  border-color: #00ff6c;
  background: rgba(35, 35, 35, 0.8);
}

.button-accent:hover,
.button-accent:focus{
  background: #00ff6c;
  color: #232323;
}

@media (min-width:60rem) {
  .button{
    font-size: 1.5rem;
  }
}

.button-small{
  font-size: 0.9em;
}

@media (max-width:45em) {
  .button{
    font-size: 0.9rem;
  }

  .button-small{
    font-size: 0.7rem;
  }
}

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

nav{
  z-index: 9;
  position: fixed;
  left: 0;
  right: 0;
  padding: 0.5em 0;
}


nav ul {
  list-style: none;
}

nav li{
  display: inline-block;
  margin: 1em;

}

nav a {
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1rem;
  padding: .5em;
  color: #FFF;
}

nav a:hover,
nav a:focus{
  color: #DDD;
}

nav.bg{
  background: rgba(35, 35, 35, 0.9);
}

@media (max-width:45rem) {
  nav a{
    font-size: 0.7rem;
  }
}

@media (max-width:31rem) {
  nav li{
    margin: .5em;
  }
}


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

.home {
  background-image: url(../img/MaaritBG.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #FFF;
  height: 100vh;
  padding-top: 35vh;
}

.title {
  font-size: 2.5rem;
  margin-bottom: 1.5em;
}

.title span {
  font-weight: 300;
  display: block;
  font-size: .6em;
}

@media (min-width:60rem) {
  .title{
    font-size: 3.7rem;
  }
}

@media (max-width:45em) {
  .title{
    font-size: 2rem;
  }

}


/* Subsection (about, band, gallery, contact)
-----------------------------------------*/

.subsection {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.subsection h1 {
  padding-bottom: 1.5rem;
  font-size: 2rem;
}



/* about
-----------------------------------------*/

.about {
  background-image: url(../img/footer_lodyas.png);
  color: #fff;
}

.aboutgrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.about iframe{
  width: 400px;
  height: 300px;
}

.about p{
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: left;
}

.gridItem{
    margin: auto;
}

.about img{
  width: 60%;
  box-shadow: 0 0 1em 0.5em rgba(0,0,0, 0.5);
  margin-bottom: 1em;
}

@media (max-width:60em) {
  .aboutgrid{
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .about iframe{
    width: 300px;
    height: 225px;
  }
}

@media (max-width:45em) {
  .about iframe{
    width: 200px;
    height: 150px;
  }

  .about p{
    font-size: 0.9rem;
  }
}

@media (max-width:30em) {
  .aboutgrid{
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
  }
}




/* Band
-----------------------------------------*/

.band {
  background-image: url(../img/gray_sand.png);
  color: #FFF;
}

.band-grid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.band-item {
  padding-bottom: 3.5rem;
}

.band-item img {
  width: 60%;
  border-radius: 0.3em;
}

.band-desc{
  width: 80%;
  margin: 0 auto;
}

.member-name{
  color: #00ff6c;
  font-size: 1.2em;
}

.member-designation{
  color: #00ff6c;
}

@media (max-width:45em) {
  .band p{
    font-size: 0.7rem;
  }
}

@media (max-width:30em) {
  .band-grid{
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
  }
}

/* Gallery
-----------------------------------------*/

.gallery{
  background-image: url(../img/green-fibers.png);
  color: #FFF;
}

.gallerybox{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.zoomImage{
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery img{
  display: block;
  transition: 1s;
}

.gallery img:hover {
  transform: scale(1.1);
}

@media (max-width:30em) {
  .gallerybox{
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* contact
-----------------------------------------*/

.contact {
  background-image: url(../img/gray_sand.png);
  color: #fff;
}

.contact-item{
  margin-bottom: 2em;
}

/* footer
-----------------------------------------*/

footer{
    background: #232323;
    color: #FFF;
    text-align: left;
}

footer a{
  text-decoration: none;
}

footer img{
  margin: 2em;
  max-width: 3rem;
  max-height: 3rem;
}

@media (max-width:45em) {
  footer img{
    margin: 1.5em;
    max-width: 2rem;
    max-height: 2rem;
  }
}

@media (max-width:30em) {
  footer img{
    margin: 1em;
    max-width: 1.5rem;
    max-height: 1.5rem;
  }
}
