:root {
  --main-color-1: rgba(11,100,90,1);
  --main-color-2: #ffc56e;
  --grayscale-1: rgba(255,255,255,1);
  --grayscale-2: rgba(21,21,21,1);
}

@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/OpenSans.ttf') format('truetype');
}

@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/PlayfairDisplay.ttf') format('truetype');
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  background-color: var(--main-color-1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-text {
  color: white;
  font-size: 21px;
  padding: 15px;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.nav-icon {
  padding: 6px;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: var(--grayscale-2);
}
.container {
  width: 80%;
  margin: auto;
  overflow: hidden;
  padding: 20px;
}
header {
  background: var(--main-color-1);
  color: var(--grayscale-1);
  padding: 20px;
  text-align: center;
  border-bottom: 4px solid var(--main-color-2);
  padding-top: 66px;
}
h1 {
  margin: 0;
}
.location-list {
  background: var(--grayscale-1);
  padding: 20px;
  margin-top: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.location-list ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
.location-list li {
  padding: 10px;
  background: #f9f9f9;
  border-radius: 4px;
  border-left: 3px solid var(--main-color-2);
  transition: background-color 0.3s;
}
.location-list li:hover {
  background-color: #e8e8e8;
  cursor: pointer;
}
.nav-links {
  margin-top: 20px;
  text-align: center;
}
.nav-links a {
  display: inline-block;
  text-decoration: none;
  padding: 10px 15px;
  background: var(--main-color-1);
  color: var(--grayscale-1);
  border-radius: 5px;
  transition: background-color 0.3s;
}
.nav-links a:hover {
  background: var(--main-color-2);
  color: var(--grayscale-2);
}

.link {
  display: inline-block;
  text-decoration: none;
  padding: 10px 15px;
  background: var(--main-color-1);
  color: var(--grayscale-1);
  border-radius: 5px;
  transition: background-color 0.3s;
}

footer {
  background: var(--main-color-1);
  color: var(--grayscale-1);
}

.nav-icon {
  padding: 6px;
}

.invisible {
  opacity: 0;
}
