/* Custom CSS file to apply the Final Header Design (White Background/Navy Accent) and all previous features */

:root {
  --bity-navy: #3c0400; /* Very Dark Blue (Active Block Background) */
  --bity-light-blue: #7c2706ff;
  --bity-white: #FAF9FF;
  --bity-accent-orange: #fc4750; /* Link text color on active block */
  --bity-header-link: #910f0b; /* Dark text for links on white background */
}

body {
    background-color: var(--bity-white); /* White background for the main page */
    color: var(--bity-navy);
}

/* ======================================================================= */
/* --- HEADER STYLES (White Header with Navy Active Block) --- */
/* ======================================================================= */

.navbar-custom {
    background-color: var(--bity-white) !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* Soft shadow */
    padding: 10px 0; /* Add padding for space */
}

.navbar-custom .navbar-brand {
    color: var(--bity-navy) !important;
    font-size: 2em; 
    font-weight: bold;
}

.navbar-custom .nav-link {
    color: var(--bity-header-link) !important; 
    font-size: 0.9em;
    font-weight: normal;
    padding: 10px 15px !important; 
    margin: 0 5px;
    transition: all 0.2s ease-in-out;
}

.navbar-custom .nav-link:hover {
    color: var(--bity-navy) !important; 
}

/* Active Link Block Style */
.nav-item.active .nav-link {
    background-color: var(--bity-white) !important;
    color: var(--bity-accent-orange) !important; /* Orange text on dark blue block */
    font-weight: bold;
}

/* Logo Centering Helper Class (from header.php) */
.navbar-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 120px; 
    width: auto;
    z-index: 1000;
}

/* Primary Button style (Navy Blue Button on White Header) */
.btn-primary-bity {
    background-color: var(--bity-navy);
    border-color: var(--bity-navy);
    color: var(--bity-white); 
    font-weight: bold;
    border-radius: 4px;
    padding: 8px 20px;
}

.btn-primary-bity:hover {
    background-color: #ff9090; 
    border-color: #2f0000;
    color: var(--bity-light-blue);
}
/* ======================================================================= */


/* --- Hero/Banner Styles (Dark Section - Retained) --- */
.hero-banner {
    background: url('../img/background.jpg') no-repeat center center;
    background-color: var(--bity-navy); 
    background-blend-mode: multiply; 
    background-size: cover;
    height: 500px; 
    position: relative;
    color: var(--bity-white);
    text-align: center;
    padding-top: 5rem;
}

.hero-logo-center {
    width: 150px; 
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.7)); 
}

.content-area-white {
    background-color: var(--bity-white);
    padding: 3rem 0;
}


/* --- Product Listing Card Styles (Vertical/Image-Top) --- */
.song-article-card {
    border: 1px solid #ffffff; 
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bity-white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.song-article-card:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.song-card-image-top {
    width: 100%;
    height: 200px; 
    overflow: hidden;
    position: relative;
    background-color: var(--bity-navy); 
}

.song-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    filter: brightness(0.8); 
}

.song-card-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.song-card-title {
    font-size: 1.2em;
    font-weight: 900; 
    color: var(--bity-navy) !important; 
    line-height: 1.2;
    margin-bottom: 10px;
}

.song-card-price-meta {
    margin-top: auto; 
    padding-top: 10px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.song-card-price {
    font-size: 1.1em;
    color: var(--bity-accent-orange) !important;
    font-weight: bold;
}

.song-card-action {
    color: var(--bity-navy) !important;
    font-size: 0.9em;
    font-weight: bold;
}
/* --- END Product Listing Card Styles --- */