/* Global styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #2a2a2a;
  line-height: 1.6;
  background-color: #f9f9f9;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* Header & Navigation */
header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
}

header .logo {
  display: flex;
  align-items: center;
}

header .logo img {
  height: 60px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 600;
}

nav a {
  color: #fff;
  transition: color 0.2s ease;
}

nav span {
  color: #fff;
  font-weight: 600;
  margin-left: 5px;
  cursor: pointer;
  user-select: none;
}

nav a:hover {
  color: #d1e5f5;
}

.lang-toggle {
  cursor: pointer;
}

/* Hero section */
.hero {
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 61, 96, 0.55);
}

.hero .content {
  position: relative;
  text-align: center;
  max-width: 900px;
  padding: 40px;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

/* Booking form */
.booking-form {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 20px 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  color: #004a73;
  max-width: 850px;
  margin: 0 auto;
}

.booking-form label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccd7e0;
  border-radius: 5px;
  font-size: 14px;
}

.booking-form button {
  grid-column: span 4;
  padding: 12px;
  border: none;
  border-radius: 5px;
  background-color: #004a73;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.booking-form button:hover {
  background-color: #006ba1;
}

/* Features section */
.features {
  padding: 60px 40px;
  background: #fff;
}

.features h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: #004a73;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-item {
  text-align: center;
  padding: 20px;
}

.feature-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.feature-item h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #004a73;
}

.feature-item p {
  font-size: 16px;
  color: #555;
}

/* Gallery section */
.gallery {
  padding: 60px 40px;
  background: #f5f7fa;
}

.gallery h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: #004a73;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Activities section */
.activities {
  padding: 60px 40px;
  background: #fff;
}

.activities h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 30px;
  color: #004a73;
}

.activities p {
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 18px;
  color: #555;
}

/* Footer */
footer {
  background: #004a73;
  color: #fff;
  padding: 20px 40px;
  text-align: center;
}

/* Language toggle styles */
.hidden {
  display: none;
}