/* General Reset */
body, html {
  margin: 0;
  padding: 0;
  color: rgb(255, 255, 255);
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  background: none;
  height: auto;
  min-height: 100vh;
  max-height:max-content;
}

#mainSiteContent {
  display: none;
}

#comingSoon {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  background-image: url(images/skelespidah.png);
  background-size:cover;
  background-position:top center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: monospace;
  text-align: center;
}

body::after {
  content: "";
  display: block;
  height: 1px;
  clear: both;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.scale-wrapper {
  width: 100%;
  overflow: visible;
  position: relative;
}

/* Squished text + pixel rendering + stroke */
h1, h2, h3, h4, h5, h6, p, a, span, li, label, blockquote {
  display: inline-block;
  transform: scaleY(0.6);
  transform-origin: top;
  -webkit-font-smoothing: none;
  image-rendering: pixelated;
    text-shadow:
     -3px -3px 0 #000,  /* top-left */
     3px -3px 0 #000,  /* top-right */
    -3px  3px 0 #000,  /* bottom-left */
     3px  3px 0 #000,  /* bottom-right */
     0px  0px 3px rgba(0, 0, 0, 0.8); /* soft shadow */
     font-weight: 400;
}

.parallax-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 200vh; /* go huge to cover long scrolls */
  background: url("images/background-brick.png") center/cover repeat-y;
  z-index: -3;
  pointer-events: none;
}

.parallax-bg-about {
  background-image: url("images/background-about.png");
  background-repeat: repeat; /* repeats in both x and y */
  background-position: top left;
  background-size: 3000px 3000px; /* use actual image size for perfect tiling */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  z-index: -3;
  will-change: transform;
}

.parallax-bg-contact {
  background-image: url("images/bgmetal.png");
  background-repeat: repeat; /* repeats in both x and y */
  background-position: top left;
  background-size: 3000px 3000px; /* use actual image size for perfect tiling */

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  z-index: -3;
  will-change: transform;
}

.parallax-bg-shop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 400vh; /* go huge to cover long scrolls */
  background: url("images/background-metalbubble.png") center/cover repeat-y;
  z-index: -3;
  pointer-events: none;
}


.parallax-bg-terms {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 400vh; /* go huge to cover long scrolls */
  background: url("images/background-brick-mossy.png") center/cover repeat-y;
  z-index: -3;
  pointer-events: none;
}

/* HEADER */
header {
  position: relative;
  height: 250px;
}

.nav-chain {
  position: relative;
  height: 100%;
}
/*
.nav-chain::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
  background: url("images/chain-header.png") no-repeat center center;
  background-size: cover;
  z-index: 0;
  pointer-events: none;
  will-change: transform;

}
*/
.chain-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%; /* or whatever fits your design */
  object-fit: cover;
  z-index: 0;
  pointer-events: none; /* so it doesn't block clicks */
}

@keyframes wiggle {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(2deg); }
  50% { transform: rotate(-2deg); }
  75% { transform: rotate(2deg); }
  100% { transform: rotate(0deg); }
}
@keyframes wiggleAndScale {
  0%   { transform: scale(1) rotate(0deg); }
  25%  { transform: scale(1.1) rotate(2deg); }
  50%  { transform: scale(1.1) rotate(-2deg); }
  75%  { transform: scale(1.1) rotate(2deg); }
  100% { transform: scale(1.1) rotate(0deg); }
}

@keyframes scale {
  0%   { transform: scale(1); }
  25%  { transform: scale(1.1); }
  50%  { transform: scale(1.1); }
  75%  { transform: scale(1.1); }
  100% { transform: scale(1.1); }
}

.nav-links a img {
  width: 300px; /* adjust as needed */
  height: 320px;
  image-rendering: pixelated;
  display: block;
    transition: transform 0.2s ease 0.3s;
}
.nav-links a img:hover {
  animation: wiggleAndScale 0.3s ease-in-out;
    transform: scale(1.1);

  filter: drop-shadow(0 0 6px white);
}
/*
.nav-links {
  position: absolute;
  top: 30px;
  left: 40px;
  display: flex;
  gap: 30px;
  z-index: 1;

.logo-wrapper {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 2; 
   transform: scale(1.83);
  transform-origin: top right;
image-rendering: smooth !important;
}*/

/* this is new code */
.nav-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 30px 40px;
  height: 100%;
  z-index: 1;
}

