/* General styles */
body {
  margin: 0;
  /* Apply modern sans-serif font matching the rebranding direction */
  font-family: 'Poppins', Arial, sans-serif;
  /* Use a very light beige background inspired by the new brand palette */
  background-color: #f9f9f4;
  color: #333;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  /* Dark green header inspired by the new Elwet brand colors */
  background-color: #006b56;
  color: #fff;
}

header h1 {
  margin: 0;
  font-size: 1.5em;
}

.nav-links {
  display: flex;
  gap: 15px;
}

/* Navigation links with subtle hover effect */
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #e0f2e5;
}

.lang-select {
  margin-left: auto;
}

/* Language selector buttons styled to match new color palette */
.lang-select button {
  margin-left: 8px;
  padding: 5px 10px;
  border: none;
  background-color: #008066;
  color: #fff;
  cursor: pointer;
  border-radius: 3px;
  font-size: 0.9em;
}

.lang-select button:hover {
  background-color: #006652;
}

section {
  padding: 20px;
}

/* Hero section with light green-beige background from brand manual */
.hero {
  background-color: #eef6f1;
  padding: 40px 20px;
  text-align: center;
}

.hero h1 {
  margin-top: 0;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}

.card {
  border: 1px solid #ccc;
  border-radius: 5px;
  flex: 1 1 calc(33% - 20px);
  padding: 15px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  background-color: #fff;
}

.card h3 {
  margin-top: 0;
}

.card p {
  margin: 10px 0;
  line-height: 1.4;
}

/* Buttons in cards styled to match new brand color */
.card a {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background-color: #008066;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  transition: background-color 0.2s;
}

.card a:hover {
  background-color: #006652;
}

/* Booking section with subtle background tint */
.booking-section {
  background-color: #f2f8f5;
  padding: 30px 20px;
  border-top: 1px solid #d6e7df;
}

.booking-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
}

.booking-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

/* Submit button for booking form matching brand colors */
.booking-form button {
  padding: 10px 20px;
  background-color: #008066;
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 0.2s;
}

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

.store-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.store-table th,
.store-table td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: left;
}

/* Table header in store page */
.store-table th {
  background-color: #eef6f1;
}

.cart {
  margin-top: 20px;
}

.cart table {
  width: 100%;
  border-collapse: collapse;
}

.cart th,
.cart td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: left;
}

/* Cart table header */
.cart th {
  background-color: #eef6f1;
}

.total {
  font-weight: bold;
  text-align: right;
  margin-top: 10px;
}

footer {
  background-color: #006b56;
  color: #fff;
  padding: 15px;
  text-align: center;
}