/* 
 * Artist Template Stylesheet
 * Template: Artist Single Page
 */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #ee9300;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #ee9300;
  background: #000000;
  overflow-x: hidden;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fadeIn 5s ease-in-out forwards;
  opacity: 0.7;
   max-width: 100%;
}



.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  top: 100px;
}

.hero-content h1 {
  font-family: "Monoton", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 7rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-shadow: -3px -3px 0 rgba(122, 0, 0, 1), 3px -3px 0 rgba(122, 0, 0, 1), -3px 3px 0 rgba(122, 0, 0, 1), 3px 3px 0 rgba(122, 0, 0, 1);
}


.hero-content .album-title {
  font-size: 1.6rem;
  font-family: "oswald", sans-serif;

    line-height: 1.25rem;
    font-weight: 400;
    text-transform: uppercase;
    color: rgb(239, 239, 239);

  margin-bottom: 3.2rem;
  /*color: rgba(122, 0, 0, 1);*/
  transition: all 0.3s ease;
  letter-spacing: 0.3em;
  
}

.hero-cta {
  display: inline-block;
  padding: 0.8rem 4rem;
  background: rgba(255, 157, 0, 0.850);
  color: rgba(122, 0, 0, 1);
  text-decoration: none;
  text-transform: uppercase;
  border: 2px solid rgba(122, 0, 0, 1);
  font-family: "oswald", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  transition: all 0.3s ease;
}

.hero-cta:hover {
  background: rgb(217, 134, 0);
  color: rgba(122, 0, 0, 1);

    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}




/* Navigation */
.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0);
  padding: 1.5rem 2rem;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  /*border-bottom: 1px solid rgba(255, 255, 255, 0.1);*/
  transition: transform 0.3s ease;
}

/*.nav-brand a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}*/

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  text-align: center;
}

.nav-links a {
  color: #ee9300;
  font-weight: 900;
  text-decoration: none;
  font-size: 2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 0.7;
}

.sticky-nav.scrolled {
  background: rgba(0, 0, 0, 0.546);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Section Styles */
section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

section h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  letter-spacing: 2px;
}

/* Video Section */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.video-item {
  position: relative;
  aspect-ratio: 16/9;
  background: #111;
  overflow: hidden;
  border-radius: 8px;
}

.video-item iframe {
  width: 100%;
  height: 100%;
}

.video-title {
  margin-top: 1rem;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 400;
}

/* Tour Section */
.tour-list {
  max-width: 900px;
  margin: 0 auto;
}