.nav-links {
  display: flex;
  gap: 30px;
}
/*
.logo-wrapper {
  transform: scale(1.6);
  transform-origin: top right;
  image-rendering: smooth !important;
}


.logo-wrapper a {
  transform: none !important;
  image-rendering: smooth !important;
}
.logo {
  width: 300px;
  height: auto;
  display: block;
  margin-left:150px;
  image-rendering: auto !important;
}
*/
.logo-wrapper {
  width: fit-content;
  height: fit-content;
  transform: scale(1.6);
  transform-origin: top right;
  image-rendering: smooth !important;
  pointer-events: auto; /* just in case */
}

.logo-wrapper a {
  display: block;
  width: fit-content;
  height: fit-content;
  overflow: visible;
}

.logo {
  width: 300px;
  height: 300px;
  display: block;
  margin-left: 0; /* remove if overlapping */
  image-rendering: auto !important;
}


.logo:hover {
  animation: wiggle 0.3s ease-in-out;
}


/* HERO SECTION */
.hero {
  text-align: center;
  padding: -100px, 0;
}

.heroart {
  text-align: center;
  font-size: 96px; /* adjust as needed */
  font-weight: bold;
  margin-top: -50px; 
  margin-bottom: -150px;
}

.hero-gif {
  max-width: 800px;
  width: 90%;
  image-rendering: smooth;
  display: block;
  margin: 0px auto;
}

.hero h1 {
  position: relative;
  top: -160px; /* move up */
  font-size: 64px;
  
  text-shadow:
    -3px -3px 0 #000,  /* top-left */
     3px -3px 0 #000,  /* top-right */
    -3px  3px 0 #000,  /* bottom-left */
     3px  3px 0 #000,  /* bottom-right */
     0px  0px 3px rgba(0, 0, 0, 0.8); /* soft shadow */
     
}
/*
.artcore-wrapper {
  position: relative;
  top: -150px;
    z-index: 0;
}

.artcore-border {
  position: absolute;
  overflow: visible; 
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 5;
  pointer-events: none; 
}
*/

.artcore-wrapper {
  position: relative;
  z-index: 0;
  padding: 60px 20px;
  margin-top:-180px;
  margin-bottom:160px;
    overflow: visible;

}

.artcore-border {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 10; /* sits on top */
  pointer-events: none;
}

.artcore-border-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* FEATURED ART */
.featured-art {

  padding: 0px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.artcore-bg {
  position: absolute;
  inset: 0;
  background: url("images/artcore-guts.webp") center/cover no-repeat;
  z-index: 0;
  pointer-events: none;
}

.featured-art h2 {
position: relative;
top: -30px;
  font-size: 132px;
  margin-bottom: -500px;
  text-shadow:
    -5px -5px 0 #000,  /* top-left */
     5px -5px 0 #000,  /* top-right */
    -5px  5px 0 #000,  /* bottom-left */
     5px  5px 0 #000,  /* bottom-right */
     0px  0px 3px rgba(0, 0, 0, 0.8); /* soft shadow */
}

.art-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* use fractional units */
  gap: 100px;
  justify-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  overflow: visible;
}

.art-grid-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.art-piece {
  width: 280px;
  text-align: center;
  transition: transform 0.3s ease-out;
  transform-origin: center;
  will-change: transform;
  overflow: visible;

}

.art-piece img:hover {
  transform: scale(1.07);
  transition: transform 0.3s ease-in-out;
  transform-origin: center center; /* <---- this line matters most */
}


.art-piece img {
  width: 100%;
  border: 2px solid white;
  image-rendering: auto;
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.8); /* Drop shadow */
  transition: transform 0.3s ease-out;
}
.art-piece a {
  text-decoration: none;
  transform:none !important;
  color: inherit;
  display: inline-block;
  text-align: center;
  
}

.art-piece p {
  margin-top: 10px;
  font-size: 39px;
  text-shadow:
    -3px -3px 0 #000,  /* top-left */
     3px -3px 0 #000,  /* top-right */
    -3px  3px 0 #000,  /* bottom-left */
     3px  3px 0 #000,  /* bottom-right */
     0px  0px 3px rgba(0, 0, 0, 0.8); /* soft shadow */
}

.art-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  padding: 60px 20px;
}
/*
@media (max-width: 1900px) {
  .art-grid {
    grid-template-columns: repeat(4, 240px);
    gap: 130px;
  }

  .art-piece {
    width: 240px;
  }
}
*/
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: none;
}

