/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/*home page stuff*/

.logo {
  display: flex;
  align-items: center; /* keeps them vertically aligned*/
  justify-content: center; /* centers on page*/
  gap: 2px;
  flex-wrap: nowrap;
  max-width: 100%;
}

.logo img{
  width: auto;
  max-width:100%;
  flex-shrink: 1;
  min-width: 0;
  transition: transform 0.2s ease, filter 0.2s ease;
 }
 
 @keyframes logo-idle {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(0.5px, -0.5px); }
  100% { transform: translate(0, 0); }
}

@keyframes logo-jitter {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(2px, -1px); }
  40%  { transform: translate(-1px, 2px); }
  60%  { transform: translate(2px, 1px); }
  80%  { transform: translate(-2px, -1px); }
  100% { transform: translate(0, 0); }
}
  
 .logo-center:hover {
  animation: logo-jitter 0.55s steps(2) infinite;
                
               /*transition: translateY(-4px) rotate(-2deg);
               filter: contrast(130%) brightness(120%);*/
 }
 
.logo-left,
.logo-right {
  height: 10vw;
  width: auto;
  max-height: 110px;
  min-height: 40px;
}

.logo-center{
  height: 14vw;
  max-height: 160px;
  min-height: 60px;
  width: auto;
  animation: logo-idle 2s steps(2) infinite;
}

@keyframes star-jitter {
  0%   { transform: translate(0, 0) rotate(0deg); }
  50%  { transform: translate(4px, -3px) rotate(3deg); }
  100% { transform: translate(-4px, 3px) rotate(3deg); }
  }
#star-home {
  display: block;
  margin: 0 auto 20px auto;
  width: 40vw;
  max-width: 600px;
  min-width: 200px;
  height: auto;
  animation: star-jitter 1s steps(1) infinite;
}

.star-wrapper {
    position: relative;
   width: fit-content;
    margin: 20px auto 0;
  }
  
#star-home {
  display: block;  
  max-width: 90vw;
  height: auto;
  }
  
/* -----------------------all logos --------------------------------------*/

.star-link {
    position: absolute;
    transform: translate(-50%, -50%); 
  }

.star-link img {
    width: clamp(40px, 6vw, 80px);
    height: auto;
    transition: transform 0.15s steps(2);
  }
  
.about-link img {
    width: 22vw;
   
  }
  
.zines-link img {
    width: 22vw;
    
  }
  
.blog-link img {
    width: 17vw;
   
  }

.articles-link img {
  width: 29vw;
}
  
.about-link img,
.zines-link img,
.blog-link img,
.articles-link {
    transition: transform 0.2s steps(2), filter 0.2s ease;
  }
  
.about-link img:hover,
.zines-link img:hover,
.blog-link img:hover,
.articles-link img:hover {
    transform: scale(1.05);
    filter: 
    brightness(120%) contrast(120%) drop-shadow(0 0 6px rgba(255,255,255,0.8)) drop-shadow(0 0 12px rgba(255,255,255,0.6));
  }

.top-right { top: 37%; left: 137%;}
.bottom-right { top: 105%; left: 95%;}
.bottom-left { top: 103%; left: 6%;}
.top-left { top: 49%; left: -21%;}

.inseam-wrapper {
  width: 100%;
  height: 60px; /* controls thickness of the seam strip */

  background-image: url("inseam.svg");
  background-repeat: repeat-x;   /* repeats horizontally */
  background-position: center;   /* keeps it vertically centered */
  background-size: auto 100%;    /* scale to wrapper height */

  margin: 130px 0;
  box-shadow: 
    inset 0 2px 0 rgba(0,0,0,0.25),
    inset 0 -2px 0 rgba(0,0,0,0.15);
    
  transform: rotate(-0.2deg);
}

/*--------------------pin buttons--------------------------------------*/

.jean-pin {
  position: absolute;
  transform: translate(-50%, -50%) rotate(var(--rot, 0deg));
  animation: pin-wobble 2s steps(2) infinite;
}

