/* The astrid represents everything, margin 0 gets rid of extra spacing */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #000848;
  color: #00ff38;
  /* font-family: 'Orbitron', sans-serif; */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  text-align: center;
  /*Honolulu Blue: #0076B6*/
  margin: 0;
}

.no-scroll {
  overflow: hidden;
  touch-action: none;
}

a {
  color: #00EFFF;
  text-decoration: none;
  transition-duration: 0.4s;
}

a:hover {
  color: coral;
}

a:active {
  color: orange;
}

a:visited {
  color: none;
}

iframe {
  /* good practice to use percent for width and vh for height */
  width: 100%;
  height: 40vh;
}

.links {
  margin: 0 auto;
  text-align: center;
  font-size: 1.5em;
  color: purple;
}

/* .links is the div tag and a is a tag in the div tag */
.links a {
  color: #00EFFF;
}

.links a:hover {
  color: coral;
}

.links a:active {
  color: orange;
}

.buttonLink {
  background-color: #008365;
  color: #00EFFF;
  border-radius: 4px;
  font-size: 1em;
  /* font-family: 'Orbitron'; */
  transition-duration: 0.4s;
}

button:hover {
  background-color: #00bd92;
  color: coral;
}

button:active {
  background-color: #00ff38;
  color: orange;
}

#instagram {
  color: rgb(12, 23, 74);
  text-align: center;
  margin: 0 auto;
}

#boldifier {
  font-size: 25px;
  font-weight: bold;
}

/* to actually modify the frame of the sketchfab div */
#sew {
  width: 100%;
  height: 80vh;
}

.videoFrame {
  width: 640px;
  height: 360px;
}

.pLeft {
  text-align: left;
}

.gallery {
  margin-top: 20px;
}

.gallery2 {
  white-space: nowrap;
  /* display: block;
  margin-left: 12.5%;
  width: 50%; */
  /* display: table-cell; */
  text-align: center;
}

.flexGallery {
  display: flex;
  justify-content: space-evenly;
  padding-bottom: 64px;
}

.flexGallery2 {
  display: flex;
  align-items: center;
  padding-bottom: 64px;
}

.leftColumn {
  float: left;
  text-align: left;
  margin: auto;
}

.rightColumn {
  float: right;
  text-align: left;
  margin: auto;
}

.dma_statement {
  line-height: 36px;
}

.dma_statement span {
  display: block;
  margin-top: 12px;
}

.shortcut {
  cursor: pointer;
}

#pfp {
  border-radius: 75px;
}

.bio {
  margin: 16px 208px;
  text-align: center;
}

.columns {
  display: flex;
}

#glitchWall {
  background-image: url(../media/GlitchBackground.png);
}

.WPBlog {
  text-align: left;
  margin-left: 12.5%;
  margin-right: 12.5%;
}

.WPBlog p {
  text-indent: 40px;
}

.WPBlog img {
  margin-left: 7%;
}

.site-nav .menu-button {
  position: relative;
  background-color: transparent;
  color: #00EFFF;
  z-index: 100;
  border: none;
  padding: 1rem;
  /* border-radius: var(--border-radius); */
  /* no need pointer because mobile doesn't feature mouse cursor */
  /* cursor: pointer; */
  /* transition: background-color 0.4s ease; */
}
.site-nav .menu-button svg {
  fill: #00EFFF;
}

.row > * {
  margin-block: 1rem;
  padding: 1rem;
  text-align: center;
}

section {
  padding-block: 2rem;
}

/* SEMANTIC COLUMNS */
/* auto is like filling in the end column-width? */
.one-half {
  grid-column: auto/span 6;
}
.one-half img {
  width: 525px;
  height: auto;
  aspect-ratio: auto;
}
.one-half img[data-page=main] {
  width: 525px;
  height: auto;
  aspect-ratio: 3/2;
  border-radius: 8px;
  border: 0.25rem solid transparent;
  transition: transform 0.4s ease-in-out, border-color 0.4s ease-in-out, border-style 0.4s ease-in-out;
}
.one-half img[data-page=main]:hover {
  transform: scale(1.03125);
  border-style: solid;
  border-color: coral;
}

