/* Colors
#headers rgb(163, 122, 8)
#tone text rgb(133, 70, 15)
#link-text #a27a4b

#basic #B87306;
#tint #D39A3A 
#tone-dark #6F4203
#background #F8E7B1
#action #FF8C1A
*/

* {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

/* General Reset */
body,
h1,
h2,
p,
ul {
  margin: 0;
  padding: 0;
}

body {
  background-color: #f4f4f9;
}

main {
  width: 100%;
}

/* Container */
.container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

/* Top Gray Header */
.top-header {
  display: flex;
  background: #e0e0e0;
  padding: 10px 0;
  text-align: center;
  font-size: 14px;
  border-bottom: 1px solid;
  border-bottom-color: #a27a4b;
}

.top-header a {
  color: #a27a4b;
  display: flex;
  gap: 10px;
}

.top-left {
  font-size: 16px;
  display: flex;
  gap: 15px;
  padding: 10px;
}

.top-right {
  position: absolute;
  font-size: 16px;
  left: 88%;
  display: flex;
  gap: 15px;
}

.top-right .bar-logo {
  height: 22px;
}

.bar-logo {
  height: 18px;
}

.social-icon {
  text-decoration: none;
  font-size: 16px;
  padding: 5px;
  display: flex;
}

.social-icon:hover {
  transform: scale(1.1);
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Burger Lang Menu */
/* Burger Menu */
.burger-menu {
  position: absolute;
  top: 10px;
  left: 78%;
  z-index: 1111111;
}

.burger-icon {
  font-size: 12px;
  cursor: pointer;
  padding: 10px;
  background: #333;
  color: white;
  border-radius: 5px;
  width: 40px;
  text-align: center;
}

.menu-items {
  display: none;
  position: absolute;
  background: #444;
  padding: 10px;
  border-radius: 5px;
  margin-top: 10px;
}

.menu-items a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 5px 10px;
}

.menu-items a:hover {
  background: #666;
}

/* Show menu when active */
.menu-open {
  display: block;
}

/* Middle Black Header */
.main-header {
  display: flex;
  background: #000;
  position: sticky;
  top: 0;
  z-index: 1000;
  color: white;
  padding: 15px 0;
}

.logo-div {
  display: flex;
  float: left;
}

.logo {
  height: 80px;
}

.logo-scroll-down {
  height: 64px;
  transition: height 0.6s;
}

.logo-scroll-up {
  height: 80px;
  transition: height 0.6s;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  flex-grow: 1;
  height: 20px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  margin: 10px;
  gap: 10px;
  align-items: center;
}

.main-nav ul li {
  display: flex;
  padding: 8px;
  align-items: center;
}

.main-nav ul li a {
  color: white;
  text-decoration: none;
  text-align: center;
  font-size: 18px;
  transition: opacity 0.3s;
}

.main-nav ul li a:hover {
  opacity: 0.7;
}

.current {
  background: #8d6605;
  border-radius: 6px;
  padding: 8px 12px;
  display: inline-block;
  height: auto;
  line-height: normal;
  transition: all 0.2s ease-in-out;
}

.main-nav ul li .smaller-font {
  font-size: 17px;
  letter-spacing: -1px;
}

/* Scrollable Content */
.content {
  text-align: center;
  min-height: 800px;
}

/* Footer */
.footer {
  padding: 20px;
  background: #000;
  color: rgba(255, 255, 255, 0.8);
}

/* Others */
#main-container {
  width: 100%;
}

.hidden {
  display: none;
  transition: display 2s;
}

.hidden-tr {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.01s ease, transform 0.01s ease, visibility 0.01s;
}

.shown {
  display: block !important;
  transition: display 2s;
}

.shown-tr {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s !important;
}
