* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Georgia", serif;
  margin: 0;
  padding: 0;
  color: #4b2e2e;
  background-color: #faf0e6;
  line-height: 1.8;
}

a {
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #8b4513;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #8b4513;
  color: #fff8dc;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.title {
  font-size: 28.8px;
  font-weight: bold;
  color: #fff8dc;
}

.navlinks {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navlinks li {
  display: inline;
}

.navlinks a {
  font-weight: 600;
  color: #fff8dc;
}

.navlinks a:hover {
  color: #ffd700;
}

.intro {
  background: linear-gradient(rgba(139, 69, 19, 0.8), rgba(210, 180, 140, 0.3)),
    url("Images/intro.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff8dc;
  text-align: center;
  padding: 120px 20px;
}

.intro-content h1 {
  font-size: 3em;
  margin-bottom: 10px;
  font-family: "Merriweather", serif;
}

.intro-content p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.search-bar {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.search-bar input {
  padding: 12px;
  font-size: 1em;
  border: 2px solid #4b2e2e;
  border-radius: 50px 0 0 50px;
  width: 300px;
  outline: none;
  background-color: #fff8dc;
  color: #4b2e2e;
}

.search-bar button {
  padding: 12px 25px;
  font-size: 1em;
  background-color: #4682b4;
  color: #fff8dc;
  border: none;
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.search-bar button:hover {
  background-color: #1a466c;
  transform: scale(1.05);
}

.feat-reviews {
  padding: 60px 20px;
  text-align: center;
  background-color: #faf0e6;
}

.feat-reviews h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #4b2e2e;
}

.review-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.reviews {
  background: #fff8dc;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #8b4513;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  max-width: 280px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: left;
}

.reviews:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.reviews h3 {
  margin-top: 10px;
  font-size: 1.5em;
  color: #8b4513;
}

.reviews p {
  margin: 10px 0;
  color: #4b2e2e;
}

.reviews a {
  font-weight: bold;
  color: #117b5d;
}

.reviews a:hover {
  color: #803a05;
}

footer {
  background-color: #4b2e2e;
  color: #fff8dc;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

footer p {
  margin: 0;
  font-size: 14.4px;
}

.footer-outline a {
  color: #ffd54f;
  text-decoration: none;
  margin: 0 5px;
  transition: color 0.3s;
}

.footer-outline a:hover {
  color: #ffc107;
  text-decoration: underline;
}
