@charset "UTF-8";
/* CSS Document */

/* Locations Page */

.locHero {
    width: 100%;
    background-color: darkgray;
    min-height: 600px;
    background-image: url("../images/locations/locHero.jpg");
    postion: relative;
    background-size: cover;
    background-position: center;
    top: 0px;
}
.locHero div{
    width: 50%;
    position: relative;
    top: 150px;
    margin-left: 25%;
    margin-right: 25%;
    background-color: rgba(230,41,48, 0.75);
    padding: 4em;
    border-radius: 1em;
    font-family: "germania one";
    font-size: 1em;
}
.locationSection {
    display: flex;
    justify-content: space-around;
    margin: 25px 20%;
}
.locationSection>div>img {
    width: 100%;
    border-radius: 10px;
}
.locationDetails {
    margin: 20px;
    margin-left: 20px;

}

.locationButtonsList{
  display: flex;
  justify-content: space-around;
  margin: 20px auto;
  width: 80%;
  border-radius: 10px;
  background-color: #222222;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
  padding: 2rem 0rem;
  gap: 1em;
}
.locationButtonsList a {
  width: 30%;
  min-width: 250px;

}
.locationButtonsList Button {
  background-color: rgba(230,41,48, 1);
  width: 100%;
  text-align: center;
  padding: 1rem;
  font-size: 2rem;
  border-radius: 25px;
  cursor: pointer;
}
@media (max-width: 980px) {
.locHero {
    min-height: 300px;
}
.locHero div{
    width: 80%;
    top: 75px;
    margin-left: 10%;
    margin-right: 10%;
    padding: 1em;
    min-height: 200px;
}
.locationButtonsList{
  flex-wrap: wrap;
}
.locationButtonsList Button {
  font-size: 1.5rem;
}
.locationSection {
  flex-wrap: wrap;
}
.locationDetails p, .locationDetails h2 {
    text-align: center;
}
}