* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: black;
  color: #eee;
  line-height: 1.6;
}

.showcase {
  max-width: 900px;
  margin: 40px auto 80px auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 0 20px;
  color: lightgray; 
  font-size: 15px;
  font-weight: 300;
  font-family: 'Open Sans', sans-serif;
  letter-spacing: 1px;
}

.song-container {
  background: #222; 
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(0,0,0,0.7);
  transition: background 0.3s ease;
}

.song-container:not(.playing):hover {
  background: #333; 
}

.song-container.playing {
  background: #333 !important; 
}

.play-button {
  height: 50px;
  width: 50px;
  flex-shrink: 0;
  margin-right: 20px;
  color:black;
  transition: filter 0.3s ease;
}

.song-container.playing .play-button {
  filter: brightness(0.8) saturate(0%) contrast(120%); 
}

.sound-wave {
  height: 80px; 
  width: 600px;  
  opacity: 0.8;
}


header {
  background: #1f1f1f;
  padding: 15px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0,0,0,0.8);
}

.logo-section {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #4caf50;
}

.logo-section img.logo {
  height: 50px;
  margin-right: 12px;
}

.logo-section h1 {
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 1.6rem;
}

nav ul.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul.nav-links li a {
  color: #eee;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav ul.nav-links li a:hover,
nav ul.nav-links li a:focus {
  color: #4caf50;
  outline: none;
}

section.banner {
  height: 90vh; 
  background: url('../images/home/back.png') center center/cover no-repeat;
  position: relative;
  transition: transform 0.5s ease;
  will-change: transform;
  margin-bottom: 10px;
}

section.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1); 
  z-index: 1;
}


/* Hero Section */
section.hero {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: -120px auto 60px auto; 
  background: rgba(76, 175, 80, 0.85); 
  color: #fff;
  padding: 30px 40px;
  border-radius: 8px;
  font-size: 1.3rem;
  font-style: italic;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  line-height: 1.5;
  font-weight: 600;
}

/* Info Section */
section.info-section {
  background: #222;
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto 60px auto;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(76, 175, 80, 0.3);
}

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

.info-card {
  background: #333;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.7);
  transition: transform 0.3s ease;
  text-align: center;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.7);
}

.info-card h3 {
  color: #4caf50;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 1.2px;
}

.info-card p {
  color: #ddd;
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 10px;
}
.info-card-img {
  width: 100%;            
  height: 180px;    
  object-fit: cover;       
  border-radius: 8px 8px 0 0; 
  margin-bottom: 15px;      
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  display: block;
}
footer {
  background: #1f1f1f;
  color: #777;
  text-align: center;
  padding: 20px 10px;
  font-size: 0.9rem;
  letter-spacing: 1px;
  border-top: 1px solid #333;
}
@media (max-width: 600px) {
  nav ul.nav-links {
    flex-direction: column;
    gap: 15px;
  }
  
  section.hero {
    margin: -100px 20px 40px 20px;
    font-size: 1.1rem;
    padding: 25px 20px;
  }

}
.modal {
  display: none; 
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.8);
  z-index: 1000; 
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
.close:hover {
  color: #4caf50;
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.showcase-subtitle {
  text-align: center;
  color: #a5d6a7; 
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  margin-top: -30px; 
  margin-bottom: 23px;
  letter-spacing: 1px;

}
.instagram-button {
  display: inline-block;
  background: #1a892c;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
  transition: background 0.3s;
  margin-bottom: 20px;
}

.instagram-button:hover {
  background: #4caf50;
}