.one-third {
  grid-column: auto/span 4;
}
.one-third img {
  width: 350px;
  height: auto;
  aspect-ratio: auto;
}
.one-third img[data-page=main] {
  width: 350px;
  height: auto;
  aspect-ratio: 3/2;
  border-radius: 8px;
  border: 0.25rem solid transparent;
  transition: transform 0.4s ease-in-out, border-color 0.4s ease-in-out, border-style 0.4s ease-in-out;
}
.one-third img[data-page=main]:hover {
  transform: scale(1.03125);
  border-style: solid;
  border-color: coral;
}

.two-thirds {
  grid-column: auto/span 8;
}

.one-fourth {
  grid-column: span 3;
}

.three-fourths {
  grid-column: auto/span 9;
}

.one-whole {
  grid-column: 1/-1;
}
.one-whole img {
  width: 700px;
  height: auto;
  aspect-ratio: auto;
}
.one-whole img[data-page=main] {
  width: 700px;
  height: auto;
  aspect-ratio: 3/2;
  border-radius: 8px;
  border: 0.25rem solid transparent;
  transition: transform 0.4s ease-in-out, border-color 0.4s ease-in-out, border-style 0.4s ease-in-out;
}
.one-whole img[data-page=main]:hover {
  transform: scale(1.03125);
  border-style: solid;
  border-color: coral;
}
.one-whole video {
  width: 700px;
  height: auto;
  aspect-ratio: auto;
}

/* 12 COLUMN CLASS-BASED GRID SYSTEM */
.col-1 {
  grid-column: auto/span 1;
}

.col-2 {
  grid-column: auto/span 2;
}

.col-3 {
  grid-column: auto/span 3;
}

.col-4 {
  grid-column: auto/span 4;
}

.col-5 {
  grid-column: auto/span 5;
}

.col-6 {
  grid-column: auto/span 6;
}

.col-7 {
  grid-column: auto/span 7;
}

.col-8 {
  grid-column: auto/span 8;
}

.col-9 {
  grid-column: auto/span 9;
}

.col-10 {
  grid-column: auto/span 10;
}

.col-11 {
  grid-column: auto/span 11;
}

.col-12 {
  grid-column: auto/span 12;
}

/* PUSHED */
.push-1 {
  grid-column-start: 2;
}

.push-2 {
  grid-column-start: 3;
}

.push-3 {
  grid-column-start: 4;
}

.push-4 {
  grid-column-start: 5;
}

.push-5 {
  grid-column-start: 6;
}

.push-6 {
  grid-column-start: 7;
}

.push-7 {
  grid-column-start: 8;
}

.push-8 {
  grid-column-start: 9;
}

.push-9 {
  grid-column-start: 10;
}

.push-10 {
  grid-column-start: 11;
}

.push-11 {
  grid-column-start: 12;
}

.push-12 {
  grid-column-start: 13;
}

