/* style/privacy-policy.css */

/* Base styles for the privacy policy page */
.page-privacy-policy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for dark body background */
    background-color: #1a1a2e; /* Inherited from shared.css, explicitly set for clarity */
}

.page-privacy-policy__hero-section {
    position: relative;
    width: 100%;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    background: linear-gradient(135deg, #1a1a2e 0%, #8B0000 100%); /* Blend with auxiliary color */
    color: #ffffff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.page-privacy-policy__hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.page-privacy-policy__main-title {
    font-size: 3em;
    font-weight: bold;
    color: #FFD700; /* Primary brand color for title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: #FFD700; /* Primary brand color */
    color: #1a1a2e; /* Dark text for contrast */
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-privacy-policy__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__cta-button--secondary {
    background-color: #8B0000; /* Auxiliary brand color */
    color: #ffffff; /* Light text for contrast */
    margin-left: 15px;
}

.page-privacy-policy__cta-button--secondary:hover {
    background-color: #6b0000; /* Slightly darker red on hover */
}

.page-privacy-policy__content-section {
    padding: 60px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-privacy-policy__content-section.page-privacy-policy__dark-bg {
    background-color: #1a1a2e; /* Dark background for sections */
    color: #f0f0f0;
}

.page-privacy-policy__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.page-privacy-policy__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Primary brand color for section titles */
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.page-privacy-policy__sub-title {
    font-size: 1.8em;
    color: #f0f0f0;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #8B0000; /* Auxiliary brand color for underline */
    padding-bottom: 10px;
}

.page-privacy-policy p {
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.7;
    color: #e0e0e0;
}

.page-privacy-policy ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.page-privacy-policy li {
    margin-bottom: 10px;
    font-size: 1.05em;
    line-height: 1.6;
}

.page-privacy-policy a {
    color: #FFD700; /* Primary brand color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-privacy-policy a:hover {
    color: #e6c200; /* Slightly darker gold on hover */
    text-decoration: underline;
}

.page-privacy-policy__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-privacy-policy__cta-buttons {
    margin-top: 40px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-privacy-policy__main-title {
        font-size: 2.5em;
    }
    .page-privacy-policy__section-title {
        font-size: 2em;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.5em;
    }
    .page-privacy-policy p,
    .page-privacy-policy li {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy__hero-section {
        padding: 40px 15px;
        padding-top: var(--header-offset, 120px) !important; /* Mobile header offset */
        min-height: 250px;
    }

    .page-privacy-policy__main-title {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .page-privacy-policy__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-privacy-policy__cta-button {
        padding: 12px 25px;
        font-size: 1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin: 0 !important; /* Reset margin for vertical stack */
    }
    
    .page-privacy-policy__cta-button--secondary {
        margin-top: 15px !important; /* Add top margin for stacked buttons */
        margin-left: 0 !important;
    }

    .page-privacy-policy__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px; /* Space between stacked buttons */
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-privacy-policy__content-section {
        padding: 40px 15px;
    }

    .page-privacy-policy__container {
        padding: 0;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-privacy-policy__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .page-privacy-policy__sub-title {
        font-size: 1.3em;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .page-privacy-policy p,
    .page-privacy-policy li {
        font-size: 0.95em;
        line-height: 1.6;
    }

    .page-privacy-policy ul {
        margin-left: 20px;
    }

    .page-privacy-policy__image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin: 20px auto;
        border-radius: 8px;
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__main-title {
        font-size: 1.8em;
    }
    .page-privacy-policy__section-title {
        font-size: 1.6em;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.2em;
    }
    .page-privacy-policy p,
    .page-privacy-policy li {
        font-size: 0.9em;
    }
}

/* Ensure images don't use filters */
.page-privacy-policy img {
    filter: none; /* Absolutely no filters to change colors */
}