
body {
  font-family: Georgia, serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #B9A995;
}
.dropdown-item:focus {
  outline: 2px solid #B9A995;
}
body.dark-mode {
  background-color: black !important;
  color: white !important;
}

body.dark-mode header {
  background-color: black !important;
  border-bottom: 1px solid #333 !important;
}

body.dark-mode footer {
  background-color: black !important;
  border-top: 1px solid #333 !important;
}
body.dark-mode select#language-toggle {
  background-color: #000 !important;
  color: white !important;
  border: 1px solid #555 !important;
}
body.dark-mode .dropdown-menu {
  background-color: #000 !important;
  border: 1px solid #444 !important;
}

body.dark-mode .dropdown-menu .dropdown-item {
  color: white !important;
}

body.dark-mode .dropdown-menu .dropdown-item:hover {
  background-color: #222 !important;
}
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
  color: #CCBCAF !important;
}
body.dark-mode a {
  color: #CCBCAF !important;
}

body.dark-mode a:hover {
  color: #CCBCAF !important;
  text-decoration: underline;
}
.logo-light {
  display: block;
}
.logo-dark {
  display: none;
}
body.dark-mode .logo-light {
  display: none !important;
}
body.dark-mode .logo-dark {
  display: block !important;
}
ul li::marker {
  color: #B9A995;
}
footer a {
  color: #B9A995;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
a {
  color: #B9A995;
}
a:link {
  color: #B9A995;
}

a:visited {
  color: #B9A995;
}

a:hover {
  color: #B9A995;
}

a:active {
  color: #B9A995;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: #B9A995;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

iframe {
  width: 100%;
  height: 50vh;
  border: none;
}

.controls {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-custom {
  background-color: transparent;
  color: #B9A995;
  border: 1px solid #ccc;
}

.btn-custom:hover {
  background-color: #f2f2f2;
  border-color: #aaa;
  color: #000;
}

body.dark-mode .btn-custom {
  color: #fff;
  border-color: #666;
}

body.dark-mode .btn-custom:hover {
  background-color: #333;
  border-color: #999;
  color: #fff;
}
.toggle-darkmode,
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 32px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggle-darkmode img,
.lang-btn img {
  width: 24px;
  height: 24px;
  transition: filter 0.3s ease;
}
.form-field {
  width: 100%;
  max-width: 600px;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}