* {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #164a49;
}

.menu {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.menu a {
  font-family: "Indie Flower", cursive;
  font-weight: 400;
  color: #afdbd5;
  font-size: 20px;
  text-decoration: none;
}

.menu a:hover {
  color: #ffffff;
  transition: 0.1s;
  
}

body {
  background-color: #ebf0e9;
}

.hover-underline {
  color: #ffffff;
  position: relative;
  display: inline-block;
}

.hover-underline::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #79c4bc, #ebf0e9);
  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-out;
  will-change: transform; 
}

.hover-underline:hover::after {
  transform: scaleX(1);
}

footer {
  background-color: #5a3e2b;
  color: #f1efe4;
  text-align: center;
  padding: 10px;
  margin-top: 20px;
}

.logo {
  text-align: center;
  color: #79c4bc;
  font-family: "Indie Flower", cursive;
  font-weight: 700;
  text-decoration: none;
  font-size: 38px;
}

h2 {
  text-align: center;
  color: #afdbd5;
  font-family: "Indie Flower", cursive;
  font-weight: 400;
}

h3 {
  text-align: center;
  margin-bottom: 15px;
}

h4 {
  text-align: center;
  color: #f1efe4;
  font-family: "Indie Flower", cursive;
  font-weight: 400;
}

p {
  margin-top: 0;
  padding: 8px 20px;
}

.homepage-photo {
  max-width: 50%;
  max-height: 50%;
  border: #163e4a 10px;
  border-radius: 50%;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

.web-info {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
}

.trip-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.intro-photo {
  max-width: 50%;
  border: #163e4a 10px;
  border-radius: 12px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

.trip-card {
  background: #ffffff;
  color: #163e4a;
  border-radius: 12px;
  padding: 20px;
  margin: 20px auto;
  max-width: 700px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

.trip-card ul {
  list-style: none;
  padding: 0;
}

.trip-card li {
  margin: 12px;
}

.trip-card .fa-solid {
  margin-right: 5px;
}

a.button-more {
  display: inline-block;
  padding: 10px 20px;
  margin: 20px;
  background-color: #79c4bc;
  color: #164a49;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: 0.5s;
}
a.button-more:hover {
  background-color: #164a49;
  color: #ffffff;
}

a.button-map {
  display: inline-block;
  padding: 8px 13px;
  margin: 10px;
  background-color: #a0e3dc;
  color: #164a49;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.5s;
}
a.button-map:hover {
  background-color: #164a49;
  color: #ffffff;
}
