/* Fundamental Color */
:root {
  --primary: #ffbb00;
  --bg: #191919;
}
/* Area */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #0f0f0f;
  color: #ffffff;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 3%;
  background-color: rgba(0, 0, 0, 0.8);
  border-bottom: 0 solid #000000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.navbar .navbar-logo a img {
  width: 125px;
  height: auto;
}

.navbar .navbar-nav a {
  color: #ffffff;
  display: inline-block;
  font-size: 1.2rem;
  margin: 1rem;
  text-decoration: none;
}

.navbar .navbar-nav a:hover {
  color: var(--primary);
}

.navbar .navbar-nav a::after {
  content: "";
  display: block;
  padding-bottom: 0.5rem;
  border-bottom: 0.1rem solid var (--primary);
  transform: scaleX(0);
  transition: 0.2s linear;
}

.navbar .navbar-nav a:hover::after {
  transform: scaleX(0.5);
}

/* Search */
.navbar .search-box {
  display: flex;
  align-items: center;
  background-color: none;
  width: 0.1rem;
  height: 0.1rem;
  padding: 1.5rem 12rem;
  border: 0.2rem solid #ffffff;
  border-radius: 0.9rem;
  justify-content: center;
  overflow: hidden;
}

.navbar .search-input {
  position: relative;
}

/* Hidden Label for Screen Readers */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.navbar .search-input label {
  font-size: 0.8rem;
  color: #ffffff;
  margin-right: 8px;
}

.navbar .search-input input {
  border: none;
  outline: none;
  background-color: transparent;
  padding: 20px 50px;
  color: #ffffff;
  border-bottom: none;
  margin-right: 4rem;
  margin-left: -2rem;
  font-size: 1.2rem;
  text-align: left;
}

.navbar .search-icon a {
  display: flex;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  margin-left: -2rem;
}

.navbar .navbar-extra a {
  color: #ffffff;
  margin: 0 0.6rem;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar .navbar-extra a:hover {
  color: var(--primary);
}

#hamburger-menu-link {
  display: none;
}

.image-box {
  width: 100%;
  max-width: 1265px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0.9rem;
  margin-top: 90px;
}

.image-content {
  width: 100%;
  height: auto;
  display: block;
}

.blog {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-section {
  position: relative;
  text-align: left;
  font-size: 1.25rem;
  padding: 20px;
  top: 50px;
  left: 20px;
}

.blogother-box {
  position: relative;
  font-size: 0.75rem;
  text-align: right;
  padding: 8px;
  top: 50px;
  right: 40px;
  border: 0.1rem solid #ffffff;
  border-radius: 0.6rem;
}

.hero-activities {
  position: relative;
  text-align: left;
  font-size: 1.25rem;
  padding: 20px;
  top: 50px;
  left: 20px;
}

.activitiesother-box {
  position: relative;
  font-size: 0.75rem;
  text-align: right;
  padding: 8px;
  top: 50px;
  right: 40px;
  border: 0.1rem solid #ffffff;
  border-radius: 0.6rem;
}

/* footer */
footer {
  background-color: black;
  display: flex;
  justify-content: space-between;
  text-align: center;
  padding: 40px;
  margin-top: 3rem;
}

footer .social a {
  color: #ffffff;
  margin: 0.2rem;
  text-decoration: none;
}

footer .link a {
  color: #ffffff;
  margin: 0.2rem;
  text-decoration: none;
}

footer .credit p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  max-width: 100%;
  text-align: right;
}
