html,
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  box-sizing: border-box;
  overflow-x: hidden;
}

header {
  background-color: #333;
  color: #fff;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px;
  background-color: #444;
  position: relative;
  z-index: 1000;
  width: 100%;
}

.logo img {
  height: 50px;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin-left: 20px;
}

.nav-link {
  text-decoration: none;
  color: #fff;
  padding: 8px 12px;
  transition: background-color 0.3s ease;
}

.nav-link:hover {
  background-color: #555;
  border-radius: 4px;
}

/* Hamburger Menu Styles */
.hamburger {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

.section {
  padding: 50px 20px;
}
.section:nth-of-type(odd) {
  background-color: #f8f8f8;
}

/* Home Section */
#home {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("/images/zen_unverse.jpeg");
  background-size: cover;
 
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

/* Dark overlay */
#home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

#home h2 {
  z-index: 1;
  margin: 0;
  padding: 10px 20px;
  font-size: 2rem;
}

#home .cta-button {
  z-index: 1;
  margin: 0;
  padding: 10px 20px;
}

#home p {
  max-width: 700px;
  z-index: 1;
  margin: 0;
  padding: 10px 20px;
}

#home .cta-button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #ff5722;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

#home .cta-button:hover {
  background-color: #e64a19;
}

/* Slideshow container */
.slideshow-container {
  position: relative;
  height: 600px;
  overflow: hidden; /* Hide any overflow */
}

/* Slides */
.slide {
  display: flex;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  position: absolute;
  width: 100%;
  height: 100%;
}

/* Slide images */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Next and previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  transform: translateY(-50%); /* Center vertically */
}

.prev {
  left: 10px; /* Adjust distance from left */
  border-radius: 3px 0 0 3px;
}

.next {
  right: 10px; /* Adjust distance from right */
  border-radius: 3px 0 0 3px;
}

/* Hover effect for buttons */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.active {
  opacity: 1;
}

/* Gallery Styles */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

#gallery h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #333;
  text-align: center;
  position: relative;
}

#gallery h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #ff5722;
  margin: 20px auto 0;
}

.overlay-content a {
  display: flex;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: 0.5s ease;
}

.gallery-item:hover .overlay {
  height: 100%;
}

.overlay-content {
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.view-more {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  background-color: #ff5722;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.view-more:hover {
  background-color: #e64a19;
}

/* About Us Section Styles */
#about {
  background-color: #f8f8f8;
  padding: 80px 0;
}

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

#about h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #333;
  text-align: center;
  position: relative;
}

#about h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #ff5722;
  margin: 20px auto 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
}

#about p {
  font-size: 1.1em;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.about-text h3 {
  font-size: 1.8em;
  color: #444;
  margin-top: 30px;
  margin-bottom: 15px;
}

.about-text ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}

.about-text li {
  font-size: 1.1em;
  color: #666;
  padding: 8px 16px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-text li:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Contact Us Section Styles */
#contact {
  background-color: #fff;
  padding: 80px 0;
}

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

#contact h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #333;
  text-align: center;
  position: relative;
}

#contact h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #ff5722;
  margin: 20px auto 0;
}

.contact-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.contact-form,
.contact-info {
  flex: 1;
}

.contact-form h3,
.contact-info h3 {
  font-size: 1.8em;
  color: #444;
  margin-bottom: 20px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1em;
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

.contact-form button {
  padding: 12px 20px;
  background-color: #ff5722;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #e64a19;
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #666;
}

.contact-info i {
  margin-right: 10px;
  color: #ff5722;
}

.contact-map {
  margin-top: 20px;
}

.contact-map img {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Upcoming Events Section Styles */
#events {
  background-color: #f8f8f8;
  padding: 80px 0;
}

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

#events h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
  position: relative;
}

#events h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #ff5722;
  margin: 20px auto 0;
}

.section-description {
  text-align: center;
  font-size: 1.2em;
  color: #666;
  margin-bottom: 40px;
}

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

.event-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

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

.event-details {
  padding: 20px;
}

.event-details h3 {
  font-size: 1.4em;
  color: #333;
  margin-bottom: 10px;
}

.event-date,
.event-time,
.event-location {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 5px;
}

.event-details i {
  margin-right: 5px;
  color: #ff5722;
}

.event-description {
  font-size: 1em;
  color: #444;
  margin: 15px 0;
}

.event-link {
  display: inline-block;
  padding: 8px 15px;
  background-color: #ff5722;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.event-link:hover {
  background-color: #e64a19;
}

/* Music Releases Section Styles */
#music-releases {
  background-color: #f8f8f8;
  padding: 80px 0;
}

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

#music-releases h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #333;
  text-align: center;
  position: relative;
}

#music-releases h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #ff5722;
  margin: 20px auto 0;
}

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

