:root {
    --primary-color: #007bff; /* Primary color for header */
    --secondary-color: #6c757d; /* Secondary color for footer */
    --text-color: #212529; /* Typical text color */
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
}

header {
    background-color: var(--primary-color);
    color: white;
}

.header-container {
    display: grid;
    grid-template-columns: auto 1fr auto; /* Adjust columns as needed */
    align-items: center;
    padding: 1rem;
}

#logo {
    max-width: 100px; /* Logo size */
}

h1 {
    text-align: center;
    font-size: 2rem; /* Increased font size for visibility */
}

nav {
    display: flex; /* Use flexbox for horizontal navigation */
}

nav ul {
    display: flex; /* Flex container for nav items */
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin-left: 20px; /* Space between nav items */
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem; /* Adjust font size */
}

.hero {
    position: relative; /* Establishes a positioning context for children */
}

.hero-image {
    width: 100%; /* Ensures the image fills the container */
    height: auto; /* Keeps aspect ratio */
}

.hero-overlay {
    position: absolute; /* Absolutely position in relation to the .hero div */
    top: 50%; /* Move down to the center */
    left: 50%; /* Move in from left to center */
    transform: translate(-50%, -50%); /* Adjust positioning to center exactly */
    color: white; /* Text color (adjust as needed) */
    text-align: center; /* Center the text */
    background-color: rgba(0, 0, 0, 0.5); /* Optional: dark background with transparency for better readability */
    padding: 20px; /* Padding for text container */
    border-radius: 10px; /* Optional: rounded corners */
}

.content {
    padding: 20px;
}

.intro {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Aligns items to the start of the flex container */
    margin-bottom: 20px;
}

.client-image {
    width: 120px; /* Adjust client image size */
    height: auto; /* Keep aspect ratio */
    border-radius: 50%; /* Circular image */
    margin-right: 15px;
}

.history {
    margin: 20px 0; /* Uniform margin for separation */
}

.adventure {
    margin-bottom: 20px;
}

.adventure-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Five images in a row */
    gap: 10px; /* Space between images */
}

.adventure-gallery figure {
    margin: 0; /* Reset margin */
}

.adventure-gallery img {
    width: 100%; /* Full width of grid cell */
    height: auto; /* Keep aspect ratio */
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: var(--secondary-color);
    color: white;
}

.sociallinks {
    display: flex;
    justify-content: center; /* Center social links */
}

.sociallinks a {
    margin: 0 10px; /* Space between social icons */
}

.sociallinks img {
    width: 30px; /* Adjust size of social icons */
    height: auto;
}

.sociallinks a:hover {
    opacity: 0.7; /* Hover effect */
}

.contact-info, .map, .employee-profiles, .contact-form {
    margin: 20px;
    padding: 20px;
    border: 1px solid #ccc; /* Optional for visual separation */
    border-radius: 10px;
    background-color: #f9f9f9; /* Light background for sections */
}

.employee {
    display: inline-block;
    margin: 10px;
    text-align: center;
}

.employee-image {
    width: 100px; /* Set an appropriate size for images */
    height: auto;
}

.contact-form label {
    display: block;
    margin: 10px 0 5px;
}

.contact-form input,
.contact-form textarea {
    width: calc(100% - 20px); /* Full width with some padding */
    padding: 10px;
}

.contact-form button {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #007BFF; /* Button background color */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #0056b3; /* Darker on hover */
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero {
    position: relative;
}

.hero-image {
    width: 100%; /* Full width of container */
    height: auto;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.newsletter {
    text-align: center;
    margin: 2em 0;
}

.trip-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px;
}

.trip {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
}

.equipment {
    margin: 20px;
    padding: 20px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
}