@font-face {
  font-family: "Glacial Indifference";
  src: url("../fonts/GlacialIndifference-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Glacial Indifference";
  src: url("../fonts/GlacialIndifference-Bold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
}

/* *{
  border: 1px solid greenyellow;
} */

* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

html {
  overflow-x: hidden;
}

body {
  background-color: #fafafa;
}

h1 {
  font-family: "Glacial Indifference", sans-serif;
  font-weight: 400;
  font-size: 45px;
  color: #fafafa;
  text-transform: capitalize;
}

h2 {
  font-family: "Glacial Indifference", sans-serif;
  font-weight: 400;
  font-size: 25px;
  color: #fafafa;
  opacity: 0.75;
}

h3 {
  font-family: "Glacial Indifference", sans-serif;
  font-weight: 400;
  font-size: 35px;
  color: #fafafa;
}

h4 {
  font-family: "Glacial Indifference", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #fafafa;
  text-transform: uppercase;
}

h5 {
  font-family: "Glacial Indifference", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #653e36;
}

h6 {
  font-family: "Glacial Indifference", sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: #653e36;
}

p {
  font-family: "Glacial Indifference", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #fafafa;
}

a {
  font-family: "Glacial Indifference", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #fafafa;
  text-decoration: none;
}

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

.row {
  flex-direction: row;
}

.column {
  flex-direction: column;
}

.space-between {
  justify-content: space-between;
}

.align-start {
  align-items: flex-start;
}

.justify-start {
  justify-content: flex-start;
}

.align-self-end {
  align-self: flex-end;
}

.align-self-start {
  align-self: flex-start;
}

.justify-self-start {
  justify-self: flex-start;
}

.width-100 {
  width: 100%;
}

.max-width {
  max-width: 1300px;
}

.underline {
  position: relative;
  text-decoration: none;
  color: inherit;
}

.underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px; /* distance from text */
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition: all 0.3s ease;
}

.underline:hover::after {
  width: 100%;
}

/* Slide-out effect after hover */
.underline:not(:hover)::after {
  left: auto;
  right: 0;
  width: 0;
}

/* COOKIE BANNER STYLE */
.cookie-container {
  z-index: 3;
  position: fixed;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  bottom: 25px;
  /* display: none; */
  justify-content: space-between;
  align-items: center;
  height: 50px;
  width: min-content;
  background: #fafafa;
  box-shadow: 4px 4px 25px #00000048;
  border-radius: 12px;
  padding: 25px;
  gap: 25px;
}

.cookie-container path,
.cookie-container p,
.cookie-container a {
  color: #653e36;
  fill: #653e36;
  stroke: #653e36;
}

.cookie-container > div > p {
  min-width: 370px;
  font-size: 16px;
}

.cookie-container p span {
  text-decoration: underline dotted #653e36;
  cursor: pointer;
}

.cookie-btn-holder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.cookie-btn {
  background: #eae4e5;
  width: 150px;
  height: 50px;
  border-radius: 7px;
  cursor: pointer;
}

.cookie-btn p {
  font-size: 16px;
  font-weight: 600;
  color: #653e36;
}

@media screen and (max-width: 976px) {
  .cookie-container {
    flex-direction: column;
    height: min-content;
    bottom: 25px;
    gap: 25px;
  }

  .cookie-container svg {
    width: 40px;
    height: 40px;
  }

  .cookie-container > div > p {
    min-width: unset;
    font-size: 16px;
    margin: 0;
  }

  .cookie-btn {
    width: 120px;
    height: 40px;
  }
}

@media (max-width: 976px) {
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 11px;
  }
  h5 {
    font-size: 18px;
  }
  h6 {
    font-size: 13px;
  }
  p,
  a {
    font-size: 14px;
  }
}
