@import url('https://fonts.googleapis.com/css2?family=Rubik+Spray+Paint&display=swap');

/* ==========================================================================
   313 Paradise — Trashed Goodz Brutal Aesthetic
   Graffiti headers, hard box-shadows, raw green borders, glitch energy.
   ========================================================================== */

/* Nav bar: no overrides — use original Webflow iMac menu bar */

/* --- Aura Background --- */
.body.is--cursor {
  position: relative;
  overflow-x: hidden;
}

.body.is--cursor::before,
.body.is--cursor::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(120px);
  opacity: 0.12;
}

.body.is--cursor::before {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #07e317 0%, transparent 70%);
  top: 10%;
  left: -10%;
  animation: aura-drift-1 20s ease-in-out infinite alternate;
}

.body.is--cursor::after {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #00ccaa 0%, transparent 70%);
  bottom: 20%;
  right: -10%;
  animation: aura-drift-2 25s ease-in-out infinite alternate;
}

@keyframes aura-drift-1 {
  0%   { transform: translate(0, 0); }
  33%  { transform: translate(15vw, 10vh); }
  66%  { transform: translate(5vw, 30vh); }
  100% { transform: translate(20vw, 5vh); }
}

@keyframes aura-drift-2 {
  0%   { transform: translate(0, 0); }
  33%  { transform: translate(-10vw, -15vh); }
  66%  { transform: translate(-20vw, -5vh); }
  100% { transform: translate(-5vw, -25vh); }
}

/* --- Glitch Keyframe --- */
@keyframes glitch {
  0%, 90%, 100% {
    text-shadow: 3px 3px 0 rgba(7,227,23,0.4), 0 0 15px rgba(7,227,23,0.5);
  }
  92% {
    text-shadow: -3px 0 #ff0000, 3px 0 #00ffff, 3px 3px 0 rgba(7,227,23,0.3);
  }
  94% {
    text-shadow: 3px 0 #ff0000, -3px 0 #00ffff, 3px 3px 0 rgba(7,227,23,0.3);
  }
  96% {
    text-shadow: -2px 0 #ff0000, 2px 0 #00ffff, 3px 3px 0 rgba(7,227,23,0.3);
  }
}

/* --- Hero Section --- */
.hero-2007 {
  background: transparent;
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: none;
}

/* Subtle radial glow behind logo */
.hero-2007::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(7,227,23,0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  pointer-events: none;
}

.hero-2007__logo {
  max-width: 280px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.hero-2007__headline {
  font-family: 'Rubik Spray Paint', cursive;
  font-size: 52px;
  font-weight: 400;
  color: #07e317;
  letter-spacing: 0.02em;
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
  text-shadow: 3px 3px 0 rgba(7,227,23,0.4), 0 0 15px rgba(7,227,23,0.5);
  animation: glitch 6s infinite;
  transform: rotate(-1deg);
}

.hero-2007__subhead {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  font-weight: 400;
  color: #07e317;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0 0 30px;
  position: relative;
  z-index: 1;
}

/* --- Buttons --- */
.btn-aqua {
  display: inline-block;
  background: #07e317;
  border: 3px solid #07e317;
  color: #000;
  font-family: 'Courier New', monospace;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  padding: 12px 28px;
  box-shadow: 4px 4px 0 #07e317;
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s;
  position: relative;
  border-radius: 0;
}

.btn-aqua:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #07e317;
}

.btn-aqua:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #07e317;
}

.btn-aqua::after {
  display: none;
}

.btn-aqua--outline {
  background: transparent;
  border-color: #07e317;
  color: #07e317;
  box-shadow: 4px 4px 0 #07e317;
}

.btn-aqua--outline:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #07e317;
}

.btn-aqua--outline:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #07e317;
}

/* --- Cover Flow Section --- */
.coverflow-section {
  background: transparent;
  padding: 40px 0 60px;
  overflow: hidden;
  border-bottom: none;
}

.coverflow-section__title {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #07e317;
  text-align: center;
  margin-bottom: 30px;
}

.coverflow-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  padding: 0 20px;
  perspective: 800px;
}

