@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

h2 {
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  animation: fadeInDown 0.5s ease-out;
  animation-delay: 0.2s;
  animation-fill-mode: both;
}

.header {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: fadeIn 0.5s ease-in-out;
}

.logo {
  padding: 20px 0;
}
.logo h1 {
  font-weight: bold;
  color: #ffffff;
  margin: 0;
  margin-left: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s ease-in-out;
}
.logo h1:hover {
  color: #444;
  transform: scale(1.05);
}

.nav-bar-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 15px;
}
.nav-bar-list li {
  opacity: 0;
  animation: slideInRight 0.6s ease-out forwards;
}
.nav-bar-list li:nth-child(1) {
  animation-delay: 0.1s;
}
.nav-bar-list li:nth-child(2) {
  animation-delay: 0.2s;
}
.nav-bar-list li:nth-child(3) {
  animation-delay: 0.3s;
}
.nav-bar-list li:nth-child(4) {
  animation-delay: 0.4s;
}
.nav-bar-list li:nth-child(5) {
  animation-delay: 0.5s;
}
.nav-bar-list li:nth-child(6) {
  animation-delay: 0.6s;
}
.nav-bar-list li:nth-child(7) {
  animation-delay: 0.7s;
}
.nav-bar-list li a {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 10px 0;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.nav-bar-list li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #444;
  transition: width 0.3s ease-in-out;
}
.nav-bar-list li a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}
.nav-bar-list li a:hover::after {
  width: 100%;
}

.main {
  background-color: #333;
  color: #ffffff;
  padding: 20px;
  min-height: calc(100vh - 250px);
}

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

.hero {
  padding: 20px;
}
.hero .hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
.hero .hero-container .hero-content {
  flex: 1;
  animation: fadeInUp 0.5s ease-out;
  animation-delay: 0.3s;
  animation-fill-mode: both;
}
.hero .hero-container .hero-content h2 {
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  animation: slideUp 0.5s ease-out;
  animation-delay: 0.5s;
  animation-fill-mode: both;
}
.hero .hero-container .hero-content p {
  font-size: 1.3rem;
  color: #ccc;
  margin-bottom: 30px;
  line-height: 1.6;
  animation: fadeInUp 0.5s ease-out;
  animation-delay: 0.7s;
  animation-fill-mode: both;
}
.hero .hero-container .hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  animation: scaleIn 0.5s ease-out;
  animation-delay: 0.9s;
  animation-fill-mode: both;
}
.hero .hero-container .hero-image:hover {
  transform: scale(1.05) rotate(2deg);
  transition: all 0.3s ease-in-out;
}

.biography-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}
.biography-container .biography-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2em;
  width: 100%;
}

.bio-intro {
  display: flex;
  margin: 0 auto;
  width: 100%;
  gap: 30px;
  background-color: #444;
  border-radius: 10px;
  padding: 30px;
  animation: fadeInUp 0.5s ease-out;
  animation-delay: 0.4s;
  animation-fill-mode: both;
}
.bio-intro .bio-image {
  width: 40%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: scaleIn 0.5s ease-out;
  animation-delay: 0.6s;
  animation-fill-mode: both;
}
.bio-intro .bio-image:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
}
.bio-intro .bio-text {
  flex: 1;
  animation: fadeInLeft 0.5s ease-out;
  animation-delay: 0.8s;
  animation-fill-mode: both;
}
.bio-intro .bio-text h3 {
  margin-bottom: 10px;
  color: #ffffff;
}
.bio-intro .bio-text .bio-subtitle {
  color: #ccc;
  margin-bottom: 20px;
  font-style: italic;
}
.bio-intro .bio-text p {
  line-height: 1.8;
  color: #ddd;
}

.bio-section {
  width: 100%;
  padding: 30px;
  background-color: #444;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
  animation: fadeInUp 0.5s ease-out;
  animation-fill-mode: both;
}
.bio-section:nth-child(1) {
  animation-delay: 0.9s;
}
.bio-section:nth-child(2) {
  animation-delay: 1s;
}
.bio-section:nth-child(3) {
  animation-delay: 1.1s;
}
.bio-section:nth-child(4) {
  animation-delay: 1.2s;
}
.bio-section:nth-child(5) {
  animation-delay: 1.3s;
}
.bio-section:nth-child(6) {
  animation-delay: 1.4s;
}
.bio-section:nth-child(7) {
  animation-delay: 1.5s;
}
.bio-section:nth-child(8) {
  animation-delay: 1.6s;
}
.bio-section:nth-child(9) {
  animation-delay: 1.7s;
}
.bio-section:nth-child(10) {
  animation-delay: 1.8s;
}
.bio-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
.bio-section h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #ffffff;
  border-bottom: 2px solid #666;
  padding-bottom: 10px;
}
.bio-section p {
  line-height: 1.8;
  margin-bottom: 15px;
  color: #ddd;
}

