/* Hover effect on features ictons */
.feature-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 174, 239, 0.05); /* light blue tint */
  border-radius: 10px;
}

.feature-icon {
  transition: transform 0.3s ease;
}

.feature-box:hover .feature-icon {
  transform: scale(1.1);
}

/* Canadian Header */
#canadian-header {
	color: white;
	text-align: center;
	padding: 5px 0;
	font-weight: bold;
	font-size: 16px;
	position: relative;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
}



#canadian-header span {
	margin: 0 8px;
	font-size: 18px;
}

/* Tablet (Kadence default: max-width 1024px) */
@media (max-width: 1024px) {
	#canadian-header {
		font-size: 14px;
	}
	#canadian-header span {
		font-size: 16px;
	}
}

/* Mobile (Kadence default: max-width 767px) */
@media (max-width: 767px) {
	#canadian-header {
		font-size: 12px;
	}
	#canadian-header span {
		font-size: 14px;
	}
}

	
/* Footer Links */
.footer-links {
  text-align: center;
  font-size: 12px;
  padding: 10px;
  line-height: 1.5;
  word-break: break-word;
}
.footer-links a {
  color: #ffffff;
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
}

/* Footer Call Us Section */
.call_us_footer {
font-size:14px; 
text-align: center;
color:white;
}

/* For Kadence Pop Up */
.conversion-banner .wp-block-image {margin-top: 0 !important; margin-bottom:0 !important;}

/* For song catalogue styilng */
.songs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 28px;
  padding: 20px 0;
}

@media (max-width: 1024px) {
  .songs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


.songs {
  display: flex;
  align-items: center;
  gap: 12px;
}

.songs .song-art img {
  width: 48px !important;
  max-width: 48px !important;
  height: 48px !important;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  display: block;
}


.song-title-container {
  display: flex;
  flex-direction: column;
}

.song-title {
  font-weight: bold;
  font-size: 1rem;
  color: #111;
  line-height: 1.2;
}

.song-artist {
  font-size: 0.9rem;
  color: #777;
  margin-top: 2px;
}
