/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --eerie-black: #1f1e19ff;
  --onyx: #28302dff;
  --platinum: #e8e8e8ff;
  --coyote: #796641ff;
  --peach-yellow: #e2c991ff;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: var(--platinum);
  background-color: var(--eerie-black);
}

/* Sticky Social Sidebar */
.social-sidebar {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1001;
  background: rgba(31, 30, 25, 0.9);
  padding: 15px 8px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 201, 145, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-sidebar-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(40, 48, 45, 0.6);
  color: var(--platinum);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  border: 1px solid transparent;
}

.social-sidebar-link:hover {
  background: linear-gradient(45deg, var(--coyote), var(--peach-yellow));
  color: var(--eerie-black);
  transform: translateX(-5px) scale(1.1);
  border-color: var(--peach-yellow);
  box-shadow: 0 4px 15px rgba(226, 201, 145, 0.4);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background-color: transparent;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05);
}

.nav-links a {
  margin-left: 2rem;
  text-decoration: none;
  color: var(--platinum);
  font-weight: 500;
  transition: color 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  font-size: 1.1rem;
}

.nav-links a:hover {
  color: var(--peach-yellow);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/hero-bg.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.4) contrast(1.1);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--platinum);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 10vh;
}

.hero-text {
  margin-bottom: 3rem;
  text-align: center;
  margin-top: 8vh;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 0.9;
  margin-bottom: 1.5rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.title-line-1,
.title-line-2 {
  display: block;
  background: linear-gradient(45deg, var(--platinum), var(--peach-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  0% {
    text-shadow: 0 0 20px rgba(226, 201, 145, 0.3);
  }
  100% {
    text-shadow: 0 0 30px rgba(226, 201, 145, 0.6);
  }
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--peach-yellow);
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-description {
  font-size: 1.3rem;
  color: var(--platinum);
  margin-bottom: 2.5rem;
  max-width: 600px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-weight: 300;
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-primary {
  background: linear-gradient(45deg, var(--coyote), var(--peach-yellow));
  color: var(--eerie-black);
  box-shadow: 0 4px 15px rgba(121, 102, 65, 0.4);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(121, 102, 65, 0.6);
}

.cta-secondary {
  background: transparent;
  color: var(--platinum);
  border: 2px solid var(--platinum);
}

.cta-secondary:hover {
  background: var(--platinum);
  color: var(--eerie-black);
  transform: translateY(-2px);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--platinum);
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-text {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-arrow {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Sections */
section {
  padding: 5rem 2rem;
}

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

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--peach-yellow);
}

/* About Section */
.about {
  background-color: var(--onyx);
}

.about p {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.2rem;
  color: var(--platinum);
}

/* News & Events Section */
.news-events {
  background: linear-gradient(135deg, var(--eerie-black), var(--onyx));
  position: relative;
}

.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.news-item {
  background: rgba(40, 48, 45, 0.8);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(226, 201, 145, 0.1);
}

.news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(226, 201, 145, 0.3);
}

.news-item.featured {
  background: linear-gradient(135deg, rgba(121, 102, 65, 0.2), rgba(40, 48, 45, 0.8));
  border-color: var(--coyote);
}

.news-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(45deg, var(--coyote), var(--peach-yellow));
  color: var(--eerie-black);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-content h3 {
  color: var(--peach-yellow);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.news-item.featured .news-content h3 {
  font-size: 1.6rem;
}

.news-date {
  color: var(--coyote);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-content p:not(.news-date) {
  color: var(--platinum);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.news-link {
  color: var(--peach-yellow);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.news-link:hover {
  color: var(--platinum);
  transform: translateX(5px);
}

/* Album Section */
.album {
  background-color: var(--eerie-black);
}

.album-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.album-info h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--peach-yellow);
}

.release-date {
  color: var(--coyote);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.album-description {
  color: var(--platinum);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.album-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--peach-yellow);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--coyote);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.album-links {
  display: flex;
  gap: 1rem;
}

.stream-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background-color: var(--coyote);
  color: var(--platinum);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.stream-link:hover {
  background-color: var(--peach-yellow);
  color: var(--eerie-black);
  transform: translateY(-2px);
}

.album-artwork {
  aspect-ratio: 1;
  background-color: var(--onyx);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  position: relative;
  cursor: pointer;
}

.album-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.album-artwork:hover .play-overlay {
  opacity: 1;
}

.album-artwork:hover .album-image {
  transform: scale(1.05);
}

.play-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--coyote), var(--peach-yellow));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--eerie-black);
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

.play-button:hover {
  transform: scale(1.1);
}

/* Concerts Section */
.concerts {
  background: linear-gradient(135deg, var(--onyx), var(--eerie-black));
  position: relative;
}

.tour-header {
  text-align: center;
  margin-bottom: 2rem;
}

.tour-header h3 {
  font-size: 1.5rem;
  color: var(--peach-yellow);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.concerts-list {
  background: rgba(40, 48, 45, 0.4);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.concert-item {
  display: grid;
  grid-template-columns: 130px 1fr 150px 100px;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.5rem;
  border-bottom: 1px solid rgba(226, 201, 145, 0.1);
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.concert-item:last-child {
  border-bottom: none;
}

.concert-item.upcoming {
  border-left-color: var(--peach-yellow);
}

.concert-item.past {
  border-left-color: var(--coyote);
  opacity: 0.6;
}

.concert-item.new {
  background: rgba(226, 201, 145, 0.05);
  border-left-color: #ff6b6b;
}

.concert-item:hover {
  background: rgba(40, 48, 45, 0.6);
  transform: translateX(5px);
}

.concert-date {
  font-size: 0.95rem;
  color: var(--platinum);
  font-weight: 600;
  white-space: nowrap;
}

.concert-venue {
  color: var(--platinum);
  font-size: 1rem;
  font-weight: 500;
}

.concert-location {
  color: var(--coyote);
  font-size: 0.9rem;
  text-align: right;
}

.concert-location::before {
  content: '📍 ';
  margin-right: 0.3rem;
}

.status-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.status-badge.upcoming {
  background: linear-gradient(45deg, var(--coyote), var(--peach-yellow));
  color: var(--eerie-black);
}

.status-badge.past {
  background: rgba(121, 102, 65, 0.3);
  color: var(--coyote);
  border: 1px solid var(--coyote);
}

.status-badge.new {
  background: linear-gradient(45deg, #ff6b6b, var(--peach-yellow));
  color: var(--eerie-black);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 5px rgba(255, 107, 107, 0.3);
  }
  50% {
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.6);
  }
}

.concerts-cta {
  text-align: center;
}

.cta-booking {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(45deg, var(--coyote), var(--peach-yellow));
  color: var(--eerie-black);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.cta-booking:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(121, 102, 65, 0.4);
}

/* Gallery Section */
.gallery {
  background-color: var(--onyx);
}

.gallery-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-container {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  flex: 0 0 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.05);
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(31, 30, 25, 0.7);
  color: var(--platinum);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  z-index: 2;
  transition: background-color 0.3s ease;
}

.carousel-button:hover {
  background: var(--coyote);
}

.carousel-button.prev {
  left: 1rem;
}

.carousel-button.next {
  right: 1rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--coyote);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: var(--peach-yellow);
}

/* Media Section */
.media {
  background-color: var(--eerie-black);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.media-item {
  background-color: var(--onyx);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  padding: 1rem;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  background-color: var(--onyx);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.media-item h3 {
  margin-top: 1rem;
  color: var(--peach-yellow);
  font-size: 1.2rem;
  text-align: center;
  font-weight: 500;
}

/* Contact Section */
.contact {
  background-color: var(--onyx);
  text-align: center;
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
}

.contact-info p {
  color: var(--platinum);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.contact-info p:first-child {
  font-weight: 600;
  color: var(--peach-yellow);
  font-size: 1.2rem;
}

/* Footer */
footer {
  background-color: var(--eerie-black);
  color: var(--platinum);
  padding: 2rem;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .social-sidebar {
    right: 10px;
    padding: 10px 6px;
    gap: 10px;
  }

  .social-sidebar-link {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .navbar {
    flex-direction: column;
    padding: 1rem;
  }

  .logo-image {
    height: 35px;
  }

  .nav-links {
    margin-top: 1rem;
  }

  .nav-links a {
    margin: 0 1rem;
    font-size: 0.9rem;
  }

  .hero-content {
    padding-top: 5vh;
  }

  .hero-text {
    margin-top: 4vh;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    justify-content: center;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .news-item {
    padding: 1.5rem;
  }

  .concert-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1rem;
    text-align: left;
  }

  .concert-date {
    font-size: 0.85rem;
    order: 1;
  }

  .concert-venue {
    font-size: 1.1rem;
    font-weight: 600;
    order: 2;
  }

  .concert-location {
    font-size: 0.85rem;
    text-align: left;
    order: 3;
  }

  .status-badge {
    order: 4;
    justify-self: start;
    margin-top: 0.5rem;
  }

  .concerts-cta {
    padding: 1.5rem;
  }

  section {
    padding: 3rem 1rem;
  }

  .album-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .album-links {
    flex-direction: column;
  }

  .stream-link {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .navbar {
    display: none !important;
  }
}
}
