html,
body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: Laila;
}
main {
  flex-grow: 1;
}

/* Floating Language Button */
.floating-btn {
  position: fixed;
  right: 20px;
  bottom: 100px;
  background-color: #7d554e;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.4s ease;
}

/* Spin effect */
.floating-btn:hover,
.floating-btn.active {
  transform: rotate(360deg);
}

/* Language switch container */
.language-options {
  position: fixed;
  right: 20px;
  bottom: 160px;
  display: none;
  flex-direction: column;
  gap: 10px;
}

/* Show options when button is active */
.floating-btn.active ~ .language-options {
  display: flex;
}

/* Language button styles */
.language-btn {
  background-color: #d9b556;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Active language button color */
.language-btn.active {
  background-color: #ff6f00;
}

/* Scroll-to-top button */
.scroll-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #b22222;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: none; /* Hidden initially */
  transition: opacity 0.3s ease;
}

/* Show scroll button when page is scrolled */
.scroll-to-top.show {
  display: flex;
}

h2 {
  color: #ff6f00 !important;
  font-weight: 800 !important;
}
