/* style/privacy-policy.css */

/* Base styles for the privacy policy page */
.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light grey for general text on dark background */
    background-color: #1a1a1a; /* Dark background */
    line-height: 1.6;
}

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

/* Hero Section */
.page-privacy-policy__hero {
    background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%); /* Dark red to gold gradient */
    color: #ffffff; /* White text on gradient */
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-privacy-policy__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('[GALLERY:bg:abstract,geometric,pattern]') no-repeat center center/cover; /* Abstract pattern for background */
    opacity: 0.1;
    z-index: 0;
}

.page-privacy-policy__hero .page-privacy-policy__container {
    position: relative;
    z-index: 1;
}

.page-privacy-policy__title {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffffff; /* White for main title on gradient */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #f0f0f0; /* Light grey for subtitle */
}

.page-privacy-policy__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    margin-top: 30px;
}

/* General Section Styling */
.page-privacy-policy__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1); /* Subtle gold border */
}

.page-privacy-policy__section--alt {
    background-color: #2a2a2a; /* Slightly lighter dark background for contrast */
}

.page-privacy-policy__heading {
    font-size: 2em;
    color: #FFD700; /* Gold for headings */
    margin-bottom: 25px;
    border-left: 5px solid #8B0000; /* Dark red accent */
    padding-left: 15px;
    line-height: 1.2;
}

.page-privacy-policy__paragraph {
    margin-bottom: 15px;
    color: #f0f0f0; /* Light grey text */
}

.page-privacy-policy__paragraph strong {
    color: #FFD700; /* Gold for strong text */
}

.page-privacy-policy__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-privacy-policy__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #f0f0f0; /* Light grey list items */
}

.page-privacy-policy__list li::before {
    content: '✓'; /* Checkmark icon */
    color: #8B0000; /* Dark red checkmark */
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.page-privacy-policy__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin: 30px 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Call to Action Button */
.page-privacy-policy__button {
    display: inline-block;
    background-color: #FFD700; /* Gold button background */
    color: #8B0000; /* Dark red text on gold button */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    margin-top: 30px;
    border: none;
    cursor: pointer;
}

.page-privacy-policy__button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    color: #6a0000; /* Slightly darker red on hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-privacy-policy__title {
        font-size: 2.2em;
    }

    .page-privacy-policy__subtitle {
        font-size: 1em;
    }

    .page-privacy-policy__heading {
        font-size: 1.6em;
    }

    .page-privacy-policy__section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__title {
        font-size: 1.8em;
    }

    .page-privacy-policy__heading {
        font-size: 1.4em;
    }

    .page-privacy-policy__button {
        padding: 12px 25px;
        font-size: 1em;
    }
}