/* Default color palette for the website */
:root {
  --color-white: hsl(0, 0%, 100%);
  --color-light: hsl(206, 33%, 96%);
  --color-black: hsl(0, 0%, 0%);
  --color-black-2: hsl(0, 0%, 12.5%);
  --color-night: hsl(214, 100%, 10%);
  --color-beige: hsl(40, 30%, 85%);
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Michroma;
}

html {
  font-size: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  /* line-height: 1.25; */
  color: var(--color-black);
  margin: 0;
  padding: 0;
  /* background: auto; */
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: inherit;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.navbar-area {
  top: 0;
  left: 0;
  width: 100%;
 color: beige;
  width: auto;
  height: 84px;
  flex-shrink: 0;
  transition: all 0.4s ease;
  border-style: solid;
  border: 2px solid rgba(194, 189, 136, 0.39);
  border-top: 0dvh;
  border-left: 0dvh;
  border-right: 0dvh;
  background: rgb(34, 32, 32);  
  background-color: var(--color-black);
}

.wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  display: flex;
  align-items: center;
}

.menu {
  display: flex;
  /* justify-content: flex-end; */
}

.menu-inner {
  list-style: none;
  display: flex;
}

.menu-item {
  margin-left: 90px;
}



/* navbar regular css start */
.menu {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
}
a.site-logo {
  display: flex;
  color: beige;
  text-decoration: none;
}
/* .menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
} */
.menu ul li a {
  color: beige;
  padding: 25px;
  display: flex;
  text-decoration: none;
  font-size: 18px;
}
.menu ul li::after {
  content: "";
  width: 0%;
  height: 2px;
  background: beige;
  display: flex;
  margin: auto;
  transition: 0.4s;
}
.menu ul li:hover:after {
  width: 100%;
}
/* navbar regular css end */

/* nav-toggler css start */
.nav-toggler {
  border: 3px solid #fff;
  padding: 5px;
  background-color: transparent;
  cursor: pointer;
  height: 39px;
  display: none;
}
.nav-toggler span,
.nav-toggler span:before,
.nav-toggler span:after {
  width: 28px;
  height: 3px;
  background-color: #fff;
  display: block;
  transition: 0.3s;
}
.nav-toggler span:before {
  content: "";
  transform: translateY(-9px);
}
.nav-toggler span:after {
  content: "";
  transform: translateY(6px);
}
.nav-toggler.toggler-open span {
  background-color: transparent;
}
.nav-toggler.toggler-open span:before {
  transform: translateY(0px) rotate(45deg);
}
.nav-toggler.toggler-open span:after {
  transform: translateY(-3px) rotate(-45deg);
}
/* nav-toggler css start */


nav.sticky {
  /* padding: 15px 20px; */
  background: hsl(0, 0%, 12.5%);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
nav .nav-content {
  height: 100%;
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
}
ul {
  list-style: none;
}

.left-side,
.right-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

nav ul li {
  margin: 0 10px;
}

nav ul li a {
  color: var(--color-beige);
  text-decoration: none;
  padding: 10px;
  transition: color 0.6s ease;
}

h1,
h2,
h3 {
  margin: 0 0 0.25em;
}

/* Micro Clearfix */
.cf:before,
.cf:after {
  content: "";
  display: table;
  visibility: hidden;
}

.cf:after {
  clear: both;
}

.cf {
  zoom: 1;
}

.wrap {
  text-align: center;
}

.row {
  width: 700px;
  height: auto;
  text-align: center;
  overflow: hidden;
  width: 100%;
}

.menu-row li{
  border: 1px solid var(--color-beige);
  border-left: 0;
  border-right: 0;
}

/* Footer styling */
footer {
  width: 100%;
  padding-top: 25px;
  padding-bottom: 25px;
  transition: all 0.4s ease;
  background-color: var(--color-black);
  text-decoration: none;
}
footer .text-foot {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: auto;
  align-items: center;
}

h2 {
  font-size: 20px;
  margin-bottom: 2px;
  color: beige;
}
.text-foot {
  display: flex;
  align-items: center;
  text-align: justify;
  padding: 10px 60px;
}

footer .center-footer {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 14px;
  font-size: 19px;
}
footer a {
  color: beige;
}
footer .right-footer {
  font-size: 45px;
}
footer .right-footer .git {
  position: relative;
  top: 15px;
}
.right-footer a {
  text-decoration: none;
  transition: 0.5s;
}

.right-footer:hover {
  transform: scale(1.2);
}
