@charset "UTF-8";
/* Expeditions Adventure Travel Stylesheet */

@import url('https://fonts.googleapis.com/css?family=Boogaloo|Nothing+You+Could+Do');

body {
  background-color: #F2E4C1;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

#wrapper, .wrapper {
  width: 960px;
  margin: 0 auto;
  background-color: #fff;
}


header {
  text-align: center;
  margin-top: 20px;
}

/* NAVIGATION BAR */
nav {
  background-color: #68A28F;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  margin-top: 10px;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  gap: 60px;
}

.nav-list a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

.nav-list a:hover {
  color: #F2E4C1;
}

/* MAIN CONTENT */
main {
  padding: 20px 40px;
  text-align: left;
}

/* HEADINGS */
h1, h2, h3 {
  font-family: 'Boogaloo', cursive;
  color: #604c39;
  margin-bottom: 10px;
}

h1 {
  font-size: 36px;
  text-transform: uppercase;
  margin-top: 10px;
}

h2 {
  font-size: 30px;
  color: #E0412E;
}

h3 {
  font-size: 24px;
  color: #68A28F;
}

/* PARAGRAPHS */
p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* BUTTON (for home page) */
.button {
  display: inline-block;
  float: right;
  background-color: #E0412E;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 6px;
  box-shadow: 3px 3px 8px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.button:hover {
  background-color: #C0392B;
  transform: translateY(-2px);
  box-shadow: 5px 5px 10px rgba(0,0,0,0.4);
}

/* TABLES (for Book a Trip page) */
table {
  border-collapse: collapse;
  border: 1px solid #ccc;
  width: 100%;
  margin-top: 10px;
}

th {
  background-color: #68A28F;
  color: #fff;
  font-weight: bold;
  text-transform: capitalize;
  text-align: center;
  font-size: 16px;
}

th, td {
  padding: 10px 20px;
  border: 1px solid #ccc;
  text-align: center;
}

/* FLEX CONTAINERS (for Book a Trip destinations) */
.flex-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.flex-container img {
  border-radius: 8px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

/* FOOTER */
footer {
  text-align: center;
  font-size: 10px;
  padding: 20px;
  color: #333;
}

/* SIGNATURE FONT (About page) */
.signature {
  font-family: 'Nothing You Could Do', cursive;
  font-size: 32px;
  color: #000;
}