.jean-pin img {
  width: 6vw;
  max-width: 90px;
  min-width: 50px;
  filter: drop-shadow(0 6px 6px rgba(0,0,0,0.5));
  transition: transform 0.15s ease;
}

.jean-pin img:hover {
  transform: scale(1.08) translateY(2px);
}

.guest-btn img {
  width: 14vw;
  max-width: 400px;
  min-width: 45px;
  height: auto;
}

.submit-btn img { 
  width: 12vw;
  max-width: 510px;
  min-width: 45px;
}

.insta-btn img {
  max-width:90px
}

.palestine-btn img {
  width: 9vw;
}

.guest-btn {
  top: 20%;
  left: -45%;
  --rot: -28deg; 
}

.submit-btn {
  top: 83%;
  right: -52%;
  --rot: -2deg;
}

.insta-btn {
  bottom: 25%;
  right: -50%;
  --rot: 40deg;
}

.palestine-btn {
  top: 85%;
  right: -65%;
  --rot: -2deg;
}

/*---------------------------- submit --------------------------------------------*/
.submit-layout {
  position: relative;
  width: 100%;
  height: 320px;
  margin-top: 40px;
}

.submit-header {
  display: flex;
  align-items: center;
  justify-content:center;
  position: relative;
}

.submit-title {
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.submit-title img {
  width: 70vw; 
  max-width: 1000px;
  min-width: 470px;
}

.back-btn {
  position: absolute;
  top: 20px;
  left: 40px;
  width: 10%;
  z-index: 3;
}

.back-btn:hover {
  transform: scale(1.15);
  animation: btn-jitter 1s steps(1) infinite;
}

.eyeball-png {
  position: absolute;
  top: 20px;
  right: 60px;
  width: 10%;
  z-index: 3;
}

.star-face {
  position: absolute;
  bottom: 90px;
  left: 65px;
  width: 15%;
  z-index: 1;
}

.luna {
  position: absolute;
  bottom: 80px;
  right: 70px;
  width: 11%;
  z-index: 1;
}

.luna:hover {
  cursor: normal;
}

@keyframes btn-jitter {
  0%   { transform: scale(1.15) translate(0, 0) rotate(0deg); }
  50%  { transform: scale(1.15) translate(4px, -3px) rotate(12deg); }
  100% { transform: scale(1.15) translate(-4px, 3px) rotate(-48deg); }
  }

.message-page {
  background-image: url(images/wall-bg2.gif);
  background-size: 450px;
}

.submission-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 140px 20px 80px;
}

.submission-section p {
  margin-top: 80px;
  margin-bottom: 40px;
  text-align: center;
  max-width: 500px;
  font-size: 22px;
  font-family: "p22-folk-art-block", sans-serif;
  color: white;
}

#submission-form {
  width: min(500px, 90vw);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#submission-form input,
#submission-form textarea {
  border: 1px solid black;
  padding: 12px;
  font-family: "p22-folk-art-block", sans-serif;
  font-size: 14px;
  outline: none;
}

#submission-form textarea {
  min-height: 100px;
  resize: vertical;
}

#submission-form button {
  background: black;
  color: white;
  border: none;
  padding: 12px;
  cursor: pointer;
  font-family: "p22-folk-art-block", sans-serif;
  font-size: 14px;
}

#submission-form button:hover {
  background: #ff7a00;
  color: black;
}
  
/*---------------------------------------sidebar nav---------------------------------------*/

.innerpage {
  margin: 0;
  padding: 0;
}

.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  z-index: 10;
}

.zipper-bg {
  height: 100vh;
  width: auto;
  display: block;
  z-index: 1;
}


.sidebar-content {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center; 
}

.sidebar-star {
  width: 90px;
  margin-bottom: 20px;
}

