/*
Theme Name: NEW BFG
Author: BFG
Description: A blank WordPress theme
Version: 1.0
*/

/* standartization */

:root {
  --font-family: "Funnel Display", sans-serif;
  --second-family: "Questrial", sans-serif;
}

/* primary */

.container {
  margin: 0 auto;
  max-width: clamp(320px, 88.89vw, 1664px);
}

@media screen and (min-width: 1201px) and (max-width: 2560px) {
  .container {
    padding-left: 80px;
    padding-right: 80px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
  .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media screen and (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
  }
}

.pseudo-elements {
  position: relative;
  background: #fefdff;
}

.pseudo-elements > div {
  z-index: 1;
  position: relative;
}

.pseudo-elements::before {
  content: "";
  position: absolute;
  background: url("/wp-content/uploads/2025/10/pseudo-back.webp") repeat center
    center;
  opacity: 0.05;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.gradient__pseudo-item {
  width: 100%;
  position: absolute;
  bottom: -857px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .gradient__pseudo-item {
    width: 712px;
    bottom: -700px;
  }
}

/* animated cursor */

body {
  cursor: default;
}

#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: clamp(100px, 8.33vw, 156px);
  height: clamp(100px, 8.33vw, 156px);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 0 22px 0 rgba(242, 242, 242, 0.5), inset 0 0 0 1px #999,
    inset -2px -2px 1px -2px #b3b3b3, inset 2px 2px 1px -2px #b3b3b3,
    inset 3px 3px 0px -3px rgba(255, 255, 255, 0.5);
  /* background: #1a1a1a; */
  border-radius: 50%;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(16px, 1.25vw, 23px);
  line-height: 100%;
  letter-spacing: -0.05em;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 0.69vw, 13px);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.1s ease;
  transform: translate(-50%, -50%);
}

#custom-cursor svg {
  width: clamp(20px, 1.39vw, 26px);
  height: clamp(20px, 1.39vw, 26px);
}

.special-hover {
  cursor: none !important;
}
/* body */

body,
body p {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: clamp(16px, 1.39vw, 26px);
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #000;
}

.body2,
.body2 p {
  font-size: clamp(14px, 1.11vw, 21px);
}

/* h1 */

h1,
.h1 {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: clamp(46px, 9.72vw, 182px);
  letter-spacing: -0.05em;
}

@media screen and (min-width: 769px) {
  h1,
  .h1 {
    line-height: 74%;
  }
}

@media screen and (max-width: 768px) {
  h1,
  .h1 {
    line-height: 90%;
  }
}

/* h2 */

h2,
.h2 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(36px, 5.14vw, 96px);
  line-height: 80%;
  letter-spacing: -0.05em;
}

/* h3 */

h3,
.h3 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(24px, 2.78vw, 52px);
  letter-spacing: -0.05em;
}

@media screen and (min-width: 769px) {
  h3,
  .h3 {
    line-height: 90%;
  }
}

@media screen and (max-width: 768px) {
  h3,
  .h3 {
    line-height: 100%;
  }
}

/* h4 */

h4,
.h4 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(18px, 1.67vw, 31px);
  line-height: 100%;
  letter-spacing: -0.05em;
}

/* h5 */

h5,
.h5 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(16px, 1.25vw, 24px);
  line-height: 100%;
  letter-spacing: -0.05em;
}

/* buttons */

.btn {
  display: flex;
  align-items: center;
  gap: clamp(10px, 0.69vw, 13px);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(16px, 1.25vw, 24px);
  line-height: 100%;
  letter-spacing: -0.05em;
  color: #fff;
  max-width: fit-content;
  max-height: fit-content;
  width: 100%;
  border-radius: 100px;
  background: #000;
  transition: all 0.3s;
}

.btn-icon {
  padding: clamp(16px, 1.25vw, 24px);
  border-radius: 100px;
  display: flex;
  border-radius: 100px;
}

.btn-icon svg {
  min-width: clamp(6px, 0.76vw, 14px);
  min-height: clamp(6px, 0.76vw, 14px);
  transition: all 0.3s;
}

.btn-solid {
  transition: all 0.3s;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 0.5px -3.5px rgba(255, 255, 255, 0.5) inset,
    2px 2px 1px -2px #b3b3b3 inset, -2px -2px 1px -2px #b3b3b3 inset;
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.1);
  padding: 3px clamp(20px, 1.81vw, 34px) 3px 3px;
  gap: clamp(10px, 0.69vw, 13px);
  border-radius: 100px;
  box-sizing: border-box;
}

.btn-solid:hover {
  background: rgba(255, 255, 255, 0.2);
}

a:hover .btn-icon svg {
  transform: rotate(45deg);
}

.btn-outline:hover {
  background: rgba(0, 0, 0, 1);
}

.btn-solid-icon {
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  box-shadow: inset -2px -2px 1px -2px #b3b3b3, inset 2px 2px 1px -2px #b3b3b3,
    inset 3px 3px 0px -3px rgba(255, 255, 255, 0.5);
}

.btn-outline {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  box-shadow: inset 2px 2px 4px 0 rgba(255, 255, 255, 0.79),
    inset 1px 1px 1px 0 #fff, inset -2px -2px 4px 0 rgba(255, 255, 255, 0.8),
    inset -1px -1px 1px 0 #fff;
  background: rgba(0, 0, 0, 0.8);

  padding: 3px clamp(20px, 1.81vw, 34px) 3px 3px;
  gap: clamp(10px, 0.69vw, 13px);
  border-radius: 100px;
}

.btn-outline-icon {
  border-radius: 100px;
  fill: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  box-shadow: inset -2px -2px 1px -2px #b3b3b3, inset 2px 2px 1px -2px #b3b3b3,
    inset 3px 3px 0px -3px rgba(255, 255, 255, 0.5);
}