.biography-list {
  list-style: disc;
  padding-left: 20px;
  color: #ddd;
}
.biography-list li {
  margin-bottom: 20px;
  line-height: 1.6;
}
.biography-list li h4 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: bold;
}
.biography-list li p {
  margin-bottom: 8px;
  line-height: 1.6;
}
.biography-list li p strong {
  color: #ffffff;
  font-weight: bold;
}
.biography-list li p span {
  display: block;
  margin-top: 5px;
  color: #ccc;
  font-style: italic;
}
.biography-list:last-child {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  list-style: none;
  padding-left: 0;
}
.biography-list:last-child li {
  background-color: #555;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  border-left: 4px solid #ccc;
  transition: all 0.3s ease-in-out;
}
.biography-list:last-child li:hover {
  background-color: #666;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.gallery-section .gallery-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 40px;
  animation: fadeInUp 0.5s ease-out;
  animation-delay: 0.4s;
  animation-fill-mode: both;
}
.gallery-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.gallery-section .gallery-grid .gallery-item {
  background-color: #444;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
  animation: scaleIn 0.5s ease-out;
  animation-fill-mode: both;
}
.gallery-section .gallery-grid .gallery-item:nth-child(1) {
  animation-delay: 0.7s;
}
.gallery-section .gallery-grid .gallery-item:nth-child(2) {
  animation-delay: 0.8s;
}
.gallery-section .gallery-grid .gallery-item:nth-child(3) {
  animation-delay: 0.9s;
}
.gallery-section .gallery-grid .gallery-item:nth-child(4) {
  animation-delay: 1s;
}
.gallery-section .gallery-grid .gallery-item:nth-child(5) {
  animation-delay: 1.1s;
}
.gallery-section .gallery-grid .gallery-item:nth-child(6) {
  animation-delay: 1.2s;
}
.gallery-section .gallery-grid .gallery-item:nth-child(7) {
  animation-delay: 1.3s;
}
.gallery-section .gallery-grid .gallery-item:nth-child(8) {
  animation-delay: 1.4s;
}
.gallery-section .gallery-grid .gallery-item:nth-child(9) {
  animation-delay: 1.5s;
}
.gallery-section .gallery-grid .gallery-item:nth-child(10) {
  animation-delay: 1.6s;
}
.gallery-section .gallery-grid .gallery-item:nth-child(11) {
  animation-delay: 1.7s;
}
.gallery-section .gallery-grid .gallery-item:nth-child(12) {
  animation-delay: 1.8s;
}
.gallery-section .gallery-grid .gallery-item:nth-child(13) {
  animation-delay: 1.9s;
}
.gallery-section .gallery-grid .gallery-item:nth-child(14) {
  animation-delay: 2s;
}
.gallery-section .gallery-grid .gallery-item:nth-child(15) {
  animation-delay: 2.1s;
}
.gallery-section .gallery-grid .gallery-item:nth-child(16) {
  animation-delay: 2.2s;
}
.gallery-section .gallery-grid .gallery-item:nth-child(17) {
  animation-delay: 2.3s;
}
.gallery-section .gallery-grid .gallery-item:nth-child(18) {
  animation-delay: 2.4s;
}
.gallery-section .gallery-grid .gallery-item:nth-child(19) {
  animation-delay: 2.5s;
}
.gallery-section .gallery-grid .gallery-item:nth-child(20) {
  animation-delay: 2.6s;
}
.gallery-section .gallery-grid .gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}
.gallery-section .gallery-grid .gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease-in-out;
}
.gallery-section .gallery-grid .gallery-item img:hover {
  transform: scale(1.1);
}

.footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 40px 0 20px;
  margin-top: auto;
  animation: fadeIn 0.5s ease-in-out;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 30px;
  display: flex;
  gap: 30px;
}

