* {
  box-sizing: border-box;
}

.main-info {
  font-family: Helvetica, sans-serif;
  font-size: 22px;
  color: seashell;
  background-color: black;
  opacity: 0.9;
  text-align: center;
}

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

.header-section {
  background-color: black;
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  margin: 0;
  width: 100%;
  height: 69px;
  padding: 0 10px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid seashell;
  z-index: 1;
}

.logo {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
}

.menu-items {
  display: flex;
  align-items: center;
}

.menu-items nav ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-items nav ul li {
  text-decoration: underline;
  margin-left: 20px;
}

.menu-items nav ul li a {
  transition: all 0.9s ease;
  text-decoration: none;
  color: seashell;
}

.menu-items nav ul li a:hover {
  color: greenyellow;
}

.top-photo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  margin-top: 0;
  min-height: 700px;
}

.top-photo img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
}

.top-photo .text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  width: 100%;
  max-width: 1200px;
  text-align: center;
}

.top-photo .text-overlay h2, .top-photo .text-overlay h4 {
  margin: 10px 0;
  font-weight: 1000;
  letter-spacing: 1px;
}

.middle-section {
  padding-top: 50px;
}

.middle-section-photo-gallery {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
}

.middle-section-photo-gallery-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
  gap: 15x;
}

.middle-section-photo-gallery-bottom .photo-item {
  flex: 0 0 300px;
  max-width: 300px;
}

.photo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 300px;
  max-width: 300px;
}

.photo-item img {
  width: 300px;
  height: 266px;
}

.photo-item p {
  margin-top: 10px;
  text-align: center;
}

.middle-section-photo-gallery-bottom .photo-item {
  margin: 0 25px;
}

.middle-section-photo-gallery-bottom .photo-item:first-child {
  margin-left: 0;
}

.middle-section-photo-gallery-bottom .photo-item:last-child {
  margin-right: 0;
}

.bottom-photo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  margin-top: 0;
  min-height: 700px;
}

.bottom-photo img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
}

.location-header {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  max-width: 1200px;
}

.location-header h2 {
  margin: 0;
  color: seashell;
}

.three-locations {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background-color: transparent;
}

.east-bayside-wrapper {
  position: relative;
}

.location-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 20px;
  margin: 0;
  color: seashell;
}

.location-item p {
    font-size: 20px;
}

.very-bottom {
  display: flex;
  height: 200px;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  min-height: 100px;
}

.very-bottom h2 {
  margin-bottom: 10px;
  margin-top: 50px;
}

.very-bottom h5 {
  margin-bottom: 20px;
}

.very-bottom p {
  margin-bottom: 40px;
}

footer {
  text-align: left;
  padding-left: 20px;
}