/* --- Professional Header Styling --- */

/* Ensures the header spans the full width and has a clean background */
.pro-header-section {
    width: 100%;
    background-color: #ffffff; /* Clean white background */
    border-bottom: 1px solid #eeeeee; /* Subtle bottom line for structure */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03); /* Very light shadow */
}

/* Container for navigation items - standard max-width and centered */
.pro-navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between; /* Space elements out */
    align-items: center;
}

/* --- Brand/Logo --- */
.pro-brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #333333; /* Dark, professional color */
    text-decoration: none;
    letter-spacing: 1px;
}

/* --- Main Navigation Links --- */
.pro-nav-links {
    display: flex;
    gap: 30px; /* Clean spacing between links */
}

.pro-nav-item {
    color: #555555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
    text-transform: uppercase; /* Use caps for a clean, professional look */
}

/* Hover/Active State - Subtle under-bar effect */
.pro-nav-item:hover,
.pro-nav-item.current {
    color: #007bff; /* A modern accent color */
}

.pro-nav-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px; /* Position below the text */
    width: 100%;
    height: 2px;
    background-color: #007bff;
    transform: scaleX(0); /* Start hidden */
    transition: transform 0.3s ease;
}

.pro-nav-item:hover::after,
.pro-nav-item.current::after {
    transform: scaleX(1); /* Reveal on hover/active */
}

/* --- New Release CTA (Call to Action) --- */
.pro-new-release-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.pro-cta-label {
    color: #777777;
    font-weight: 400;
}

.pro-cta-title {
    color: #cc0000; /* Use a strong color for "New Release" */
    font-weight: 600;
    text-decoration: none;
    padding: 5px 10px;
    border: 1px solid #cc0000;
    border-radius: 4px; /* Slightly rounded button */
    transition: background-color 0.3s ease;
}

.pro-cta-title:hover {
    background-color: #cc0000;
    color: #ffffff;
}