.release-item {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.release-item:hover {
  transform: translateY(-5px);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  cursor: pointer;
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-placeholder::after {
  content: "\25B6"; /* Play triangle */
  font-size: 3em;
  color: #fff;
}

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

.release-info {
  padding: 20px;
}

.release-info h3 {
  font-size: 1.4em;
  color: #333;
  margin-bottom: 5px;
}

.artist-name {
  font-size: 1em;
  color: #666;
  margin-bottom: 10px;
}

.song-bio {
  font-size: 0.9em;
  color: #444;
  line-height: 1.6;
}

.view-more {
  display: block;
  margin: 0 auto;
  padding: 12px 24px;
  background-color: #ff5722;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.view-more:hover {
  background-color: #e64a19;
}

/* Our Success in Numbers Section Styles */
#success-numbers {
  background-color: #fff;
  padding: 80px 0;
}

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

#success-numbers h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
  position: relative;
}

#success-numbers h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #ff5722;
  margin: 20px auto 0;
}

.section-description {
  text-align: center;
  font-size: 1.2em;
  color: #666;
  margin-bottom: 40px;
}

.success-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.success-item {
  text-align: center;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.success-item:hover {
  transform: translateY(-5px);
}

.success-item i {
  font-size: 3em;
  color: #ff5722;
  margin-bottom: 15px;
}

.success-item h3 {
  font-size: 2em;
  color: #333;
  margin-bottom: 10px;
}

.success-item p {
  font-size: 1em;
  color: #666;
}

.slideshow {
  display: hidden;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .success-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Recent Releases Section Styles */
#recent-releases {
  background-color: #f8f8f8;
  padding: 80px 0;
}

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

#recent-releases h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #333;
  text-align: center;
  position: relative;
}

#recent-releases h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #ff5722;
  margin: 20px auto 0;
}

.carousel {
  position: relative;
  height: 600px;
  width: 100%;
  overflow: hidden;
}

.carousel-track-container {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.carousel-track {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  padding: 0;
  font-size: 30px;
  width: 50px; /* Ensure button size is adequate */
  height: 50px; /* Ensure button size is adequate */
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-button:hover,
.carousel-button:focus {
  background: rgba(0, 0, 0, 0.8);
}

.carousel-button.prev {
  left: 10px;
}

.carousel-button.next {
  right: 10px;
}

.carousel-caption {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  text-align: center;
}

.carousel-caption h3 {
  margin: 0 0 10px;
  font-size: 1.5em;
}

.carousel-caption p {
  margin: 0;
  font-size: 1em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel {
    height: 400px;
  }
}

footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.footer-content {
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-links,
.social-icons {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.social-icons li,
.footer-links li {
  margin: 0 10px;
}

.social-icons a,
.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}

.social-icons a:hover,
.footer-links a:hover {
  color: #ddd;
}

/* Responsive footer adjustments */
@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-links {
    order: 2; /* Move the links to center position */
  }

  .social-icons {
    order: 3; /* Move social icons to right position */
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: #444;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: 1000;
  }

  .nav-menu.active {
    visibility: visible;
    opacity: 1;
  }

  .nav-menu li {
    margin: 20px 0;
  }

  .hamburger {
    display: block;
    z-index: 1001;
  }

  #home {
    height: 70vh;
    background-size: cover;
  }

  .slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .section {
    padding: 20px 10px;
  }

  .gallery-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  #about {
    padding: 60px 20px;
  }

  .about-content {
    flex-direction: column;
  }

  .about-image,
  .about-text {
    flex: none;
    width: 100%;
  }

  .about-image {
    margin-bottom: 30px;
  }

  .about-text ul {
    justify-content: center;
  }

  .contact-content {
    flex-direction: column;
  }

  .contact-form,
  .contact-info {
    width: 100%;
  }
  .events-grid {
    grid-template-columns: 1fr;
  }
}

html {
  scroll-behavior: smooth;
}

.gallery-container .overlay-content a {
  display: inline-block;
  padding: 10px 15px;
  background-color: #1db954; /* Spotify brand color */
  color: white; /* Overriding link color */
  text-decoration: none; /* Remove underline */
  border-radius: 20px;
  font-weight: bold;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.gallery-container .overlay-content a:hover,
.gallery-container .overlay-content a:focus {
  background-color: #1ed760; /* Lighter color on hover/focus */
  color: white; /* Keep text color white on hover/focus */
  text-decoration: none; /* Ensure underline does not reappear on hover/focus */
}
.view-more {
  display: inline-block;
  padding: 10px 20px;
  color: white;
  text-align: center;
  text-decoration: none; /* Removes underline from link */
  border-radius: 5px;
  border: none; /* Removes border from link if present */
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.view-more:hover,
.view-more:focus {
  background-color: #9e9e9c;
}
