@import url("https://fonts.googleapis.com/css2?family=Arya:wght@400;700&display=swap");
@import url('nav.css');
@import url("footer.css");
@import url("chat.css");
p,h1, a{
  font-family: "Arya", sans-serif;
  font-weight: 400;
  font-style: normal;
}
body {
    background-image: url('Short\ bg.png');
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: 100% auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
html, body{
    margin: 0;
    padding:0;
    box-sizing: border-box;
}
#topSection{
  height: 11vw;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2vw;
}
#topLogo{
  height: 6vw;
  margin-top: 4vw;
}
#directoryText{
  text-align: center;
  line-height: 10vw;
  letter-spacing: 2.8vw;
  margin-top: 4vw;
  font-size: 2.1vw;
}
.eventsGrid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 4vw);
    width: 70%;
    row-gap: 25vw;
    column-gap: 5vw;
    height: 80vw;
    margin:auto;
    margin-right: 3vw;
    margin-top: 3vw;
}
.eventContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.event{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25vw;
  border-radius: 10%;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.7);
  width: 20vw;
}
.eventTitle {
    font-size: 2vw;
    text-align: center;
    letter-spacing: 0.3vw;
    line-height: 1.8vw;
  }
.eventImg{
    display: flex;
    height: auto;
    width: 17vw;
    border-radius: 1vw;
    align-items: center;
}
  .eventText {
    font-size: 1vw;
    width: 16vw;
    text-align: center;
    margin-top: 0.8vw;
    line-height: 1.4vw;
  }
#filter{
  display: none;
}
#mainContent{
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex: 1 0 auto;
    gap: 5vw;
}
#selectionSection{
  margin-top: 5vw;
}
.options{
    margin-left: 8vw;
    margin-bottom: 4vw;
}
.selectionButton{
    background-color: transparent;
    border: transparent;
    color: rgb(0, 0, 0);
    letter-spacing: 0.3vw;
    font-size: 2vw;
    text-decoration: none;
    
}
.selectionButton:hover{
    text-shadow: 0 0 1vw #2B85A7;
}
@media (max-width: 768px) {
    body {
      background-image: url("superduperlong bg.png");
      background-color: #011022;
    }
    #topSection{
      height: 18vw;
    }
    #directoryText{
        font-size: 4vw;
        letter-spacing: 4vw;
        margin-top: 6vw;
    }
    #topLogo{
        height: 8vw;
    }
    .eventsGrid {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(6, auto);
        margin: 0;
        row-gap: 0;
        column-gap: 0;
        width: 100%;
        align-items: center;
        justify-content: center;
    }
    .event{
        width: 75vw;
        height: 90vw;
        margin: auto;
        margin-bottom: 8vw;
        padding: 7vw 2vw;
        border-radius: 12vw;
    }
    .eventsGrid .event:first-child{
      margin-top: 5vw;
    }
    .eventImg{
        width: 90%;
    }
    .eventText{
        width: 90%;
        font-size: 5vw;
        line-height: 5vw;
    }
    .eventTitle{
        font-size: 10vw;
        line-height: 10vw;
    }
    .selectionButton{
        font-size: 3vw !important;
    }
    #selectionSection{
      display: none;
    }
    #filter {
    display: block;
    margin: auto;
    margin-top: 5vw;
    }
    #filterDropdown{
      width: 40vw;
      font-size: 3.5vw;
      padding: 2vw;
      border-radius: 10vw;
      box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
      border: none;
      background-color: white;
      opacity: 0.8;
    }
    #footerSection{
      margin-top: 600vw;
    }
}