.tour-item {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tour-date {
  font-size: 1rem;
  opacity: 0.7;
  min-width: 120px;
}

.tour-venue {
  flex: 1;
  padding: 0 1rem;
}

.tour-venue h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.tour-venue p {
  font-size: 0.9rem;
  opacity: 0.7;
}

.tour-tickets {
  padding: 0.75rem 2rem;
  background: transparent;
  color: #ee9300;
  text-decoration: none;
  border: 1px solid #fff;
  transition: all 0.3s;
  white-space: nowrap;
}

.tour-tickets:hover {
  background: #fff;
  color: #000;
}

/* Tour Poster Thumbnail */
.tour-poster-thumb {
  width: 14cqb;
  height: 200px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease;
  filter: grayscale(100%); /* Makes image black and white */
  -webkit-filter: grayscale(100%); /* For older Safari/Chrome */
}

.tour-poster-thumb:hover {
  transform: scale(1.05);
  filter: grayscale(0%); /* Restores full color on hover */
  -webkit-filter: grayscale(0%); /* For older Safari/Chrome */
}

.tour-poster-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/*.tour-poster-thumb:hover .poster-overlay {
  opacity: 1;
}

.poster-overlay span {
  color: #fff;
  font-size: 0.7rem;
  text-align: center;
  padding: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}*/

/* Poster Modal */
.poster-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.poster-modal-content {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.poster-close {
  position: absolute;
  top: 2rem;
  right: 3rem;
  color: #fff;
  font-size: 3rem;
  font-weight: 300;
  cursor: pointer;
  transition: opacity 0.3s;
  z-index: 10000;
}

.poster-close:hover {
  opacity: 0.7;
}

.poster-caption {
  color: #fff;
  text-align: center;
  margin-top: 1.5rem;
  font-size: 1.1rem;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* Tour Archive Styles */
.tour-archive-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tour-archive-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 2rem;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 1.5rem;
}

.tour-archive-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.tour-archive-toggle.active {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.5);
}

.toggle-icon {
  font-size: 0.8rem;
  transition: transform 0.3s;
}

.past-tours {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.archive-heading {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
  opacity: 0.7;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tour-item-past {
  opacity: 0.6;
}

.tour-item-past:hover {
  opacity: 0.8;
}

.tour-status {
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Music Section */
.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.album-item {
  text-align: center;
  filter: grayscale(100%); /* Makes image black and white */
  -webkit-filter: grayscale(100%); /* For older Safari/Chrome */
}

.album-item:hover {
  transform: scale(1.05);
  filter: grayscale(0%); /* Restores full color on hover */
  -webkit-filter: grayscale(0%); /* For older Safari/Chrome */
}

.album-cover-link {
  display: block;
  text-decoration: none;
}

.album-cover-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
}

.album-cover-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.album-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.album-cover-placeholder {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.album-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /*background: rgba(0, 0, 0, 0.85);*/
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.album-cover-link:hover .album-overlay {
  opacity: 1;
}

.play-icon {
  color: #fff;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.album-cover-link:hover .play-icon {
  transform: scale(1.1);
}

.play-icon svg {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.listen-text {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.album-info {
  padding: 0 0.5rem;
}

.album-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: rgb(255, 157, 0);
  letter-spacing: 0.5px;
}

.album-year {
  font-size: 0.95rem;
  opacity: 0.6;
  font-weight: 400;
  letter-spacing: 0.5px;
}


/* Signup Section */
.signup-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.signup-container p {
  margin-bottom: 1rem;
  opacity: 0.8;
}

.signup-form {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.signup-form input {
  flex: 1;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 1rem;
  border-radius: 4px;
}

.signup-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.signup-form button {
  padding: 1rem 2rem;
  background: #fff;
  color: #000;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 4px;
}

.signup-form button:hover {
  background: rgba(255, 255, 255, 0.9);
}

.signup-success {
  background: rgba(76, 175, 80, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.4);
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.signup-success p {
  color: rgba(76, 175, 80, 1);
  margin: 0;
  font-weight: 500;
}

/* Photos Section */
.photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.photo-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.photo-item:hover img {
  transform: scale(1.05);
}

.photo-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.photo-item:hover .photo-hover-overlay {
  opacity: 1;
}

.photo-hover-overlay span {
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
  padding: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Social Links Section */
.social-section {
  padding: 4rem 2rem 3rem;
  text-align: center;
}

.social-section h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
  opacity: 0.8;
}

.social-links-container {
  max-width: 900px;
  margin: 0 auto;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.social-link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link-item:hover {
  transform: translateY(-4px);
}

.social-link-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  padding: 12px;
}

.social-link-item:hover .social-link-icon {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.social-link-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.social-link-item:hover .social-link-icon img {
  opacity: 1;
}

.social-link-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.social-link-item:hover .social-link-text {
  color: #fff;
}


/* Sponsors Section */
.sponsors-section {
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.02);
}

.sponsors-section h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.sponsors-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.sponsor-item {
  flex: 0 0 auto;
}

.sponsor-item img {
  height: 60px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.7;
  transition: all 0.3s ease;
  filter: grayscale(100%) brightness(2);
}

.sponsor-item a {
  display: block;
}

.sponsor-item:hover img {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}


/* Responsive Styles */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content .album-title {
    font-size: 1.2rem;
  }
  
  .sticky-nav {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .nav-links {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-links a {
    font-size: 0.8rem;
  }
  
  .tour-item {
    grid-template-columns: auto 1fr;
    gap: 1rem;
  }
  
  .tour-poster-thumb {
    width: 60px;
    height: 60px;
    grid-row: 1 / 3;
  }
  
  .tour-date {
    grid-column: 2;
    min-width: auto;
  }
  
  .tour-venue {
    grid-column: 2;
    padding: 0;
  }
  
  .tour-tickets,
  .tour-status {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 0.5rem;
  }
  
  .tour-archive-toggle {
    font-size: 0.8rem;
    padding: 0.75rem 1.5rem;
  }
  
  .archive-heading {
    font-size: 1.2rem;
  }
  
  .signup-form {
    flex-direction: column;
  }
  
  section {
    padding: 4rem 1rem;
  }
  
  section h2 {
    font-size: 2rem;
  }
  
  .video-grid {
    grid-template-columns: 1fr;
  }
  
  .music-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .photos-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .poster-modal-content {
    max-width: 95%;
    max-height: 70vh;
  }
  
  .poster-close {
    top: 1rem;
    right: 1.5rem;
    font-size: 2.5rem;
  }
  
  .poster-caption {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-cta {
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
  }
  
  section h2 {
    font-size: 1.75rem;
  }
}