/*
Theme Name: genfruitz-theme
Author: ArtofGenesis
Version: 2.0
Description: Custom WordPress theme for GenFruitz NFT website
*/

:root {
  --transparent: rgba(255, 255, 255, 0.08);
  --blur: blur(6px);
  --color-bg: #f5f5f5;
  --color-primary: #9D79F2;      /* Aurora Purple */
  --color-secondary: #A678F0;    /* Cosmic Violet */
  --text-primary: #fff;
  --text-secondary: #9D79F2;
}
/* background: #d63c35; button hover bg */
  /* color: #222; home intro */
  /* color: #4f4f5a; main a */
  /* color: #333; mobile */
  /* fruit meta border-top: 1px solid #f0f0f0; */
  /* fruit card h3 color: #111; dateColor: #888; */
  /* .footer-left {color: #999; */
  /* .back-home:hover {background: #d93a33; */

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #eee;
  position: relative;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url('assets/images/main-bg.png');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -3;
  pointer-events: none;
}

/* About Start */
body.page-id-233::after,
body.page-id-236::after,
body.page-id-238::after {
  background-image: url('assets/images/story-bg.png') !important;
}
/* About End */

/* About Start */
/* body.page-id-42::after {
  background-image: url('assets/images/about-bg.png') !important;
} */
/* About End */

/* body.error404::after {
  background-image: url('assets/images/404-bg.png') !important;
} */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  /* background: rgba(0,0,0,0.45); */
  background: rgba(0,0,0,0.20);
  z-index: -2;
  pointer-events: none;
}

body.page-id-233::before,
body.page-id-236::before,
body.page-id-238::before {
  background: rgba(0,0,0,0.0);
}

/* body.page-id-42::before, */
/* body.page-id-233::before,
body.error404::before {
  background: rgba(0,0,0,0.20);
} */

.site-header,
.site-footer,
.page-content,
.about-content-wrapper {
  position: relative;
  z-index: 2;
}