/* General Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #E6F0F8; /* Background color */
  color: #264653; /* Text color */
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* Navbar */
.navbar {
  background-color: #2A9D8F; /* Navbar background color */
  color: white;
  padding: 15px 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  display: flex; /* Flex display */
  justify-content: space-between; /* Space between items */
  align-items: center; /* Center items vertically */
  position: relative;
  transition: background-color 0.4s ease;
}

.navbar:hover {
  background-color: #21867A; /* Hover color */
}

.logo-container {
  display: flex; /* Flex display for logo */
  align-items: center; /* Center logo vertically */
  position: absolute;
  top: 10px;
  left: 20px;
  z-index: 2;
  transition: transform 0.3s ease;
}

.logo-container:hover {
  transform: scale(1.05); /* Scale effect on hover */
}

.logo-container img {
  height: 60px; /* Logo height */
  width: 60px; /* Logo width */
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.logo-container img:hover {
  transform: rotate(10deg); /* Rotate effect on hover */
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px; /* Logo text size */
  font-weight: 700;
  color: #1B4332; /* Logo text color */
  letter-spacing: 1.2px;
  user-select: none;
  text-shadow: 0 1px 2px rgba(255,255,255,0.6);
}

/* Language Select Button */
#langSelect {
  padding: 7px 12px;
  border: none;
  border-radius: 5px;
  background-color: #56CFE1; /* Language button color */
  color: #0A374D; /* Language button text color */
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 2;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(86,207,225,0.5);
}

#langSelect:hover {
  background-color: #4AB3C6; /* Hover color for language button */
  transform: scale(1.1);
}

/* Navbar Links */
.nav-links {
  list-style: none;
  display: flex; /* Flex display for links */
  gap: 20px; /* Space between links */
  padding: 0;
  margin: 0;
}

.nav-links li a {
  color: #1B4332; /* Link color */
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease, transform 0.2s ease;
  user-select: none;
}

.nav-links li a:hover {
  color: #56CFE1; /* Hover color for links */
  transform: scale(1.1);
}

/* Section Styles */
.section {
  background-color: #f0fafc; /* Section background color */
  color: #1b4332; /* Section text color */
  padding: 40px 20px;
  border-radius: 10px;
  margin: 40px auto;
  max-width: 900px;
  box-shadow: 0 8px 16px rgba(11, 65, 83, 0.1);
  font-size: 18px;
  line-height: 1.7;
  transition: box-shadow 0.3s ease;
}

.section h1, .section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #2a9d8f; /* Section heading color */
  text-align: center;
}

.section p {
  white-space: pre-line;
  text-align: justify;
  letter-spacing: 0.5px;
}

/* Content Images */
.content img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Footer */
.footer {
  background-color: #2A9D8F; /* Footer bg color */
  color: #E0FBFC;          /* Footer text color */
  padding: 40px 20px;
  text-align: center;
  user-select: none;
  transition: background-color 0.3s ease;
}

.footer:hover {
  background-color: #21867A; /* Footer hover bg color */
}

/* Responsive */
@media (max-width: 768px) {
  .section h1 {
    font-size: 28px;
  }
  .section h2 {
    font-size: 24px;
  }
  #langSelect {
    position: static;
    margin: 10px auto 0;
    display: block;
  }
  .navbar {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  .logo-container {
    position: static;
    transform: none;
    margin-bottom: 10px;
  }
  .logo-text {
    font-size: 24px;
  }
}

@media (max-width: 400px) {
  .section {
    padding: 30px 15px;
    font-size: 16px;
  }
  .section h1, .section h2 {
    font-size: 22px;
  }
}

