@charset "utf-8";
/* CSS Document */

/*https://andy-bell.co.uk/a-modern-css-reset/*/

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.25;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}


/* MY STYLES */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-padding, 75px);
}

body {
  /* overflow-x: hidden; */
  background: rgb(0, 0, 0);
  background: url(../images/echoHallStudios/patch1.png) repeat;
  min-height: 100%;
  display: flex;
  flex-direction: column;

}

/* //////////////////////FONT
/////////////////////////FONT
/////////////////////////FONT
/////////////////////////FONT
/////////////////////////FONT */
.inknut-antiqua-light {
  font-family: "Inknut Antiqua", serif;
  font-weight: 300;
  font-style: normal;
}

.inknut-antiqua-black {
  font-family: "Inknut Antiqua", serif;
  font-weight: 900;
  font-style: normal;
}

.roboto-light {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.playfair-display sc-black {
  font-family: "Playfair Display SC", serif;
  font-weight: 900;
  font-style: normal;
}

.aldrich-regular {
  font-family: "Aldrich", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h1 {
  font-family: "Inknut Antiqua", serif;
  font-weight: 900;
  font-style: normal;
}

h2 sc-black {
  font-family: "Playfair Display SC", serif;
  font-weight: 900;
  font-style: normal;
}

h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

p sc-black {
  font-family: "Playfair Display SC", serif;
  font-weight: 900;
  font-style: normal;
}

a.linkClass {
  font-family: Aldrich;
  color: #FBF236;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
}

a.linkClass:link {

  font-family: Aldrich;
  color: #FBF236;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
}

a.linkClass:visited {
  font-family: Aldrich;
  color: #FBF236;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
}

a.linkClass:hover {
  font-family: Aldrich;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
}

a.linkClass:active {
  font-family: Aldrich;
  color: #FBF236;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
}

/* //////////////////////HEADER
/////////////////////////HEADER
/////////////////////////HEADER
/////////////////////////HEADER
/////////////////////////HEADER */
.flex {
  display: flex;
  gap: 1em;
}

.logo {
  filter: drop-shadow(5px 5px rgba(0, 0, 0, 0.5));
  margin: 1rem 0;
}

.primary-header-wrapper {
  background: url(../images/echoHallStudios/patch1.png) repeat;
  background-color: rgb(0, 0, 0);
  position: fixed;
  width: 100%;
  z-index: 1;
}

.primary-header {
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-toggle {
  display: none;
}

.primary-navigation {
  list-style: none;
  padding: 0;
  margin: 0;
  /* border: 1px solid rgb(0, 255, 89); */
  /* background: hsl(0 0% 0% / .75);
  backdrop-filter: blur(1rem); */
}

/* @supports (backdrop-filter: blur(1rem)) {
  .primary-navigation {
    background: hsl(0 0% 100% / .1);
    backdrop-filter: blur(1rem);
  }
} */

.sr-only {
  opacity: 0;
}

.primary-navigation a {
  text-decoration: none;
  color: white;
}

.primary-navigation a>[aria-hidden="true"] {
  font-weight: 700;
  margin-inline-end: .5em;
}

/* //////////////////////HERO
/////////////////////////HERO
/////////////////////////HERO
/////////////////////////HERO
/////////////////////////HERO */

.top {
  position: relative;
  height: 10px;
  background: linear-gradient(141deg, cyan 0%, rebeccapurple 40%, deeppink 90%);
}

.bottom {
 margin-top: 30px;
  position: sticky;
  height: 10px;
  background: linear-gradient(141deg, cyan 0%, rebeccapurple 40%, deeppink 90%);
  bottom: 0;
}

.hero {
  background-image: url("../images/backgroundHero2.JPG");
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 50vh;
  background-position: center;
}

.heroContainer {
  overflow: hidden;
  position: scroll;
  /* clip-path: polygon(0 0, 100% 0%, 100% 80%, 0% 100%); */
}

.sliding-background {
  background: url(../images/echoHallStudios/slidingHero.png) repeat;
  height: 500px;
  width: 5076px;
  animation: slide 60s linear infinite;
  z-index: -1;
  position: relative;
}

@keyframes slide {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-1692px, 0, 0);
  }
}

.hero-element {
  position: absolute;
  top: 290px;
  left: 50%;
  translate: transform(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 0;
  filter: drop-shadow(.5rem .5rem rgba(255, 0, 221, 0.5));
  animation-name: heroElement;
  animation: heroElement 2s linear infinite;
}

@keyframes heroElement {
  0% {
    left: 50%;
    top: 290px;
  }

  25% {
    left: 50%;
    top: 270px;
  }

  50% {
    left: 50%;
    top: 290px;
  }

  75% {
    left: 50%;
    top: 270px;
  }

  100% {
    left: 50%;
    top: 290px;
  }
}

/* //////////////////////NAV
/////////////////////////NAV
/////////////////////////NAV
/////////////////////////NAV
/////////////////////////NAV */

@media (max-width: 800px) {

  .primary-navigation {
    gap: 2em;
    z-index: 1000;
    position: fixed;
    /* inset: 0 0 0 40%; */
    inset: 0 0 0 100%;
    width: 50%;
    flex-direction: column;
    padding: min(30vh, 10rem) 2em;
    transform: translateX(0%);
    transition: transform 350ms ease-out;
    background: rgba(0, 0, 0, .95);
    /* backdrop-filter: blur(.5rem);  */
  }

  /* @supports (backdrop-filter: blur(.5rem)) {
    .primary-navigation {
      background: rgba(0, 0, 0, .1);
      backdrop-filter: blur(.5rem); 
    }
  } */

  .primary-navigation[data-visible="true"] {
    transform: translateX(-100%);
  }

  .mobile-nav-toggle {
    cursor: pointer;
    display: block;
    position: absolute;
    z-index: 9999;
    width: 3rem;
    top: 1.5rem;
    right: 1rem;
    background-color: transparent;
    background-image: url("../images/burgerWhite.svg");
    background-repeat: no-repeat;
    aspect-ratio: 1;
    background-size: cover;
    border: 0;
  }

  .mobile-nav-toggle[aria-expanded="true"] {
    background-color: transparent;
    background-image: url("../images/closeWhite.svg");
    background-repeat: no-repeat;
    background-size: cover;
    border: 0;
  }
}

.primary-navigation a {
  font-family: "Inknut Antiqua", serif;
  font-weight: 300;
  font-style: normal;
  color: #ccc;
  text-decoration: none;
  text-transform: uppercase;
  font-size: .8em;
}

.primary-navigation a:hover {
  color: #000;
  color: #54c8eb;
}

.primary-navigation a::before {
  content: "";
  display: block;
  height: 5px;
  background-color: #e828ef;
  position: absolute;
  top: -10px;
  width: 0%;
  transition: all ease-in-out 250ms;
}

.primary-navigation a:hover::before {
  width: 90%;
}

ul li {
  display: inline-block;
  padding: 0 1px;
  position: relative;
}

/* //////////////////////CONTAINER
/////////////////////////CONTAINER
/////////////////////////CONTAINER
/////////////////////////CONTAINER
/////////////////////////CONTAINER */
.container {
   /* border: 1px solid rgb(255, 255, 255);     */
  width: 80%;
  max-width: 960px;
  margin: 0 auto;
  /* position: relative; */
}

section {
  /* padding: 2em 0; */
}

article {
   padding: 2em ; 
}



/* //////////////////////INTRO
/////////////////////////INTRO
/////////////////////////INTRO
/////////////////////////INTRO
/////////////////////////INTRO */


.intro {
  /* background: firebrick;
  background: linear-gradient(to left, firebrick, rgb(255, 85, 85));  */
  /* border: 1px solid rgb(0, 255, 89); */
  min-height: 10vh;
  display: flex;
  align-items: center;

  background-size: 300% 300%;
  /* 
  background: linear-gradient(141deg, cyan 10%, rebeccapurple 40%, deeppink 90%); */
  background: #ffffff;
  background: url(../images/echoHallStudios/patch1.png) repeat;
  /* background-image: linear-gradient(-45deg, rgb(204, 16, 182) 0%, rgb(190, 51, 202) 25%, rgb(21, 86, 147) 51%, #0ca3ef 100%);
  -webkit-animation: AnimateBG 20s ease infinite;
  animation: AnimateBG 20s ease infinite; */
}

@-webkit-keyframes AnimateBG {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes AnimateBG {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.slogan {
  text-transform: uppercase;
  letter-spacing: 10px;
  font-size: .75rem;
  color: cyan;
  margin: 2em;
  text-align: center;
  line-height: 2rem;
  text-shadow: 5px 5px #000000;
  /* filter: drop-shadow(.5rem .5rem rgba(0, 0, 0, 0.5)); */
}

.intro__text {
  letter-spacing: 2px;
  /* font-size: 1.125rem; */
  font-size: 1.2em;
  color: #ccc;
  padding-bottom: 30px;
  text-align: justify;
  text-shadow: 5px 5px #000000;
  /* border: 1px solid rgb(255, 255, 255);   */
}

.btn {
  margin: 0 0 .25em;
  padding: 0 0 2em 0;
  text-align: justify;
  /* border: 1px solid rgb(0, 255, 89); */
}

.intro__text::first-letter {
  font-family: "Inknut Antiqua", serif;
  font-weight: 900;
  font-style: normal;
  font-size: 6rem;
  float: left;
  padding: 20px 10px 10px 0px;
  line-height: .5em;
  color: hotpink;
}

.intro-img-center {
  /* box-shadow: 5px 10px rgba(0, 0, 0, 0.25); */
  filter: drop-shadow(.5rem .5rem rgba(0, 0, 0, 0.5));
  margin: 0 auto;
/*   padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px; */
   border-radius: 100px 10px 100px 10px; 
  /* border: 1px solid rgb(255, 255, 255);   */
}









/* //////////////////////GAMES
/////////////////////////GAMES
/////////////////////////GAMES
/////////////////////////GAMES
/////////////////////////GAMES */

.adjustable-grid {
  --column-count: 1;
  margin-left: 20px;
  margin-right: 20px;
  display: grid;
  grid-template-columns: repeat(var(--column-count), 1fr);
  gap: .5em;
  /* border: 1px solid hsl(128, 100%, 50%);  */
  justify-content: center;
}

.box {
  justify-content: center;
  /* background: rgb(0, 0, 0); */
  padding: 0em;
  /* border: 6px solid hsl(0, 0%, 0%);  */
}


.img-center {
  /* box-shadow: 5px 10px rgba(0, 0, 0, 0.25); */
  filter: drop-shadow(.5rem .5rem rgba(0, 0, 0, 0.5));
  margin: 0 auto;
/*   padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px; */
   /* border-radius: 100px 10px 100px 10px;  */
  /* border: 1px solid rgb(255, 255, 255);   */
}



section {
  padding: 2em 0;
}

/* .bottom {
  position: relative;
  height: 10px;
  background: linear-gradient(141deg, cyan 0%, rebeccapurple 40%, deeppink 90%);
margin-top: auto;

} */

.hidden {
  opacity: 0;
  filter: blur(5px);
  transform: translateX(-20%);
  transition: all 2s;
}

.show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}

@media(prefers-reduced-motion) {
  .hidden {
    transition: none;
  }
}

/* //////////////////////BUTTON
  /////////////////////////BUTTON
  /////////////////////////BUTTON
  /////////////////////////BUTTON
  /////////////////////////BUTTON */

.btn-z-index {
  z-index: -1;
}

.btn {
  box-shadow: 10px 10px rgba(0, 0, 0, 0.25);
  text-align: center;
  margin-left: 25%;
  margin-right: 25%;
  margin-top: 2em;
  margin-bottom: 2em;
  color: cyan;
  display: block;
  cursor: pointer;
  text-decoration: none;
  border: 3px solid cyan;
  font-family: Aldrich;
  color: #FBF236;
  padding: .5em 1em;
  border-radius: .25em;
  font-size: 1em;
  position: relative;
  isolation: isolate;
}

.btn::after {
  content: '';
  position: absolute;
  z-index: -1;
  background: cyan;
  inset: 0;
  scale: 0 1;
  transform-origin: right;
  transition: scale 450ms;
}

.btn:hover::after,
.btn:focus-visible::after {
  transform-origin: left;
  scale: 1 1;
}

.btn:hover {
  color: firebrick;
}

/* //////////////////////FLEXBOX 
/////////////////////////FLEXBOX 
/////////////////////////FLEXBOX 
/////////////////////////FLEXBOX 
/////////////////////////FLEXBOX  */
@media (min-width: 800px) {
  .primary-navigation {
    padding-block: 1rem;
    padding-inline: clamp(1rem, 5vw, 4rem);
  }

  .intro__text {
    column-count: 2;
    column-gap: 50px;
    /* column-rule: 3px solid #ccc; */
    column-rule: 3px solid hotpink;
    text-align: justify;
    padding-bottom: 30px;
    /* margin: 0 auto;
    width: 90%; */
  }

  .btn {
    font-size: 1.5em;
  }

  .adjustable-grid {
    --column-count: 2;
  }

}

@media (min-width: 960px) {
  .adjustable-grid {
    --column-count: 3;
  }
}