.art-page {
  background-size: cover;
  background-image: url(images/sky.webp);
  background-position:center;
  min-height: 100vh;
  width: 100%;
  box-sizing: border-box;
  border: none;
  overflow: hidden;
}
.art-tile {
  width: 45%;
  text-align: center;
}

.art-tile a {
  transform: none;
}

.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
  cursor: grab;
}

.lightbox:active {
  cursor: grabbing;
}

.lightbox-content {
  width: 80%;
  height: 80%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform-origin: center center;
  transition: transform 0.1s ease;
}

.art-tile img {
  width: 100%;
  height: auto;
  display: block;
  image-rendering: pixelated;
  box-shadow: 8px 8px 24px rgba(0, 0, 0, 0.8);
  border: 2px solid white;
}

.art-tile p {
  margin-top: 12px;
  font-size: 39px;
  text-shadow:
    -3px -3px 0 #000,  /* top-left */
     3px -3px 0 #000,  /* top-right */
    -3px  3px 0 #000,  /* bottom-left */
     3px  3px 0 #000,  /* bottom-right */
     0px  0px 3px rgba(0, 0, 0, 0.8); /* soft shadow */
}

.artlogo {
  animation: wiggle 1.5s infinite ease-in-out;
}

.lightbox-close {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: auto;
  cursor: pointer;
  z-index: 10000;
  image-rendering: pixelated;
  transition: transform 0.2s ease;
}

.lightbox-close:hover {
  transform: translateX(-50%) scale(1.3); /* 👈 grow to 130% on hover */
}

.blog-post {
  display: flex;
  flex-wrap: wrap; /* Let content wrap on small screens */
  gap: 40px;
  max-width: 1000px;
  margin: 40px auto; /* Less vertical margin */
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.65);
  border: 2px solid #fff;
  box-shadow: 0 0 20px black;
  color: white;
  font-family: Arial, sans-serif;
}

.post-image img {
  width: 300px;
  height: auto;
  border: 2px solid white;
  image-rendering: auto;
}

.post-content {
  flex: 1;
}

.post-content > *:last-child {
  margin-bottom: 0 ;
}

.post-title {
  font-size: 42px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 5px black;
}

.post-date {
  text-shadow:2px 2px 5px black;
  font-size: 25px;
  color: #ccc;
  margin-bottom: 20px;
}

.post-content p {
  font-size: 23px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.latest-blogs {
  max-width: 1200px;
  margin: -50px auto;
  margin-bottom:80px;
  padding: 0 20px;
  text-align: center;
  
}

.latest-blogs-bg {
  position: relative;
  width: 100vw;              /* Full viewport width */
  left: 50%;
  right: 50%;
  margin-left: -50vw;        /* Cancel out container centering */
  margin-right: -50vw;
  padding: 40px 0;
  background: url("images/blog-wastenew.webp") center/cover repeat-y;
  z-index: 0;
  image-rendering: smooth !important;
  overflow: hidden;
}

.latest-title {
  font-size: 60px;
  margin-bottom: 40px;
  text-shadow: 2px 2px 6px black;
  transform: scaleY(0.6);
    text-shadow:
    -5px -5px 0 #000,  /* top-left */
     5px -5px 0 #000,  /* top-right */
    -5px  5px 0 #000,  /* bottom-left */
     5px  5px 0 #000,  /* bottom-right */
     0px  0px 3px rgba(0, 0, 0, 0.8); /* soft shadow */
}

.blog-preview-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.blog-preview {
  width: 300px;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 20px;
  border: 2px solid white;
  text-decoration: none;
  color: white;
  transition: transform 0.2s ease;
}

.blog-preview:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 20px rgba(200, 255, 0, 0.9),
    0 0 40px rgba(200, 255, 0, 0.8),
    0 0 80px rgba(200, 255, 0, 1),
    0 0 80px rgb(0, 0, 0);
}

.blog-preview img {
  width: 100%;
  height: auto;
  border: 2px solid white;
  margin-bottom: 15px;
  image-rendering: pixelated;
}

.blog-preview h3 {
  font-size: 22px;
  margin: 10px 0 5px;
}

.blog-preview p {
  font-size: 20px;
  color: #ccc;
}

.about-section {
  padding: 80px 40px;
  color: white;
  text-align: left;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  flex: 1 1 400px;
  font-size: 30px;
  line-height: 1.3;
  text-shadow: 2px 2px 6px black;
}

.about-text a {
  color: white;
  text-decoration: underline;       /* constant underline */
  text-decoration-thickness: 2px;   /* make it thicker (optional) */
  text-underline-offset: 3px;       /* space between text and line */
  transform: none !important;
  display: inline-block;
}

