/* Ensures footer is always at the bottom of the page */
html, body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Reset and global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #e3f5ff;
}

/* Wrapper for full background color */
.main-content {
  background-color: #d7f1f9;
}

/* Header with logo and navigation */
header {
  background-color: #00334d;
  color: white;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 80px;
  margin-right: 20px;
}

nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 5px 0;
}

nav a:hover,
nav a.active {
  color: #6aaedc;
}

/* Language Buttons Container */
.language-buttons {
  display: flex;
  gap: 10px;
}

/* Individual Button Styling */
.language-buttons button {
  background-color: #6aaedc;
  border: none;
  padding: 10px 20px;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.language-buttons button:hover {
  background-color: #5ca0c9;
}

/* Hero Section */
.hero {
  background-color: transparent;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 2px 2px 6px black;
  text-align: center;
}

.hero h1 {
  font-size: 3.5em;
  padding: 0 20px;
}

/* Trip Section */
.trip-section {
  background-color: transparent;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 60px 20px;
}

.trip-card {
  background-color: #06314e;
  color: white;
  padding: 30px 20px;
  width: 280px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.trip-card h3 {
  margin-bottom: 15px;
  font-size: 1.4em;
  letter-spacing: 1px;
}

.trip-card p {
  margin-bottom: 20px;
  font-size: 1em;
  line-height: 1.6;
}

.trip-card button {
  background-color: #6aaedc;
  border: none;
  padding: 10px 20px;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.trip-card button:hover {
  background-color: #5ca0c9;
  color: #b3e5ff;
}

/* Footer */
footer {
  background: #00334d;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: auto;
}

/* About Page Specific */
.about-page {
  background-color: #e3f5ff;
  padding: 40px 20px;
}

.about-section {
  text-align: center;
  margin: 50px 20px;
}

.about-section h2 {
  font-size: 2.5em;
  color: #00334d;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.about-section p {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
  max-width: 800px;
  margin: 0 auto 30px;
  padding: 0 10px;
}

/* Images Section */
.about-images {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.about-images img {
  max-width: 100%;
  width: 200px;
  height: 250px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Scrollable section, e.g., for images in About or Gallery */
.scrollable-section {
  overflow-x: auto;
  display: flex;
  gap: 20px;
  padding: 20px;
  scroll-snap-type: x mandatory;
}

.scrollable-section img {
  width: 250px;
  object-fit: contain;
  border-radius: 8px;
  scroll-snap-align: start;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
