/*
* This section contains styles specifically for the "Do Not Sell My Information" Page (do-not-sell.html).
*/

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0; /* Ensure no default body margin */
    overflow-x: hidden; /* Prevent horizontal scrolling */
    overflow-y: auto; /* Allow vertical scrolling on the body */
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Stack children vertically */
    min-height: 100vh; /* Ensure body takes at least full viewport height */
    
    /* Default opacity to 0 and apply transition directly to body for page transitions */
    opacity: 0; 
    transition: opacity 1s ease-in-out; 
}

/* --- Shared Header & Footer Styles (Copied from stylemusic.css for consistency) --- */

.page-content-wrapper {
    width: 100%;
    flex-grow: 1; /* Allow content wrapper to take available space */
    display: flex;
    flex-direction: column;
    /* Apply SVG Filters for grainy effect here - assuming it's still desired */
    /* You would need to include the SVG filter definition in do-not-sell.html's body if you want this effect */
    /* filter: url(#grainyFilter); */ 
    position: relative; /* Ensure it stacks correctly */
    z-index: 1; /* Ensure content is above the body's background */
}

.header-about-page {
    background-color: #000; /* Solid black background */
    position: relative; /* Relative to flow, but content inside is fixed */
    top: 0;
    left: 0;
    right: 0;
    z-index: 10; /* Ensure header is on top */
    width: 100%;
    border-bottom: none; /* Removed border */
    flex-shrink: 0; /* Prevent header from shrinking */
    height: 60px; /* Fixed height for the header */
    box-sizing: border-box;
    display: flex; /* Make header a flex container */
    align-items: center; /* Vertically center content */
    justify-content: center; /* Center content horizontally */
}

.header-about-page .container {
    max-width: none; /* Remove max-width to allow full edge-to-edge content */
    width: 100%; /* Ensure it spans full width */
    margin: 0; /* Remove auto margins */
    padding: 0 1rem; /* Add some padding to the sides */
    height: 100%; /* Fixed height for the header to match the image's appearance */
    display: flex;
    justify-content: center; /* Changed to center to put nav links in the middle */
    align-items: center;
}

.nav-links-left {
    display: flex;
    align-items: stretch; /* Stretch items to fill container height */
    gap: 1.5rem; /* Increased space between nav items */
    justify-content: center; /* Center the "BACK" button */
    width: 100%; /* Ensure it takes full width to center its content */
}

.nav-item {
    color: #fff; /* White links */
    text-decoration: none;
    font-weight: bold;
    font-family: "Impact", sans-serif; /* Use Impact font for nav items */
    padding: 1rem 1.5rem; /* Increased padding for bigger buttons */
    display: flex; /* Make links flex containers */
    align-items: center; /* Vertically center content within links */
    height: 100%; /* Take full height of parent */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    border-radius: 0; /* Sharp edges */
    text-transform: uppercase; /* Ensure text is uppercase */
    font-size: 1.3rem; /* Reverted font size */
    text-shadow: none; /* Removed text-shadow (shine) */
    background-color: transparent; /* Ensure no background color by default */
    border: 1px solid transparent; /* Transparent border by default */
}

.nav-item:hover {
    color: #000; /* Text color on hover */
    background-color: #fff; /* Highlight background on hover */
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8); /* Brighter white glow on hover */
    transform: translateY(-2px); /* Slight lift effect */
    border: 1px solid #fff; /* White border on hover */
}

.website-branding {
    font-weight: bold;
    font-family: "Impact", sans-serif; /* Use Impact font for nav items */
    color: #fff; /* White color, now brighter due to removed shadow */
    text-shadow: none; /* Removed text-shadow (underglow/shine) */
    font-size: 1.9rem;
    z-index: 10; /* Ensure it's on top */
    position: fixed; /* Position fixed to top right */
    top: 0.45rem; /* Reverted to original position */
    right: 1rem; /* 16px from right */
    transform: none; /* Removed vertical centering transform */
    animation: rec-blink 1s infinite alternate; /* Apply the same blinking animation */
}

@keyframes rec-blink {
    0% { opacity: 1; }
    50% { opacity: 0.4; } /* More pronounced blink */
    100% { opacity: 1; }
}

.footer-about-page {
    background-color: #000;
    color: #fff;
    padding: 1rem 1.5rem; 
    text-align: center;
    position: relative; /* Changed to relative so it occupies space */
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0; 
}

.copyright-about-page {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: bold;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.5);
}

/* --- Page Transition Classes (FOR ALL PAGES) --- */
body.page-active { 
    opacity: 1;
}

body.page-fade-out {
    opacity: 0;
}


/* --- Policy Page Specific Styles --- */

.main-content-policy-page {
    flex-grow: 1;
    position: relative;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
    box-sizing: border-box;
    min-height: calc(100vh - 60px - 60px); /* Adjust for header and footer height */
    z-index: 1;
}

.policy-content-wrapper {
    max-width: 800px;
    width: 100%;
    text-align: left;
    margin: 0 auto;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 0px;
}

.policy-heading {
    font-family: "Impact", sans-serif;
    font-size: 2.8rem;
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.2;
}

.policy-intro {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.policy-section {
    margin-bottom: 2rem;
}

.section-title {
    font-family: "Impact", sans-serif;
    font-size: 1.8rem;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.5rem;
}

.policy-section p, .policy-list li {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.policy-list {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-list li {
    margin-bottom: 0.5rem;
}

.policy-list li strong {
    color: #fff;
}

.policy-link {
    color: #852828;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.policy-link:hover {
    color: #e62323;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .policy-heading {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .policy-intro, .policy-section p, .policy-list li {
        font-size: 0.9rem;
    }
    .policy-content-wrapper {
        padding: 0.75rem;
    }

    /* Mobile specific adjustments for website branding */
    .website-branding {
        font-size: 1.2rem; /* Adjusted font size for mobile */
        position: absolute; /* Change to absolute positioning */
        top: 0.5rem; /* Position above the header */
        left: 50%; /* Center horizontally */
        transform: translateX(-50%); /* Adjust for true centering */
        width: auto; /* Allow width to be determined by content */
        text-align: center; /* Ensure text is centered */
        right: auto; /* Remove right positioning */
        padding: 0.2rem 0.5rem; /* Add some padding */
        background-color: rgba(0, 0, 0, 0.7); /* Add a background for readability */
        border-radius: 3px;
        box-sizing: border-box;
    }

    .header-about-page {
        padding-top: 2.5rem; /* Add padding to header to make space for branding */
        height: auto; /* Allow header to expand */
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center items horizontally */
    }

    .header-about-page .container {
        flex-direction: column; /* Stack nav items vertically */
        height: auto;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .nav-links-left {
        width: 100%;
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .nav-item {
        padding: 0.5rem 0.5rem;
    }
}