.about-text a:hover {
  color: #ffcc00;              /* optional hover color */
  text-decoration: underline;  /* optional hover underline */
}

.about-text p {
  margin-top: -0px;
  margin-bottom: -1000px;
}

.about-title {
  font-size: 60px;
  margin-bottom: -40px;
  transform: scaleY(0.6);
  text-shadow:
    -4px -4px 0 #000,
     4px -4px 0 #000,
    -4px  4px 0 #000,
     4px  4px 0 #000;
}

.about-image {
  flex: 1 1 50px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  image-rendering: pixelated;
  border: 4px solid white;
  box-shadow: 6px 6px 18px rgba(0, 0, 0, 0.7);
}

.insta-row {
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.shop-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.shop-item {
  background-color: rgba(0, 0, 0, 0.7);
  border: 2px solid white;
  padding: 20px;
  transition: transform 0.2s ease;
  text-shadow: 1px 1px 3px black;
}

.shop-item img {
  width: 100%;
  image-rendering: pixelated;
  border: 1px solid #fff;
  box-shadow: 4px 4px 20px rgba(0, 255, 100, 0.6);
}

.shop-item h3 {
  margin-bottom: 10px;
}

.shop-item p {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.2;
}

.shop-item a {
  display: inline-block;
  padding: 8px 16px;
  background-color: #00ff7f;
  color: black;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
}

.shop-item h3,
.shop-item p,
.shop-item a {
  display: block;
  text-align: center;
  margin: 10px 0;
}

.shop-item:hover {
  transform: scale(1.05);
  box-shadow: 0px 0px 40px lime;
}

.shop-btn {
  display: inline-block;
  padding: 8px 16px;
  background-color: #00ff7f;
  color: black;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  text-align: center;
  font-family: Arial, sans-serif;
  text-shadow: none;
  transform: none;
  image-rendering: auto;
}

.terms-section {
  padding: 80px 20px;
  color: white;
  text-align: center;
}

.terms-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  font-size: 33px; /* bigger */
  line-height: 1.5; /* tighter */
  text-shadow: 1px 1px 3px black;
}

.terms-container p {
  margin-bottom: 20px; /* less gap between sections */
}

.terms-title {
  text-align: center;
  font-size: 60px;
  font-weight: bold;  /* <- this makes it bold */
  margin-bottom: 30px;
  transform: scaleY(0.6);
  text-shadow:
    -4px -4px 0 #000,
     4px -4px 0 #000,
    -4px  4px 0 #000,
     4px  4px 0 #000;
}

.terms-footer {
  font-style: italic;
  margin-top: 60px;
}

.terms-container a {
  color: #76cf42;
  text-decoration: underline;
  transform: none !important;
}

/* FOOTER */
footer {
  width: 100%;
  height: 550px;
  background-image: url("images/firefooter.webp");
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: auto 100%;
  position: relative;
  text-align: center;
  margin-top: 100px;
  z-index: 10;
  overflow: hidden;
}

.footer-links {
  position: absolute;
  bottom: 60px; /* Adjust this to float the links above the flames */
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 80px;
  z-index: 2;
}

.footer-links a {
  text-decoration: none;
  color: white;
  font-size: 100px;
  text-shadow:
    -5px -5px 0 #000,
     5px -5px 0 #000,
    -5px  5px 0 #000,
     5px  5px 0 #000,
     0px  0px 3px rgba(0, 0, 0, 0.8);
}

.footer-links a:hover {
  color: red;
}

.copyright {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 5;
}
/* 
@media (max-width: 1900px) {
  .nav-content {
    transform: scale(.83);
    transform-origin: top left;
    width: max-content;
  }

  .nav-chain {
    overflow: hidden;
  }
}

@media (max-width: 1900px) {
  .logo-wrapper {
    max-width: 300px; 
    max-height: 180px; 
    overflow: visible;
    margin-left:-100px;
  }

  .logo-wrapper a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin-left:0px;
  }

  .logo {
    width: 100%;
    height: auto;
    display: block;
  }
}*/
@media (max-width: 1900px) {
  .nav-content {
    width: 100%;
    transform: scale(0.83);
    transform-origin: top left;
    justify-content: space-between;
    padding: 30px 20px;
  }

  .logo-wrapper {
    transform: scale(0.6); /* visually shrink the logo */
    transform-origin: top right;
    width: fit-content;
    height: auto;
    margin-right: 0;
    overflow: visible; /* crop any excess */
  }

  .logo-wrapper a {
    display: block;
    width: 100%;
    height: auto;
  }

  .logo {
    width: 700px;
    height: 700px;
    margin-left:-300px;
    display: block;
    overflow:visible!important;
  }
}

