/* Moved from inline <style> in index.html */
body {
	font-family: 'Inter', sans-serif;
	background-color: #FDFBF7;
	color: #292524;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Playfair Display', serif;
}

::selection {
	background-color: #C5A282;
	color: white;
}

/* Utility for smooth transition on navbar */
.nav-scrolled {
	background-color: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(12px);
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	padding-top: 0.75rem !important;
	padding-bottom: 0.75rem !important;
}

/* Footer */
.footer {
  text-align: center;
  padding: 1.5rem;
  background: #222;
  color: #fff;
  margin-top: 2rem;
}

/* Language Switch Button */
.language-switcher {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
}

#lang-toggle-btn {
  padding: 10px 16px;
  background-color: #8D6E50;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  font-family: 'Inter', sans-serif;
}

#lang-toggle-btn:hover {
  background-color: #705435;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#lang-toggle-btn:active {
  transform: translateY(0);
}