/*
  BLUE   #000081
  RED    #C20F0B
  YELLOW #E9E430
  GRAY   #9FA0A2
  BLACK  #080B00
*/

/*
.one-hun { background-color: red; width: 100px; }
.two-hun { background-color: orange; width: 200px; }
.three-hun { background-color: yellow; width: 300px; }
.four-hun { background-color: green; width: 400px; }
.five-hun { background-color: blue; width: 500px; }
*/
.six-hun { background-color: indigo; width: 600px; }
/*
.seven-hun { background-color: violet; width: 700px; }
.eight-hun { background-color: purple; width: 800px; }
*/
.nine-hun { background-color: red; width: 900px; }
.one-thou { background-color: orange; width: 1000px; }
/*
.onetwo-thou { background-color: green; width: 1200px; }
*/
/*
.onefour-thou { background-color: blue; width: 1400px; }
.onesix-thou { background-color: indigo; width: 1600px; }
.oneeight-thou { background-color: violet; width: 1800px; }
.two-thou { background-color: purple; width: 2000px; }
*/

body {
  background-color: #000081;
  font-family: "Newsreader", sans-serif;
  font-size: 1.2em;
}

.header {
  display: flex;
  flex-direction: row;
  /*grid-template-columns: auto auto;*/
  padding-left: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-right: 0px;
  align-items: flex-start;
  margin-bottom: 10px;
}

main {
  margin-top: 20px;
}

.center-text {
  text-align: center;
}

.title-nav-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
}

.nav-container {
  display: grid;
  grid: 50px / auto auto auto auto auto auto;;
  align-items: center;
  /*flex-direction: row;*/
  gap: 10px;
}

.title-name {
  font-family: "Manufacturing Consent", sans-serif;
  width: 100%;
  color: #9FA0A2;
  text-align:center;
  font-size: 4em;
  font-weight: bold;
  padding-bottom: 50px;
  padding-top: 50px;
}

h1 {
  color: #9FA0A2;
  font-size: xx-large;
  margin-left: 20px;
}

p {
  color: #9FA0A2;
  font-size: 1.5em;
  margin-left: 20px;
}

a {
  text-decoration: none;
  color: #000081;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
}

.button {
  width: 100%;
  text-transform: uppercase;
  font-size: larger; 
  font-weight: bold;
  height: max-content;
  margin-right: 5px;
  margin-left: 5px;
  padding-top: 10px;
  padding-left: 20px;
  padding-bottom: 10px;
  padding-right: 20px;
  border-color: #080B00;
  border-width: 3px;
  border-style: solid;
  border-radius: 10px;
  background-color: #E9E430;
  cursor: pointer;
}

.button-selected {
  text-transform: uppercase;
  font-size: larger; 
  font-weight: bold;
  height: max-content;
  margin-right: 5px;
  margin-left: 5px;
  padding-top: 10px;
  padding-left: 20px;
  padding-bottom: 10px;
  padding-right: 20px;
  border-color: #080B00;
  border-width: 3px;
  border-style: solid;
  border-radius: 10px;
  background-color: #C20F0B;
  color: #E9E430;
  cursor: pointer;
}

.btn-group .button:hover {
  background-color: #C20F0B;
  color: #E9E430;
}


.photoframe {
  border:#080B00;
    border-width: 3px;
    border-style: solid;
    border-radius: 10px;
  padding: 10px 10px 10px 10px;
  margin-left: 50px;
  margin-right: 50px;
  background-color: #E9E430;
  box-shadow: 5px 5px 10px #080B00;
}

.photoframe img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: contain;
}


/*
  BLUE   #000081
  RED    #C20F0B
  YELLOW #E9E430
  GRAY   #9FA0A2
  BLACK  #080B00
*/


*,
*:before,
*:after {
  box-sizing: inherit;
}

.event-container {
  margin: 5% 3%;
  padding: 20px;
  
  @media (min-width: 48em) {
    margin: 2%; 
  }
  
  @media (min-width: 75em) {
    margin: 2em auto;
    max-width: 75em;
  }
}