.sidebar nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.sidebar a {
  color: white;
  text-decoration: none;
  font-family: "p22-folk-art-block", sans-serif;  
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  letter-spacing: 1px;
  transition: transform 0.15s ease, text-shadow 0.15s ease, color 0.15s ease;
}

.sidebar a:hover {
  color: #ff7a00;
  transform: scale(1.30);
  text-shadow: 
    0 0 5px #ff7a00,
    0 0 10px #ff7a00,
    0 0 20px #ff7a00;
}

/*------------------------------body paragraph stylings---------------------------*/

.page-content {
  margin-left: 20%;
  padding: 5%;
}
  
  html, body {
  margin: 0;
  padding: 0;
}

/*-------------------------------zine page-----------------------------------*/

.zines-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px; /* spacing between gifs and logo */
  margin-bottom: 20px;
}

.zines-header .side-gif {
  width: 10vw;
  max-width: 120px;
  min-width: 60px;
  height: auto;
}

.zines-header .zines-logo {
  width: auto;
  max-width: 500px; /* adjust as needed */
  height: auto;
  display: block;
}

.text-cloth {
  font-family: "sunflower", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: white;
  font-size: 1.2vw;
  letter-spacing: 0.6px;
  line-height: 1.5;
  text-align: center;
  text-shadow: 1px 1px black; 
}

.text-cloth a {
  color: white;

}

.text-cloth a:hover{
  color: #dc713b; 
}

.zine-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-top: 50px;
  margin-bottom: 100px;
}

.zine-row img {
  width: 100%;
  max-width: 250px;
  height: auto;
 filter: drop-shadow(0 8px 15px rgba(0,0,0,0.50));
  transition: transform 0.2s ease;
 
}

.zine-row a {
  flex: 1;
  text-align: center;
}

.zine-row img:hover {
  transform: scale(1.15);
  animation: zine-jitter 1s steps(1) infinite;
}

@keyframes zine-jitter {
  0%   { transform: scale(1.15) translate(0, 0) rotate(0deg); }
  50%  { transform: scale(1.15) translate(4px, -3px) rotate(12deg); }
  100% { transform: scale(1.15) translate(-4px, 3px) rotate(-48deg); }
  }
  
.stretch-gif {
  width: 35vw;
  height: auto; 
  background-position: center;
  display: block;
  margin: 0 auto;
}

/*--------------------------zine viewer------------------------------------------*/
.back-button {
  text-align: center;
  color: white;
  font-family: "sunflower", sans-serif;
  letter-spacing: 0.6px;
  text-shadow: 1px 1px black;
  margin-top: 10px;
  line-height: 1.5;
}

.back-button a {
  text-align: center;
  color: white;
}
.back-button a:hover {
  color: #dc713b;
} 

.zine-viewer {
  position: relative;
  width: 600px;
  max-width: 100%;
  margin: 30px auto;
  box-shadow: 0 0 20px rgba(0,0,0,.5);
  overflow: visible;
}

.zine-viewer img {
  width: 100%;
  display: block;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0.7);
  color: white;
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 20px;
  z-index: 5;
}

.zine-viewer.zoomed .prev,
.zine-viewer.zoomed .next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10000;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 12px 16px;
}

.zine-viewer.zoomed .prev {
  left: 20px;
}

.zine-viewer.zoomed .next {
  right: 20px;
}



.prev:hover, .next:hover {
  background: #ff7a00;
  color: black;
}

.prev {
  left: -50px;
} 
.next {
  right: -50px;
}

.zine-counter {
  text-align: center;
  color: white;
  font-family: "sunflower", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-top: 0;
  letter-spacing: 0.6px;
  text-shadow: 1px 1px black;
}

.zine-description {
  color: white;
  font-family: "sunflower", sans-serif;
  letter-spacing: 0.6px;
  text-shadow: 1px 1px black;
  margin-top: 10px;
  line-height: 1.5;
}

.zine-description a {
  color: white;
}

.zine-description a:hover {
  color: #dc713b;
}
  

