/* General Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #F5F5F5;
  color: #37474F;
}

.header{
  height: 50px;
  width: 100%;
  /* border: 2px black solid; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 25px;
  font-weight: 700;
  color: 37474f;
  font-family: Arial, sans-serif;
  background-color: #2e8b57;
  color: white;
  padding: 20px 0;
  text-align: center;
  
}
a {
  text-decoration: none;
  color: white;
}
a:hover {
  text-decoration: underline; 
  color: white;
}



.links{
  display: flex;
  align-items: center;
  /* margin-left: 360px; */
  justify-content: space-evenly;
  width: 70%;
  text-decoration: none;
  
}
.logo{
  font-size: 75px;
  margin-left: 10px;
}
.others{
  display: flex;
  align-items: center;
  margin-right: 30px;
  /* justify-content: space-between; */
}

.spots-container {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.spots-container .he {
font-size: 60px;
}

.spots-container h2 {
  font-size: 2rem;
  color: #4CAF50;
  margin-bottom: 1rem;
  text-align: center;
}

.search-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.search-bar input {
  padding: 0.5rem;
  height: 20px;
  width: 600px;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
}

.search-bar button {
  padding: 0.5rem 1rem;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.search-bar button:hover {
  background-color: #388E3C;
}

.spots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.spot-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: center;
}

.spot-card img {
  width: 100%;
  border-radius: 8px;
}

.spot-card h3 {
  color: #4CAF50;
  margin-top: 0.5rem;
  font-size: 25px;
}

.spot-card p {
  font-size: 0.9rem;
  margin: 0.5rem 0;
  font-weight: 700;
  font-size: 18px;
}

.spot-card p:nth-child(4) {
  color:green /* Star rating color */
  /* font-size: 1rem; */
}


footer {
  background-color: #4CAF50;
  color: #ffffff;
  /* padding: 20px 0; */
  font-family: Arial, sans-serif;
  width: 100%;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  padding: 20px;
  flex-wrap: wrap;
  text-align: left;
}

.footer-section {
  flex: 1;
  margin: 10px;
  min-width: 200px;
}

.footer-section h3 {
  font-size: 25px;
  margin-bottom: 10px;
}

.footer-section p {
  font-size: 18px;
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  padding: 10px 0;
  border-top: 1px solid #555;
  font-size: 14px;
  color: #b0bec5;
}

.footer-section.inspiration p {
  font-style: italic;
  color: #cfd8dc;
}