.footer-section {
  flex: 1;
  padding: 0 15px;
  animation: fadeInUp 0.5s ease-out;
  animation-fill-mode: both;
}
.footer-section:nth-child(1) {
  animation-delay: 0.3s;
}
.footer-section:nth-child(2) {
  animation-delay: 0.4s;
}
.footer-section:nth-child(3) {
  animation-delay: 0.5s;
}
.footer-section h3 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 1.2rem;
  border-bottom: 2px solid #888787;
  padding-bottom: 5px;
}
.footer-section p {
  color: #ccc;
  line-height: 1.6;
}
.footer-section .social-links {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-section .social-links .social-link {
  display: inline-block;
  color: #ccc;
  padding: 8px 12px;
  border: 1px solid #888787;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  font-size: 0.9rem;
  animation: scaleIn 0.5s ease-out;
  animation-fill-mode: both;
}
.footer-section .social-links .social-link:nth-child(1) {
  animation-delay: 0.6s;
}
.footer-section .social-links .social-link:nth-child(2) {
  animation-delay: 0.7s;
}
.footer-section .social-links .social-link:nth-child(3) {
  animation-delay: 0.8s;
}
.footer-section .social-links .social-link:nth-child(4) {
  animation-delay: 0.9s;
}
.footer-section .social-links .social-link:nth-child(5) {
  animation-delay: 1s;
}
.footer-section .social-links .social-link:nth-child(6) {
  animation-delay: 1.1s;
}
.footer-section .social-links .social-link:nth-child(7) {
  animation-delay: 1.2s;
}
.footer-section .social-links .social-link:nth-child(8) {
  animation-delay: 1.3s;
}
.footer-section .social-links .social-link:nth-child(9) {
  animation-delay: 1.4s;
}
.footer-section .social-links .social-link:nth-child(10) {
  animation-delay: 1.5s;
}
.footer-section .social-links .social-link:hover {
  background-color: #444;
  color: #ffffff;
  border-color: #444;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  color: #999;
  font-size: 0.9rem;
  animation: fadeIn 0.5s ease-in-out;
  animation-delay: 0.8s;
  animation-fill-mode: both;
}

.unique-btn {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 15px 30px;
  border: 2px solid #ffffff;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  animation: scaleIn 0.5s ease-out;
  animation-delay: 1.1s;
  animation-fill-mode: both;
}
.unique-btn a {
  color: #ffffff;
}
.unique-btn:hover {
  background-color: #ffffff;
  color: #1a1a1a;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.unique-btn:hover a {
  color: #1a1a1a;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #ffffff;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 2px solid #666;
  border-radius: 5px;
  background-color: #555;
  color: #ffffff;
  font-size: 1rem;
  transition: border-color 0.3s ease-in-out;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #444;
  box-shadow: 0 0 10px rgba(68, 68, 68, 0.3);
}

.checkbox-label {
  display: block;
  margin-bottom: 5px;
  font-weight: normal;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
}

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

.events-header {
  text-align: center;
  margin-bottom: 40px;
}
.events-header p {
  font-size: 1.2rem;
  color: #ccc;
  margin: 0;
  animation: fadeInUp 0.5s ease-out;
  animation-delay: 0.4s;
  animation-fill-mode: both;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.events-month-group {
  background-color: #444;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.5s ease-out;
  animation-fill-mode: both;
}
.events-month-group:nth-child(1) {
  animation-delay: 0.7s;
}
.events-month-group:nth-child(2) {
  animation-delay: 0.8s;
}
.events-month-group:nth-child(3) {
  animation-delay: 0.9s;
}
.events-month-group:nth-child(4) {
  animation-delay: 1s;
}
.events-month-group:nth-child(5) {
  animation-delay: 1.1s;
}
.events-month-group:nth-child(6) {
  animation-delay: 1.2s;
}
.events-month-group:nth-child(7) {
  animation-delay: 1.3s;
}
.events-month-group:nth-child(8) {
  animation-delay: 1.4s;
}
.events-month-group:nth-child(9) {
  animation-delay: 1.5s;
}
.events-month-group:nth-child(10) {
  animation-delay: 1.6s;
}
.events-month-group:nth-child(11) {
  animation-delay: 1.7s;
}
.events-month-group:nth-child(12) {
  animation-delay: 1.8s;
}
.events-month-group summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background-color: #555;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
  list-style: none;
}
.events-month-group summary:hover {
  background-color: #666;
}
.events-month-group summary h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.events-month-group summary .toggle-icon {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  transition: transform 0.3s ease-in-out;
}
.events-month-group[open] .toggle-icon {
  transform: rotate(45deg);
}

.month-events {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.event-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  border-bottom: 1px solid #555;
  transition: all 0.3s ease-in-out;
}
.event-card:last-child {
  border-bottom: none;
}
.event-card:hover {
  background-color: #4a4a4a;
  transform: translateX(5px);
}
.event-card .event-info {
  display: flex;
  align-items: center;
  gap: 25px;
  flex: 1;
}
.event-card .event-info .event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  padding: 15px;
  background-color: #1a1a1a;
  border-radius: 8px;
  text-align: center;
}
.event-card .event-info .event-date .day {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
  line-height: 1;
}
.event-card .event-info .event-date .month {
  font-size: 0.9rem;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}
