@charset "UTF-8";
/* CSS Document for Expeditions Adventure Travel */

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

/* Body styling */
body {
  background-color: #F2E4C1;
  font-family: Arial, Helvetica, sans-serif;
  position: relative; /* Needed for absolute positioning of button */
  margin: 0;
  padding: 0;
}

/* Header section */
header {
  text-align: center;
  margin-bottom: 20px;
}

/* Wrapper */
.wrapper {
  width: 960px;
  margin: 0 auto;
  text-align: center;
  background-color: #fff;
  padding: 20px;
}

/* Navigation styling */
nav {
  background-color: #68A28F;
  margin: 12px 0;
  text-align: center;
}

nav ul {
  margin: 0;
  padding: 10px 0;
}

nav li {
  display: inline-block;
  padding: 0 20px;
}

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

nav a:hover {
  color: #F2E4C1;
}

/* Main content */
main {
  padding: 20px 30px;
  text-align: left;
}

/* Headings */
h1, h2, h3 {
  font-family: 'Boogaloo', cursive;
  margin-top: 0;
}

h1 {
  color: #604c39;
  font-size: 36px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

h2 {
  color: #e0412e;
  font-size: 30px;
  margin-bottom: 10px;
}

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

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

/* Button styling */
button {
  position: absolute;
  right: 30px;
  top: 30px;
  padding: 10px 20px;
  background-color: #e0412e;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}

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

/* Footer */
footer {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  padding: 20px;
  color: #604c39;
}

/* Tables */
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 20px;
}

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;
}

td {
  font-size: 14px;
}

table tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* Lists */
ul {
  list-style-position: inside;
  margin-left: 20px;
}

li {
  margin-bottom: 12px;
}

/* Image alignment */
.alignleft, .float-left {
  float: left;
  margin-right: 20px;
}

.alignright, .float-right {
  float: right;
  margin-left: 20px;
}

/* Clear floats */
#clear {
  clear: both;
}

/* Flex container for trip columns */
.flex-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

/* Column inside flex container */
.column {
  flex: 1;
  min-width: 250px;
  text-align: left;
}

/* Signature style */
.signature {
  font-family: 'Nothing You Could Do', cursive;
  font-size: 32px;
}

