@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

html {
  font-size: 62.5%;
}
body {
  font: 1.6rem "Open Sans", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #6d0707;
  color: #2b59c3;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
img {
  display: inline-block;
  object-fit: cover;
}
/* icones */

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.6rem;
  background-color: #043433;
  color: #ffffff;
}
header h1 {
  text-shadow: 0.1rem 0.1rem 0 #222, -0.1rem -0.1rem 0 #222,
    0.1rem -0.1rem 0 #222, -0.1rem 0.1rem 0 #222;
}

header .logo {
  font-family: "Playfair Display", serif;
  font-size: inherit;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}

.voyage {
  border-top: solid 0.1rem #fafafa;
  text-align: center;
  padding: 5rem;
  background: linear-gradient(
      to top,
      rgba(22, 21, 21, 0.5) 50%,
      rgba(22, 21, 21, 0.5) 50%
    ),
    url(../asset/tobkal.png) no-repeat fixed center center / cover;
  color: #ffffff;
}

.voyage h2 {
  font-family: "Playfair Display", serif;
  font-size: 3em;
  text-shadow: 0.1rem 0.1rem 0 #222, -0.1rem -0.1rem 0 #222,
    0.1rem -0.1rem 0 #222, -0.1rem 0.1rem 0 #222,
    0 0 2rem #fff;
}
.voyage p {
  font-family: "Open Sans", sans-serif;
  font-size: 1.5em;
}

.voyage .cta {
  margin-top: 2rem;
  padding: 1rem 2rem;
  background-color: #6d0707;
  border: none;
  color: #ffffff;
  font-size: inherit;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border-radius: 0.4rem;
  width: max-content;
  text-transform: uppercase;
}

.voyage .cta:hover {
  background-color: #226644;
}
.features {
  display: flex;
  justify-content: space-around;
  margin: 5rem 2rem;
}

.feature {
  text-align: center;
  justify-content: space-between;
  color: #ffffff;
  padding: 1rem;
  background-color: #fafafa;
  border-radius: 0.4rem;
  color: #222;
  overflow: hidden;
}
.feature h3{
    font-weight: 400;
}

footer {
  border-top: 0.1rem solid #fafafa;
  text-align: center;
  padding: 2rem;
  background-color: #043433;
  color: #ffffff;
}
footer ul li {
  display: inline-block;
  padding-right: 1rem;
}
footer ul li a {
  text-decoration: none;
  color: #f1effa;
}
footer ul li:nth-child(2) {
  margin: 0 1rem;
}

.feature img {
  filter: grayscale(75%);
  transition: all 0.3s ease-in-out;
}
footer p {
  width: max-content;
  margin: 0 auto;
}
.feature:hover img {
  transform: scale(1.1);
  filter: grayscale(0%);
  cursor: pointer;
}