.event-card .event-info .event-details {
  flex: 1;
}
.event-card .event-info .event-details .event-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #ffffff;
  margin: 0 0 8px 0;
}
.event-card .event-info .event-details .event-location {
  font-size: 1rem;
  color: #ccc;
  margin: 0 0 5px 0;
}
.event-card .event-info .event-details .event-date-full {
  font-size: 0.9rem;
  color: #999;
  margin: 0;
}
.event-card .event-actions {
  display: flex;
  align-items: center;
}
.event-card .event-actions .ticket-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #ffffff;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease-in-out;
  border: 2px solid #ffffff;
}
.event-card .event-actions .ticket-btn:hover {
  background-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.event-card .event-actions .ticket-btn.sold-out {
  background-color: #666;
  color: #ccc;
  border-color: #666;
  cursor: not-allowed;
}
.event-card .event-actions .ticket-btn.sold-out:hover {
  background-color: #666;
  color: #ccc;
  transform: none;
  box-shadow: none;
}
.event-card .event-actions .ticket-btn.no-link {
  background-color: #444;
  color: #999;
  border-color: #444;
  cursor: not-allowed;
}
.event-card .event-actions .ticket-btn.no-link:hover {
  background-color: #444;
  color: #999;
  transform: none;
  box-shadow: none;
}

.music-hero .music-hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.music-hero .music-hero-content p {
  font-size: 1.3rem;
  color: #ccc;
  line-height: 1.6;
  animation: fadeInUp 0.5s ease-out;
  animation-delay: 0.4s;
  animation-fill-mode: both;
}

.albums-section {
  padding: 20px 0;
}
.albums-section .albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
  width: 100%;
  max-width: 100%;
}
.albums-section .albums-grid .album-card {
  background-color: #444;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
  animation: fadeInUp 0.5s ease-out;
  animation-fill-mode: both;
}
.albums-section .albums-grid .album-card:nth-child(1) {
  animation-delay: 0.7s;
}
.albums-section .albums-grid .album-card:nth-child(2) {
  animation-delay: 0.8s;
}
.albums-section .albums-grid .album-card:nth-child(3) {
  animation-delay: 0.9s;
}
.albums-section .albums-grid .album-card:nth-child(4) {
  animation-delay: 1s;
}
.albums-section .albums-grid .album-card:nth-child(5) {
  animation-delay: 1.1s;
}
.albums-section .albums-grid .album-card:nth-child(6) {
  animation-delay: 1.2s;
}
.albums-section .albums-grid .album-card:nth-child(7) {
  animation-delay: 1.3s;
}
.albums-section .albums-grid .album-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}
.albums-section .albums-grid .album-card .album-cover {
  position: relative;
  overflow: hidden;
  max-width: 100% !important;
}
.albums-section .albums-grid .album-card .album-cover img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.albums-section .albums-grid .album-card .album-cover img:hover {
  transform: scale(1.05);
}
.albums-section .albums-grid .album-card .album-info {
  padding: 25px;
}
.albums-section .albums-grid .album-card .album-info h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.albums-section .albums-grid .album-card .album-info .album-year {
  color: #444;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 15px;
}
.albums-section .albums-grid .album-card .album-info .album-description {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
}
.albums-section .albums-grid .album-card .album-info .album-tracks h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #444;
  padding-bottom: 5px;
}
.albums-section .albums-grid .album-card .album-info .album-tracks .track-list {
  list-style: decimal;
  padding-left: 20px;
  color: #ddd;
}
.albums-section
  .albums-grid
  .album-card
  .album-info
  .album-tracks
  .track-list
  li {
  margin-bottom: 8px;
  line-height: 1.4;
  font-size: 0.95rem;
}
.albums-section
  .albums-grid
  .album-card
  .album-info
  .album-tracks
  .track-list
  li:hover {
  color: #ffffff;
  transform: translateX(5px);
  transition: all 0.3s ease-in-out;
}