.coverflow-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.coverflow-item:hover {
  transform: translateY(-8px);
}

.coverflow-item__art {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 0;
  border: 2px solid #07e317;
  box-shadow: 4px 4px 0 #07e317;
  display: block;
}

.coverflow-item:hover .coverflow-item__art {
  box-shadow: 6px 6px 0 #07e317;
}

/* Cover Flow reflection */
.coverflow-item__reflection {
  width: 160px;
  height: 80px;
  object-fit: cover;
  object-position: bottom;
  transform: scaleY(-1);
  opacity: 0.25;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 70%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 70%);
  margin-top: -2px;
  border-radius: 0;
  display: block;
}

.coverflow-item__label {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  color: #666;
  margin-top: 8px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.coverflow-item:hover .coverflow-item__label {
  color: #07e317;
}

/* --- Feature Grid (Services) --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
  border: 2px solid #07e317;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: 6px 6px 0 #07e317;
}

.feature-box {
  padding: 30px 24px;
  border-right: 2px solid #07e317;
  text-align: center;
  position: relative;
  transition: background 0.15s;
}

.feature-box:last-child {
  border-right: none;
}

.feature-box:hover {
  background: #0a140a;
}

/* Remove old glossy top edge */
.feature-box::before {
  display: none;
}

.feature-box__icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
  color: #07e317;
}

.feature-box__title {
  font-family: 'Rubik Spray Paint', cursive;
  font-size: 20px;
  font-weight: 400;
  color: #07e317;
  margin: 0 0 8px;
  text-shadow: 2px 2px 0 rgba(7,227,23,0.3);
}

