@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
  --primary: #50c3b8;
  --white: #fff;
  --text: #000;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

a {
  text-decoration: none;
}

select {
  outline: none;
  border: 0;
}

select option {
  color: var(--text);
}

header {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 10px;
}

header h1 {
  font-weight: 300;
  font-size: 22px;
  margin: 10px 0;
}

header select {
  background: transparent;
  color: var(--white);
  text-transform: uppercase;
  font-weight: lighter;
}

.home-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  text-align: center;
}

a.grid-cell {
  min-height: 200px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.grid-cell-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: var(--white);
  background: rgba(0,0,0,.6);
  padding: 15px 0;
  font-weight: lighter;
}

footer {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 50px 10px;
  margin-top: -5px;
}

footer .contacts {
  font-weight: 300;
  line-height: 25px;
}

footer .contacts a {
  color: var(--white);
}

footer .contacts a:hover {
  text-decoration: underline;
}

.social-links {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.social-links i {
  color: var(--white);
  font-size: 20px;
}

.page-hero {
  height: 500px;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.page-hero::after {
  content: '';
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  position: absolute;
}

.page-hero-title {
  color: var(--white);
  font-size: 35px;
  position: relative;
  z-index: 99;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 20px;
}

.event-item {
  padding: 20px 30px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
}

.event-item img {
  width: 100%;
  object-fit: cover;
}

.event-title {
  font-size: 25px;
  font-weight: bold;
  margin: 15px 0;
}

.event-dates {
  font-style: italic;
  margin-bottom: 10px;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  text-align: center;
  padding: 50px 20px;
  gap: 40px;
}

.menu-list a img {
  width: 85px;
}

.menu-list a span {
  display: block;
  margin-top: 20px;
  color: var(--text);
}

.menu-list a:hover span {
  color: var(--primary);
}

.weather-iframe-wrapper, .page-content-wrapper {
  padding: 60px 30px;
}

.hotel-info {
  margin-bottom: 25px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 25px;
}

.hotel-info-title {
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 25px;
  font-style: italic;
}

.hotel-info-text {
  font-size: 18px;
}

@media screen and (min-width: 1023px) {
  a.grid-cell {
    min-height: 500px;
  }

  .events-list {
    display: grid;
    flex-direction: unset;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 50px 0;
  }

  .menu-list {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }
}