.featured-songs {
  padding: 40px 0;
}
.featured-songs .songs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}
.featured-songs .songs-grid .song-card {
  background-color: #444;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
  animation: scaleIn 0.5s ease-out;
  animation-fill-mode: both;
}
.featured-songs .songs-grid .song-card:nth-child(1) {
  animation-delay: 1.6s;
}
.featured-songs .songs-grid .song-card:nth-child(2) {
  animation-delay: 1.7s;
}
.featured-songs .songs-grid .song-card:nth-child(3) {
  animation-delay: 1.8s;
}
.featured-songs .songs-grid .song-card:nth-child(4) {
  animation-delay: 1.9s;
}
.featured-songs .songs-grid .song-card:nth-child(5) {
  animation-delay: 2s;
}
.featured-songs .songs-grid .song-card:nth-child(6) {
  animation-delay: 2.1s;
}
.featured-songs .songs-grid .song-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  background-color: #555;
}
.featured-songs .songs-grid .song-card h4 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.featured-songs .songs-grid .song-card .song-album {
  color: #ffffff;
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 12px;
}
.featured-songs .songs-grid .song-card .song-description {
  color: #ccc;
  line-height: 1.5;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 10px;
  }
  .nav-bar-list {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .bio-intro {
    flex-direction: column;
  }
  .bio-intro .bio-image {
    width: 100%;
    flex: 1;
  }
  .bio-text h2 {
    font-size: 1.5rem;
  }
  .bio-section {
    padding: 20px;
  }
  .biography-list {
    padding-left: 15px;
  }
  .biography-list li {
    margin-bottom: 15px;
  }
  .biography-list li h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  .biography-list li p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 6px;
  }
  .biography-list li p span {
    margin-top: 3px;
    font-size: 0.9rem;
  }
  .biography-list:last-child {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .biography-list:last-child li {
    padding: 12px;
    font-size: 0.95rem;
  }
  .footer-content {
    flex-direction: column;
  }
  .event-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .event-card .event-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .event-card .event-info .event-date {
    align-self: flex-start;
  }
  .event-card .event-actions {
    align-self: stretch;
  }
  .event-card .event-actions .ticket-btn {
    width: 100%;
    text-align: center;
  }
  .events-month-group summary {
    padding: 15px 20px;
  }
  .events-month-group summary h3 {
    font-size: 1.2rem;
  }
  .event-card {
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .bio-image {
    width: 100%;
    flex: 1;
  }
  .events-container {
    padding: 10px;
  }
  .events-header h2 {
    font-size: 1.8rem;
  }
  .events-header p {
    font-size: 1rem;
  }
  .events-month-group summary {
    padding: 12px 15px;
  }
  .event-card {
    padding: 15px;
  }
  .event-card .event-date {
    min-width: 60px;
    padding: 10px;
  }
  .event-card .event-date .day {
    font-size: 1.5rem;
  }
  .event-card .event-title {
    font-size: 1.1rem;
  }
  .event-card .music-hero-content h2 {
    font-size: 2rem;
  }
  .event-card .albums-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 10px;
  }
  .event-card .album-card {
    display: block;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
  .event-card .album-card .album-cover img {
    height: 200px;
  }
  .event-card .album-card .album-info {
    padding: 15px;
  }
  .event-card .album-card .album-info h3 {
    font-size: 1.2rem;
  }
  .event-card .album-card .album-info .album-year {
    font-size: 1rem;
  }
  .event-card .album-card .album-info .album-description {
    font-size: 0.9rem;
  }
  .event-card .album-card .album-info .album-tracks h4 {
    font-size: 1rem;
  }
  .event-card .album-card .album-info .album-tracks .track-list {
    font-size: 0.85rem;
  }
  .event-card .songs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .event-card .biography-list {
    padding-left: 10px;
  }
  .event-card .biography-list li {
    margin-bottom: 12px;
  }
  .event-card .biography-list li h4 {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  .event-card .biography-list li p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 4px;
  }
  .event-card .biography-list li p span {
    margin-top: 2px;
    font-size: 0.85rem;
  }
  .event-card .biography-list:last-child {
    gap: 10px;
  }
  .event-card .biography-list:last-child li {
    padding: 10px;
    font-size: 0.9rem;
    border-left-width: 3px;
  }
}

/* E-commerce Styles */
.cart-count {
  background: #ff6b6b;
  color: white;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}

.cart-total {
  font-weight: bold;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.filter-group label {
  font-weight: 600;
  color: #ffffff;
}

.filter-group select {
  padding: 8px 12px;
  border: 2px solid #666;
  border-radius: 5px;
  background: #555;
  color: #ffffff;
  min-width: 150px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.product-card {
  background: #444;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.product-card.featured {
  border: 2px solid #ff6b6b;
}

.product-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff6b6b;
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
}

.out-of-stock {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
}

.product-info {
  padding: 20px;
}

.product-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.product-description {
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.product-price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 15px;
}

.product-sizes {
  margin-bottom: 15px;
}

.product-sizes label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #ffffff;
}

.product-sizes select {
  width: 100%;
  padding: 8px;
  border: 2px solid #666;
  border-radius: 5px;
  background: #555;
  color: #ffffff;
}

.product-actions {
  margin-top: 15px;
}

.add-to-cart-btn {
  width: 100%;
  padding: 12px;
  background: #ffffff;
  color: #1a1a1a;
  border: 2px solid #ffffff;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-to-cart-btn:hover:not(.disabled) {
  background: transparent;
  color: #ffffff;
}

.add-to-cart-btn.disabled {
  background: #666;
  color: #ccc;
  cursor: not-allowed;
  border-color: #666;
}

/* Cart Styles */
.cart-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.cart-header {
  text-align: center;
  margin-bottom: 40px;
}

.cart-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.cart-header p {
  font-size: 1.1rem;
  color: #ccc;
}

.cart-content {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
  margin-bottom: 40px;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto auto;
  gap: 20px;
  align-items: center;
  padding: 20px;
  background: #444;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.cart-item.removing {
  opacity: 0;
  transform: translateX(-100%);
}

.item-image {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 5px;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-details h4 {
  margin-bottom: 5px;
  color: #ffffff;
}

.item-size {
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.item-price {
  font-weight: 600;
  color: #ffffff;
}

.item-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-btn {
  width: 30px;
  height: 30px;
  border: 2px solid #666;
  background: #555;
  color: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.quantity-btn:hover {
  background: #007bff;
  color: white;
  border-color: #007bff;
}

.quantity {
  font-weight: 600;
  min-width: 20px;
  text-align: center;
  color: #ffffff;
}

.item-total {
  font-size: 1.1rem;
  font-weight: bold;
  color: #ffffff;
}

.item-actions {
  display: flex;
  align-items: center;
}

.remove-btn {
  width: 40px;
  height: 40px;
  border: 2px solid #dc3545;
  background: #555;
  color: #dc3545;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.remove-btn:hover {
  background: #dc3545;
  color: white;
}

.cart-summary {
  position: sticky;
  top: 20px;
  height: fit-content;
}

.summary-card {
  background: #444;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.summary-card h3 {
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 1.3rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding: 10px 0;
  border-bottom: 1px solid #666;
  color: #ccc;
}

.summary-row.total {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffffff;
  border-bottom: 2px solid #ffffff;
  margin-bottom: 25px;
}

.checkout-btn {
  width: 100%;
  padding: 15px;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.checkout-btn:hover:not(:disabled) {
  background: #218838;
}

.checkout-btn:disabled {
  background: #666;
  cursor: not-allowed;
}

.continue-shopping {
  display: block;
  text-align: center;
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.continue-shopping:hover {
  color: #0056b3;
  text-decoration: none;
}

.empty-cart {
  text-align: center;
  padding: 60px 20px;
}

.empty-cart-content i {
  font-size: 4rem;
  color: #ccc;
  margin-bottom: 20px;
}

.empty-cart-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.empty-cart-content p {
  color: #ccc;
  margin-bottom: 30px;
}

/* Checkout Styles */
.checkout-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.checkout-header {
  text-align: center;
  margin-bottom: 40px;
}

.checkout-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.checkout-header p {
  font-size: 1.1rem;
  color: #ccc;
}

.checkout-content {
  background: #444;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.checkout-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #666;
}

.form-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.form-section h3 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid #666;
}

.order-items {
  margin-bottom: 20px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #555;
  border-radius: 8px;
  margin-bottom: 10px;
}

.item-info h4 {
  color: #ffffff;
  margin-bottom: 5px;
}

.item-info p {
  color: #ccc;
  font-size: 0.9rem;
  margin: 2px 0;
}

.item-quantity {
  color: #ccc;
  font-weight: 600;
}

.item-price {
  color: #ffffff;
  font-weight: bold;
  font-size: 1.1rem;
}

.order-totals {
  background: #555;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 5px 0;
  color: #ccc;
}

.total-row.total {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffffff;
  border-top: 2px solid #666;
  padding-top: 15px;
  margin-top: 15px;
}

.form-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.btn {
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: #007bff;
  color: white;
}

.btn-primary:hover {
  background: #0056b3;
}

.btn-secondary {
  background: #6c757d;
  color: white;
}

.btn-secondary:hover {
  background: #545b62;
}

/* Responsive Design */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }

  .cart-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cart-item {
    grid-template-columns: 80px 1fr;
    gap: 15px;
  }

  .item-quantity,
  .item-total,
  .item-actions {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 10px;
  }

  .item-quantity {
    order: 1;
  }

  .item-total {
    order: 2;
  }

  .item-actions {
    order: 3;
  }

  .checkout-content {
    padding: 20px;
  }

  .form-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .cart-item {
    padding: 15px;
  }

  .item-image {
    width: 80px;
    height: 80px;
  }

  .checkout-container {
    padding: 10px;
  }

  .checkout-content {
    padding: 15px;
  }
}

/* Ticket Modal Styles */
.ticket-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

.ticket-modal {
  background: white;
  border-radius: 15px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  animation: slideInUp 0.3s ease;
}

.ticket-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid #eee;
  background: #f8f9fa;
  border-radius: 15px 15px 0 0;
}

.ticket-modal-header h3 {
  margin: 0;
  color: #333;
  font-size: 1.4rem;
}

.ticket-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.ticket-modal-close:hover {
  background: #e9ecef;
  color: #333;
}

.ticket-modal-content {
  padding: 25px;
}

.event-details {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.event-details h4 {
  color: #333;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.event-location {
  color: #666;
  margin-bottom: 5px;
  font-size: 1rem;
}

.event-date {
  color: #888;
  font-size: 0.9rem;
}

.ticket-options h5 {
  margin-bottom: 15px;
  color: #333;
  font-size: 1.1rem;
}

.ticket-type {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ticket-type:hover {
  border-color: #007bff;
  background: #f8f9ff;
}

.ticket-type.selected {
  border-color: #007bff;
  background: #e3f2fd;
}

.ticket-info h6 {
  margin: 0 0 5px 0;
  color: #333;
  font-size: 1rem;
}

.ticket-info p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

.ticket-price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #007bff;
}

.ticket-quantity {
  margin: 20px 0;
  text-align: center;
}

.ticket-quantity label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #333;
}

.ticket-quantity select {
  padding: 8px 12px;
  border: 2px solid #ddd;
  border-radius: 5px;
  background: white;
  font-size: 1rem;
  min-width: 80px;
}

.ticket-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 25px;
}

.btn-primary,
.btn-secondary {
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 100px;
}

.btn-primary {
  background: #007bff;
  color: white;
}

.btn-primary:hover {
  background: #0056b3;
}

.btn-secondary {
  background: #6c757d;
  color: white;
}

.btn-secondary:hover {
  background: #545b62;
}

/* Notification Styles */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive Design for Ticket Modal */
@media (max-width: 768px) {
  .ticket-modal {
    width: 95%;
    margin: 20px;
  }

  .ticket-modal-content {
    padding: 20px;
  }

  .ticket-type {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .ticket-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

/* Ticket Event Info Styles */
.ticket-event-info {
  margin: 15px 0;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #007bff;
}

.ticket-event-location,
.ticket-event-date {
  margin: 5px 0;
  font-size: 0.9rem;
  color: #666;
}

.ticket-event-location {
  font-weight: 600;
  color: #333;
}

.ticket-type-badge {
  display: inline-block;
  background: #007bff;
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 8px;
}

/*# sourceMappingURL=style.css.map */