.feature-box__desc {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: #888;
  line-height: 1.6;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-box__link {
  display: inline-block;
  margin-top: 12px;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: #07e317;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-box__link:hover {
  text-decoration: underline;
}

/* --- Artists Section --- */
.artists-section {
  background: transparent;
  padding: 60px 0;
  border-bottom: none;
}

.artists-section__header {
  max-width: 960px;
  margin: 0 auto 30px;
  padding: 0 24px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.artists-section__title {
  font-family: 'Rubik Spray Paint', cursive;
  font-size: 36px;
  font-weight: 400;
  color: #07e317;
  margin: 0;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 rgba(7,227,23,0.3), 0 0 12px rgba(7,227,23,0.4);
}

.artists-section__see-all {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: #07e317;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.artists-section__see-all:hover {
  text-decoration: underline;
}

.artists-grid {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.artist-card {
  background: #0a0a0a;
  border-radius: 0;
  overflow: hidden;
  border: 3px solid #07e317;
  box-shadow: 4px 4px 0 #07e317;
  text-decoration: none;
  transition: transform 0.1s, box-shadow 0.1s;
  display: block;
}

.artist-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #07e317;
}

.artist-card__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.artist-card__info {
  padding: 16px;
  border-top: 2px solid #07e317;
}

.artist-card__name {
  font-family: 'Rubik Spray Paint', cursive;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 4px;
  text-shadow: 2px 2px 0 rgba(7,227,23,0.3);
}

.artist-card__role {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  color: #07e317;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* --- Services Section --- */
.services-section {
  background: transparent;
  padding: 60px 0;
  border-bottom: none;
}

.services-section__title {
  font-family: 'Rubik Spray Paint', cursive;
  font-size: 36px;
  font-weight: 400;
  color: #07e317;
  text-align: center;
  margin: 0 0 40px;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 rgba(7,227,23,0.3), 0 0 12px rgba(7,227,23,0.4);
}

/* --- Photo Grid (Gallery) --- */
.photo-grid-section {
  background: transparent;
  padding: 60px 0 80px;
  border-bottom: none;
}

.photo-grid-section__title {
  font-family: 'Rubik Spray Paint', cursive;
  font-size: 36px;
  font-weight: 400;
  color: #07e317;
  text-align: center;
  margin: 0 0 30px;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 rgba(7,227,23,0.3), 0 0 12px rgba(7,227,23,0.4);
}

/* --- Archives Tabs (Photos app style) --- */
.archives-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
  padding: 0 24px;
}

.archives-tab {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 18px;
  border: 1px solid #333;
  background: transparent;
  color: #888;
  cursor: pointer;
  transition: all 0.2s ease;
}

.archives-tab:first-child {
  border-radius: 4px 0 0 4px;
}

.archives-tab:last-child {
  border-radius: 0 4px 4px 0;
}

.archives-tab--active {
  background: #07e317;
  color: #000;
  border-color: #07e317;
}

.archives-tab:hover:not(.archives-tab--active) {
  border-color: #07e317;
  color: #07e317;
}

/* --- Photos App Grid (CSS columns masonry — no gaps) --- */
.photo-grid {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  columns: 4;
  column-gap: 4px;
}

.photo-grid__img {
  width: 100%;
  display: block;
  margin-bottom: 4px;
  border-radius: 2px;
  border: none;
  cursor: zoom-in;
  transition: opacity 0.2s ease, transform 0.2s ease;
  break-inside: avoid;
}

.photo-grid__img:hover {
  opacity: 0.85;
  transform: scale(1.02);
  z-index: 1;
  position: relative;
}

/* Hidden by filter */
.photo-grid__img--hidden {
  display: none;
}

/* Artist link card inside archive grid */
.archives-artist-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  margin-bottom: 4px;
  background: rgba(7, 227, 23, 0.08);
  border: 1px solid rgba(7, 227, 23, 0.2);
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  font-weight: bold;
  color: #07e317;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: background 0.15s, border-color 0.15s;
  break-inside: avoid;
}

.archives-artist-link:hover {
  background: rgba(7, 227, 23, 0.15);
  border-color: #07e317;
}

/* --- Footer --- */
.footer-2007 {
  background: transparent;
  border-top: none;
  padding: 24px;
  text-align: center;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-2007 a {
  font-family: 'Courier New', monospace;
  color: #07e317;
  text-decoration: none;
  margin: 0 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-2007 a:hover {
  text-decoration: underline;
}

.footer-2007__brand {
  font-family: 'Rubik Spray Paint', cursive;
  font-size: 22px;
  font-weight: 400;
  color: #07e317;
  margin-bottom: 12px;
  text-shadow: 2px 2px 0 rgba(7,227,23,0.3), 0 0 10px rgba(7,227,23,0.4);
}

.footer-2007__links {
  margin-bottom: 8px;
}

/* --- Lightbox (photo viewer) --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  cursor: zoom-out;
}

.lightbox--open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__blur {
  position: absolute;
  inset: -40px;
  background-size: cover;
  background-position: center;
  filter: blur(30px) brightness(0.3) saturate(1.2);
  z-index: 0;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: 2px solid #07e317;
  box-shadow: 0 0 40px rgba(7, 227, 23, 0.15);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}

.lightbox--open .lightbox__img {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: 2px solid #07e317;
  color: #07e317;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  font-weight: bold;
  padding: 6px 14px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.15s, color 0.15s;
}

.lightbox__close:hover {
  background: #07e317;
  color: #000;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 2px solid #07e317;
  color: #07e317;
  font-size: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.lightbox__nav:hover {
  background: #07e317;
  color: #000;
}

.lightbox__nav--prev {
  left: 20px;
}

.lightbox__nav--next {
  right: 20px;
}

.lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: #07e317;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Make gallery + lookbook images clickable */
.photo-grid__img,
.artist-lookbook__img {
  cursor: zoom-in;
}

/* --- Responsive --- */
@media screen and (max-width: 991px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .coverflow-item__art,
  .coverflow-item__reflection {
    width: 130px;
  }

  .coverflow-item__art {
    height: 130px;
  }
}

@media screen and (max-width: 767px) {
  /* Hide all desktop redesign on mobile — iPod takes over */
  .apple-subnav,
  .hero-2007,
  .coverflow-section,
  .services-section,
  .artists-section,
  .photo-grid-section,
  .footer-2007 {
    display: none !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .hero-2007__headline {
    font-size: 38px;
  }

  .photo-grid {
    columns: 2;
  }
}