@media (width >= 768px) {
  .site-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    flex-wrap: wrap;
  }
  .menu-button {
    display: none;
  }
  .row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
  }
}
@media (width < 768px) {
  .site-nav .menu-button {
    display: block;
    top: 0;
    right: 0;
  }
  .site-nav ul {
    display: none;
  }
  .site-nav[data-menustate] ul {
    display: grid;
    align-content: center;
    position: fixed;
    top: -5%;
    right: 0;
    width: 100svw;
    height: 105%;
    background: #131722;
    list-style: none;
    gap: 2rem;
  }
  /* show the menu when data-menustate is open */
  .site-nav[data-menustate=open] ul {
    /* menu does not move (menu shown must be its original position) */
    animation: moveDown 0.667s forwards;
  }
  .one-half {
    grid-column: auto/span 6;
  }
  .one-half img {
    width: 350px;
    height: auto;
    aspect-ratio: auto;
  }
  .one-half img[data-page=main] {
    width: 350px;
    height: auto;
    aspect-ratio: 3/2;
    border-radius: 8px;
    border: 0.25rem solid transparent;
    transition: transform 0.4s ease-in-out, border-color 0.4s ease-in-out, border-style 0.4s ease-in-out;
  }
  .one-half img[data-page=main]:hover {
    transform: scale(1.03125);
    border-style: solid;
    border-color: coral;
  }
  .one-whole {
    grid-column: auto/span 1;
  }
  .one-whole img {
    width: 350px;
    height: auto;
    aspect-ratio: auto;
  }
  .one-whole img[data-page=main] {
    width: 350px;
    height: auto;
    aspect-ratio: 3/2;
    border-radius: 8px;
    border: 0.25rem solid transparent;
    transition: transform 0.4s ease-in-out, border-color 0.4s ease-in-out, border-style 0.4s ease-in-out;
  }
  .one-whole img[data-page=main]:hover {
    transform: scale(1.03125);
    border-style: solid;
    border-color: coral;
  }
  .one-whole video {
    width: 500px;
    height: auto;
    aspect-ratio: auto;
  }
  .site-nav[data-menustate] .simple-navicon rect {
    transition: all 0.4s ease;
    /* make the transform pivot center of the svg's bounding box */
    transform-origin: center;
    /* increase the width of the svg's bounding box */
    width: 100%;
    /* height: 4px; */
  }
  /* use "open" so tyhe menu icon doesn't stick upon scrolling within close state */
  .site-nav[data-menustate=open] .simple-navicon {
    /* used to keep the menu icon on the similar position */
    position: fixed;
    /* make the position of the menu icon look nicer */
    top: 2rem;
    right: 2rem;
  }
  .site-nav[data-menustate=open] .simple-navicon-top {
    rotate: 45deg;
    /* 10% of the rect width to the left, 20% of the rect height downward */
    translate: -10% 20%;
  }
  .site-nav[data-menustate=open] .simple-navicon-middle {
    opacity: 0;
  }
  .site-nav[data-menustate=open] .simple-navicon-bottom {
    rotate: -45deg;
    translate: -10% -25%;
  }
  .site-nav[data-menustate=closed] ul {
    /* menu moves 100% of its height upward */
    animation: moveUp 0.667s forwards;
  }
  @keyframes moveDown {
    from {
      translate: 0 -100%;
    }
    to {
      translate: 0 0;
    }
  }
  @keyframes moveUp {
    to {
      translate: 0 -100%;
    }
  }
}
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  padding: 1rem;
  padding-inline: 1rem;
  gap: 1rem;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  flex-wrap: wrap;
}
.site-header .logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.site-header .logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  color: #00EFFF;
}
.site-header .logo a span {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
  padding: 0;
}
.site-header .logo svg {
  vertical-align: middle;
  width: 50px;
  height: auto;
  min-width: 50px;
  max-height: 50px;
}

.site-header + .site-main {
  padding-block-start: 4rem;
}

.site-footer {
  background-color: #131722;
  padding-block: 6rem;
  padding-inline: 1rem;
  width: 100%;
  /* remove footer padding if it has a container */
}
.site-footer ul {
  list-style: none;
  padding-left: 0;
  line-height: 2;
}
.site-footer:has(.container) {
  padding-inline: 0;
}

.container {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 1rem;
  text-align: left;
}

.swiper-slide {
  padding: 8px;
}
.swiper-slide img {
  width: 350px;
  height: auto;
  aspect-ratio: auto;
}
.swiper-slide img[data-page=main] {
  width: 350px;
  height: auto;
  aspect-ratio: 3/2;
  border-radius: 8px;
  border: 0.25rem solid transparent;
  transition: transform 0.4s ease-in-out, border-color 0.4s ease-in-out, border-style 0.4s ease-in-out;
}
.swiper-slide img[data-page=main]:hover {
  transform: scale(1.03125);
  border-style: solid;
  border-color: coral;
}
.swiper-slide img {
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-pagination-bullet {
  background-color: #00ff38 !important;
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
  background-color: rgb(255, 255, 255) !important;
  opacity: 0.4;
}

.swiper {
  height: 275px;
}/*# sourceMappingURL=style.css.map */