.zine-meta {
  width: calc(100% + 100px); /* 50px left + 50px right arrows */
  max-width: 650px; /* adjust if needed */
  margin: 0 auto;
  text-align: center;
}

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

.zoom-lightbox img {
  max-width: 95%;
  max-height: 95%;
  box-shadow: 0 0 30px rgba(0,0,0,.8);
  cursor: zoom-out;
}

#zine-slide {
  cursor: zoom-in;
}

.zine-viewer.cover-page {
  width: 350px;
}

.zine-viewer:not(.cover-page) {
  width: 800px;
}

/*----------------------about page-------------------------------*/

.paper-container {
  background-image: url(paper-bg.jpg);
  background-size: 650px;
 

  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  
  max-width: 650px;
  margin: 5px 200px;
  padding: 1px 50px;
}

.paper-container p {
  font-family: "sunflower", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.6px;
  line-height: 1.7;
  font-size: 15px;
}

.paper-container a {
  color: black;
}

.paper-container a:hover {
  color: #dc713b; 
}

.paper-container h1 {
  font-family: p22-folk-art-block, sans-serif;
  font-weight: 900;
  font-size: 45px;
  color: #dc713b;
  -webkit-text-stroke: 0.8px #dc713b;
  -webkit-text-stroke: 0.4px black;
  text-shadow: 1.5px 1.5px 0px black; 
  transform: rotate(-0.5deg);
  letter-spacing: -4px;
  margin-bottom: 10px;

}

.heart02-gif {
  width: 6%;
  max-width: 24px;
  height: auto;
  vertical-align: middle;
}

.h1-star {
  width: 8%;
  max-width: 40px;
  height: auto;
  vertical-align: middle;
}

.scroll-gif {
  width: 18%;
  max-width: 90px;
  height: auto;
  vertical-align: middle;
}

.snorlax-gif {
  width: 18%;
  max-width: 90px;
  height: auto;
  vertical-align: middle;
}

.conspirate-jpg {
  width: 25vw;
  height: auto;
  align-items: center;
  margin: 0px 130px 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transform: rotate(0.9deg);
}

/*-------------------------------- articles page --------------------------------*/
.in-progress {
  width: 100%;
  height: auto;
  
}
  
  
/*--------------------------blog page-------------------------*/
.blog-logo {
  width: 100%;
  height: auto;
  margin: 0 0 5px 0;
}

.blog-container {
  max-width: 700px;
  margin: 5px 200px;
  background-image: url(grid-paper.svg);
  background-repeat: repeat;
  background-size: 650px;
  padding: 40px;
  border-radius: 2px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.blog-post {
  margin-bottom: 45px;
}

.blog-title {
  width: 100%;
  text-align: left;
  background: black;
  color: white;
  border: none;
  padding: 12px 16px;
  font-family: "p22-folk-art-block", sans-serif;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between; 
  align-items: center;
}

.blog-title:hover {
  background: #ff7a00;
  color: black;
}

.blog-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 16px;
}

.blog-content::after {
  content: "";
  display: block;
  clear: both;
}

.blog-content p {
  color: black;
  
  font-family: "sunflower", sans-serif;
  letter-spacing: 0.6px;
  line-height: 1.7;
}

.blog-content a {
  color: black;
}

.blog-content a:hover {
   color: #dc713b;
}

.blog-date {
  display: block;
  font-size: 13px;
  font-family: "p22-folk-art-block", sans-serif;
  margin-top: 2px;
  letter-spacing: 1px;
}
  
.blog-title span:first-child {
  display: flex;
  flex-direction: column;
}

.aster-bio {
  color: black;
  font-family: "sunflower", sans-serif;
  font-size: 14px;
  letter-spacing: 0.6px;
  -webkit-text-stroke: 0.2px white;
  line-height: 1.7;
  margin: 0 0 15px;
  text-align: center;
}

.fourth-poster {
  width: 50%;
  height: auto;
  float: right;
  margin: 40px 0 10px 20px;
}

