/* Themify Customize Styling */
#headerwrap {	
	margin: 0px;
	padding: 0px; 
}
#pagewrap #headerwrap.fixed-header, .transparent-header #pagewrap #headerwrap.fixed-header {	background: none;
	background-color: rgba(0,0,0,0.12); 
}
#headerwrap.fixed-header #header {	
	color: rgba(227,223,223,0.93); 
}
body:not(.mobile_menu_active) #headerwrap.fixed-header #header a {	
	color: rgba(0,0,0,0.71); 
}
body[class*="themify"] #site-logo a img {	
	height: 50px; 
}
#site-logo {	
	margin-left: -100px; 
}
#main-nav {	background-image: none; 
}
#main-nav a {	
	padding-top: 20px;	font-weight:normal;
 
}
#main-nav-wrap #main-nav a:hover, #main-nav-wrap #main-nav > li > a:hover {	
	color: rgba(255,106,0,0.87); 
}
#main-nav-wrap #main-nav .current_page_item > a, #main-nav .current-menu-item > a, #main-nav > .current_page_item > a, #main-nav > .current-menu-item > a {	
	color: #fe6500; 
}
#main-nav-wrap #main-nav .current_page_item a:hover,  #main-nav .current-menu-item a:hover {	
	color: rgba(255,106,0,0.70); 
}
#footerwrap {	background: none;
	background-color: #143d15; 
}
#footer {	
	color: #fff7f2; 
}
@media screen and (max-width: 1280px) { /* Themify Customize Styling */
body[class*="themify"] #site-logo a img {	
	height: 50px; 
}
 }@media screen and (max-width: 768px) { /* Themify Customize Styling */
body[class*="themify"] #site-logo a img {	
	height: 50px; 
}
 }@media screen and (max-width: 680px) { /* Themify Customize Styling */
body[class*="themify"] #site-logo a img {	
	height: 50px; 
}
 }
/* Themify Custom CSS */
#content {
    width: 71%;
    padding: 0 0;
}

/* Make each countdown unit stack vertically */
.counter-box .cb-unit {
  display: inline-flex;        /* keep units horizontal */
  flex-direction: column;      /* number above label */
  align-items: center;         /* center label under number */
  margin-right: 10px;          /* spacing between units */
}

/* Style the number */
.counter-box .cb-number {
  font-size: 70px;             /* large number */
  color: #fff;                 /* white number */
  line-height: 1;              /* reduces extra space */
}

/* Style the label */
.counter-box .cb-label {
  font-size: 14px;             /* smaller font for letters/labels */
  color: rgb(221,37,37);       /* red labels */
  font-weight: bold;
  line-height: 1;              /* reduces space between number and label */
}

/* ACCORDION SONGS*/

/* Container */
ul.songs-list {
    max-width: 900px !important;
    margin: 20px auto !important;
    padding: 0 !important;
    list-style: none !important;
    font-family: Arial, sans-serif !important;
}

/* Each song item */
ul.songs-list li.song-item {
    border: 1px solid #FE6500; /* orange accent border */
    border-radius: 6px;
    margin-bottom: 10px;
    background: #fafafa; /* very light neutral, soft on eyes */
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

/* Hover effect */
ul.songs-list li.song-item:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

/* Song title */
ul.songs-list li.song-item .song-title {
    cursor: pointer;
    padding: 12px 16px;
    background: #fff; /* clean white for focus */
    color: #FE6500; /* title text in main orange */
    font-weight: bold;
    position: relative;
    border-bottom: 1px solid #FFB07C; /* subtle orange line */
    transition: background 0.2s ease, color 0.2s ease;
}

/* Hover on title */
ul.songs-list li.song-item .song-title:hover {
    background: #fff3eb; /* very soft warm highlight */
    color: #FE6500;
}

/* Arrow icon */
ul.songs-list li.song-item .song-title::after {
    content: "\25BC"; /* down arrow */
    float: right;
    color: #FE6500;
    transition: transform 0.3s ease;
}

/* Rotate arrow when active */
ul.songs-list li.song-item .song-title.active::after {
    transform: rotate(180deg);
}

/* Lyrics content */
ul.songs-list li.song-item .song-lyrics {
    display: none;
    padding: 12px 16px;
    background: #fff; /* keep lyrics white */
    color: #000; /* easy to read */
    line-height: 1.6;
    border-top: 1px solid #FE6500; /* subtle accent line */
    transition: all 0.3s ease;
}

/* Load More button styling */
.load-more-songs {
    display: block !important;
    margin: 15px auto !important;
    padding: 10px 20px !important;
    cursor: pointer !important;
    border: 1px solid #FE6500 !important;
    border-radius: 4px !important;
    background: #fff !important; /* subtle white button */
    color: #FE6500 !important; /* orange text */
    font-weight: bold !important;
    transition: all 0.2s ease !important;
}

.load-more-songs:hover {
    background: #FE6500 !important;
    color: #fff !important;
}

/* ACCORDION SONGS*/