.responsive-table {
  width: 100%;
  margin-bottom: 1.5em;
  border-spacing: 0;
  color: #080B00;
  font-family: "Newsreader", sans-serif;
  font-size: 0.9em;

  
  @media (min-width: 48em) {
    font-size: .9em; 
  }
  
  @media (min-width: 62em) {
    font-size: 0.9em; 
  }
  
  thead {
    /* Accessibly hide <thead> on narrow viewports */
    position: absolute;
    clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
    padding: 0;
    border: 0;
    height: 1px; 
    width: 1px; 
    overflow: hidden;
    
    @media (min-width: 48em) {
      /* Unhide <thead> on wide viewports */
      position: relative;
      clip: auto;
      height: auto;
      width: auto;
      overflow: auto;
    }
    
    th {
      background-color: #080B00;
      border: 1px solid #080B00;
      font-weight: normal;
      text-align: center;
      color: white;
      
      &:first-of-type {
        text-align: left; 
      }
    }
  }
  
  /* Set these items to display: block for narrow viewports */
  tbody,
  tr,
  th,
  td {
    display: block;
    padding: 0;
    text-align: left;
    white-space: normal;
    background-color: #9FA0A2;
  }
  
  tr {   
    @media (min-width: 48em) {
      /* Undo display: block */
      display: table-row; 
      background-color: green;
    }
  }
  
  th,
  td {
    padding: .5em;
    vertical-align: middle;
    
    @media (min-width: 30em) {
      padding: .75em .5em; 
    }
    
    @media (min-width: 48em) {
      /* Undo display: block */
      display: table-cell;
      padding: .5em;
    }
    
    @media (min-width: 62em) {
      padding: .75em .5em; 
    }
    
    @media (min-width: 75em) {
      padding: .75em; 
    }
  }
  
  tfoot {
    font-size: .8em;
    font-style: italic;
    
    @media (min-width: 62em) {
      font-size: .9em;
    }
  }
  
  tbody {
    @media (min-width: 48em) {
      /* Undo display: block */
      display: table-row-group; 
    }
    
    tr {
      /*margin-bottom: 1em;*/
      
      @media (min-width: 48em) {
        /* Undo display: block */
        display: table-row;
        border-width: 1px;
      }
      
      &:last-of-type {
        margin-bottom: 0; 
      }
      
      /*&:nth-of-type(even) {
        @media (min-width: 48em) {
          background-color: #75bcff;
        }
      }*/
    }
    
    th[scope="row"] {
      background-color: #080B00;
      color: white;
      
      @media (min-width: 30em) {
         border-bottom: 1px solid #080B00; 
      }
      
      @media (min-width: 48em) {
        background-color: #75bcff;
        color:#080B00;
        text-align: left;
      }
    }
    
    td {
      text-align: right;

      @media (min-width: 30em) {
         border-bottom: 1px solid #080B00; 
         background-color: #9FA0A2;
      }
      
      @media (min-width: 48em) {
        /* border-left: 1px solid #9FA0A2; */
        /* border-bottom: 1px solid #9FA0A2; */
        text-align: center; 
      }
      
      &:last-of-type {
        @media (min-width: 48em) {
          /* border-right: 1px solid #9FA0A2; */
        } 
      }
    }

    
    td[data-title]:before {
      content: attr(data-title);
      float: left;
      font-size: .8em;
      color: #080B00;
      
      @media (min-width: 30em) {
        font-size: .9em; 
      }
      
      @media (min-width: 48em) {
        /* Don’t show data-title labels */
        content: none; 
      }
    } 
  }
}

.contact-info {
  display:grid;
  grid-template-columns: 350px auto;
  align-items: middle;
  border:#080B00;
  border-width: 3px;
  border-style: solid;
  border-radius: 10px;
  margin-bottom: 20px;
  background-color: #9FA0A2;
  box-shadow: 5px 5px 10px #080B00;
  font-family: "Newsreader", sans-serif;
  font-size: 1.2em;
}

@media (max-width: 600px) {
  .contact-info{
    grid-template-columns: 1fr; /* Single column on small screens */
  }
}