.punks-poster {
  width: 45%;
  height: auto;
  float: left;
  margin: 15px 20px 15px 0;
}

.issue3-promo {
  width: 50%;
  height: auto;
  float: right;
 margin: 20px 0 10px 20px;
}

.diamond-mosh {
  width: 100%;
  height: auto;
}

.baby-photo {
  width: 100%;
  height: auto;
}

.kudzu-jpg {
 width: 50%;
  height: auto;
  float: right;
 margin: 20px 0 5px 20px;
}

.fireworks-band {
  width: 80%;
  height: auto;
  margin: 0 60px;
}

.tower-teens {
  width: 80%;
  height: auto;
  margin: 0 60px;
}

.rockon-gif {
  width: 6%;
  height: auto;
}

.rip-gif {
  width: 6%;
  height: auto;
  vertical-align: middle;
}

.baby-gif {
  width: 4%;
  height: auto;
  vertical-align: middle;
}

.coniving {
  vertical-align: middle;
}

.hotdog-gif {
  width: 3%;
  height: auto;
  vertical-align: middle;
}

.sneak-front {
  width: 50%;
  height: auto;
  float: right;
  margin: 45px 0 10px 20px;
}

.sneak-spread {
  width: 100%;
  height: auto; 
}

.fireworks-gif {
  width: 6%;
  height: auto;
  vertical-align: middle;
}

.sticker-pack {
  width: 40%;
  height: auto;
  margin:0 40px;
}

.issue0-cover {
  width: 35%;
  height: auto;
  margin:0 20px;
}

.zinefest-poster {
  width: 50%;
  height: auto;
  margin: 0 150px;
}

.comment {
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,.2);
  padding-top: 15px;
}
 
.aster {
  width: 30%;
  height: auto;
  float: left;
  margin: 0 42px 10px 42px;
}

.mhm4-cover {
  width: 35%;
  height: auto;
  float: left;
  margin: 10px 20px 10px 0;
}

.mhm4-info {
  width: 40%;
  height: auto;
  float: right;
  margin: 40px 0 5px 20px;
}

.letsgo-gif {
  width: 4%;
  height: auto;
  vertical-align: middle;
}

.asian-boys {
  width: 50%;
  height: auto;
  margin: 0 140px;
  
}

.pop-show {
  width: 50%;
  height: auto;
  float: right;
  margin: 40px 0 10px 20px;
}

.pop-face-gif {
  width: 80%;
  height: auto;
  margin: 0 80px;
}

body {
  background-image:url(images/denim-2.png);
  font-family: Verdana;
}

.center {
  letter-spacing: 3px;
}

/*---------------responsive stuff-----------------------*/

/* For tablets and smaller screens */
@media (max-width: 1024px) {
  .page-content {
    margin-left: 25%;
    padding: 3%;
  }
  
  .sidebar nav {
    gap: 12px;
  }
  
  .sidebar a {
    font-size: 20px;
  }

  .paper-container p {
    font-size: 13px;
  }
  
  .paper-container h1 {
    font-size: 35px;
  }
}


/* For phones / very small screens */
@media (max-width: 600px) {
  .page-content {
    margin-left: 0; /* no left sidebar */
    margin-top: auto;
    padding: 3%;
  }
  
  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
    top: 0;
    left: 0;
    z-index: auto;
  }
  
  .sidebar-content {
    display: flex;
    position: relative;
    justify-content: space-around;
    background-color: black;
    padding: 10px 0;
  }
  
  .sidebar nav {
    flex-direction: row;
    gap: 10px;
    width: 100%;
    justify-content: space-around;

    
  }
  
  .sidebar {
    font-size: 16px;
  } 
  
  .zipper-bg{
    display: none;
  }
  
  .paper-container {
    padding: 15px;
    margin: 20px 50px;
    max-width: 100%;
  }
  
   .paper-container p {
    font-size: 11px;
  }
    
     .paper-container h1 {
    font-size: 29px;
  }
  }