@media (max-width: 1300px) {
  .nav-content {
    width: 100%;
    transform: scale(0.73);
    transform-origin: top left;
    justify-content: space-between;
    padding: 30px 20px;
  }

  .artcore-wrapper {
  transform:scale(.8);
  transform:scaleX(1);
  transform-origin:center;
}
.art-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* use fractional units */
  gap: 100px;
  justify-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  overflow: visible;
}

.art-grid-wrapper {
  transform:scale(.8);
  margin-left:-100px;
  transform-origin:center;
  display: flex;
  justify-content: center;
}
  .logo-wrapper {
    transform: scale(0.6); /* visually shrink the logo */
    transform-origin: top right;
    width: fit-content;
    height: auto;
    margin-right: 0;
    overflow: visible; /* crop any excess */
  }

  .logo-wrapper a {
    display: block;
    width: 100%;
    height: auto;
  }

  .logo {
    width: 700px;
    height: 700px;
    margin-left:-300px;
    display: block;
    overflow:visible!important;
  }
}

@media (max-width: 768px) {
  .scale-wrapper {
    transform: scale(0.3);
    transform-origin: top left;
    width: max-content;
     height: 100vh;

  }
   body, html {
   height: auto !important;
    min-height: 100vh;
    overflow-x: hidden !important;
    overflow-y: auto !important;
  }

  .art-gallery {
    display: grid;
    grid-template-columns: repeat(2, auto); /* 2 columns, fit content */
    justify-content: center;
    gap: 100px;
    padding: 20px;
  }

  .art-tile {
    width: 750px;       /* small, fixed width */
    margin: 0 auto;      /* center each tile */
  }

  .art-tile img {
    width: 100%;         /* scale with .art-tile width */
    height: auto;
  }

  .art-tile p {
    font-size: 20px;
    text-align: center;
  }

.art-grid-wrapper {
  transform:scale(1);
  margin-left:0px;
  transform-origin:center;
  display: flex;
  justify-content: center;
}
.parallax-bg,
  .parallax-bg-about,
  .parallax-bg-contact,
  .parallax-bg-shop
   {
    height: 400vh;
    background-size: auto 100%;
    background-repeat: repeat-y;
    background-position: top center;
    background-attachment: scroll !important;
    position: absolute !important;
    transform: none !important;
  }

  .parallax-bg-terms{
    height:1000vh;
    background-repeat: repeat;
  }
.blog-preview-grid {
  margin-top:100px;
  transform:scale(1.3);
}

.latest-blogs-bg {
  position: relative;
  width: 400vw;              /* Full viewport width */
  left: 50%;
  right: 50%;
  margin-left: -200vw;        /* Cancel out container centering */
  margin-right: -50vw;
  padding: 40px 0;
  background: url("images/blog-wastenew.webp") center/cover repeat-y;
  z-index: 0;
  image-rendering: smooth !important;
  overflow: hidden;
}

.latest-title{
  transform: scaleX(1.5);
}
.copyright{
  transform:scale(1.5);
}

  .body {
    overflow-x: hidden;
  }

  .footer {
  margin-left:0px;
  transform:scale(3);
  transform-origin:center;
}

.art-tile p {
  font-size:80px;
}

.blog-post{
  transform:scale(1.5);
  margin-bottom:500px;
}

.blog-contain{
  margin-top:350px
}

.post-content p{
  font-size:40px;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 400vw;
    height: 400vh;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
    transform: none !important;
  }

  .lightbox.visible {
  display: flex;
}

  .lightbox-content {
    width: 90%;
    height: 90%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: none;
  }

.lightbox-close{
  transform:scale(5);
  margin-bottom:500px;
}

.about-section {
  transform:scale(1.4);
  transform-origin:center;
}

.terms-container {
  transform: translateY(600px);
  margin-bottom:300px;
}

.terms-container p{
  font-size:80px;
  margin-top:-400px;
  margin-bottom:80px;
}

}

@media (max-width: 480px) {
  .scale-wrapper {
    transform: scale(0.25);
    
  }
  .nav-content {
    width: 100%;
    transform: scale(1);
    transform-origin: top left;
    justify-content: space-between;
    padding: 30px 20px;
  }
}