.contact-position {
  font-weight: bold;
  font-size:larger;
  padding: 10px 10px 10px 10px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  background-color: #E9E430;
  font-family: "Newsreader", sans-serif;
  font-size: 1.2em;
}

.contact-name {
  font-weight:lighter;
  padding-top: 15px;
  padding-left: 10px;
  font-family: "Newsreader", sans-serif;
  font-size: 1.2em;
}

.contact-telephone {
  font-style: italic;
  margin-left: 50px;
  font-family: "Newsreader", sans-serif;
  font-size: 1.2em;
}

.social-grid {
  display: grid;
  align-items: center;
  align-content: center;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) {
  .social-grid{
    grid-template-columns: 1fr; /* Single column on small screens */
  }
}

.social-card {
  border:#080B00;
    border-width: 3px;
    border-style: solid;
    border-radius: 10px;
  padding: 10px 10px 10px 10px;
  background-color: #9FA0A2;
  box-shadow: 5px 5px 10px #080B00;
  align-content: center;
  align-items: center;
  color:#080B00;
}

.social-card p {
  color:#080B00;
  font-family: "Newsreader", sans-serif;
  font-size: 1.1em;
  padding-top: 3px;
  padding-bottom: 3px;
}

.music-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;

  @media (max-width: 1200px) {
    grid-template-columns: 1fr 1fr 1fr;
  }

  @media (max-width: 1000px) {
    grid-template-columns: 1fr 1fr;
  }

  @media (max-width: 800px) {
    grid-template-columns: 1fr;
  }
}

.music-card {
  border:#080B00;
    border-width: 3px;
    border-style: solid;
    border-radius: 10px;
  padding: 10px 10px 10px 10px;
  background-color: #9FA0A2;
  box-shadow: 5px 5px 10px #080B00;
  color:#080B00;
  font-family: "Newsreader", sans-serif;
  font-size: 1.1em;
}

.music-card-p {
  color:#080B00;
  font-family: "Newsreader", sans-serif;
  font-size: 1.1em;
  padding-top: 3px;
  padding-bottom: 3px;
}

@media (max-width: 1200px) {
  .nav-container {
    display: grid;
    grid: 50px / auto auto auto;
    /*
    flex-wrap: wrap;
    flex-direction: column;
    */
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .photoframe {
    border:#080B00;
      border-width: 3px;
      border-style: solid;
      border-radius: 10px;
    padding: 10px 10px 10px 10px;
    margin-top: 20px;
    margin-left: 0px;
    margin-right: 0px;
    background-color: #E9E430;
    /* box-shadow: 5px 5px 10px #080B00; */
  }
}

@media (max-width: 900px) {
  .nav-container {
    display: grid;
    grid: 50px / auto auto;
    /*
    flex-wrap: wrap;
    flex-direction: column;
    */
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .photoframe {
    border:#080B00;
      border-width: 3px;
      border-style: solid;
      border-radius: 10px;
    padding: 10px 10px 10px 10px;
    margin-top: 20px;
    margin-left: 0px;
    margin-right: 0px;
    background-color: #E9E430;
    /* box-shadow: 5px 5px 10px #080B00; */
  }
}

@media (max-width: 600px) {
  .header {
    display: flex;
    flex-direction: column;
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 0px;
    align-items: center;
    margin-bottom: 15px;
  }

  .title-nav-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .nav-container {
    display: grid;
    grid: 50px / auto;
    /*
    flex-wrap: wrap;
    flex-direction: column;
    */
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .photoframe {
    border:#080B00;
      border-width: 3px;
      border-style: solid;
      border-radius: 10px;
    padding: 10px 10px 10px 10px;
    margin-top: 20px;
    margin-left: 0px;
    margin-right: 0px;
    background-color: #E9E430;
    /* box-shadow: 5px 5px 10px #080B00; */
  }
}

/*
  BLUE   #000081
  RED    #C20F0B
  YELLOW #E9E430
  GRAY   #9FA0A2
  BLACK  #080B00
*/