:root {
  --color-primary: #b38e40;
  --color-secondary: #e3cdb6;
  --color-background: #0a0a0a;
  --color-text: #ffffff;
  --font-family: "satoshi-medium", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

@font-face {
  font-family: "satoshi-medium";
  src: url(../public/fonts/satoshi-medium/satoshi-medium.otf);
}

a {
  flex: none;
}

button {
  cursor: pointer;
}

body {
  font-family: var(--font-family);
  background-color: var(--color-background);
  color: var(--color-text);
}

.glow_button {
  flex: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background-color: var(--color-primary);
  color: var(--color-background);
  padding: 12px 25px;
  font-weight: 600;
  user-select: none;
  border-radius: 5px;
  will-change: transform;
  transition: all 0.2s ease-in-out;
}

.glow_button:hover,
.glow_button_2:hover {
  transform: translateY(-5px);
}

.glow_button svg,
.glow_button_2 svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5px;
}

.glow_button_2 {
  flex: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background-color: rgba(255, 255, 255, 0.152);
  border: 1px solid rgba(255, 255, 255, 0.31);
  color: white;
  padding: 12px 25px;
  font-weight: 550;
  backdrop-filter: blur(5px);
  user-select: none;
  border-radius: 5px;
  will-change: transform;
  transition: all 0.2s ease-in-out;
}

.glow_button_nav {
  flex: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background-color: var(--color-primary);
  color: var(--color-background);
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 550;
  user-select: none;
  border-radius: 5px;
  will-change: transform;
  transition: all 0.2s ease-in-out;
}

.glow_button_nav svg {
  width: 18px;
  height: 18px;
  stroke-width: 2px;
}

.reveal-line {
  overflow: hidden;
  display: inline-block;
}

.line-text {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
}

.clipped-img {
  clip-path: polygon(28% 0, 101% 0%, 101% 100%, 0% 101%);
}

@media (max-width: 767.98px) {
  .glow_button svg,
  .glow_button_2 svg {
    width: 16px;
    height: 16px;
  }

  .glow_button,
  .glow_button_2 {
    padding: 12px 20px;
  }

  .clipped-img {
    clip-path: polygon(0% 0%, 101% 0%, 101% 100%, 0% 100%);
  }
}
