/* style/privacy-policy.css */

/* General page styling */
.page-privacy-policy {
    color: #ffffff; /* Light text for dark body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-privacy-policy__hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, rgba(26, 26, 46, 0.8) 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-privacy-policy__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-privacy-policy__hero-title {
    font-size: 3.2em;
    color: #e94560; /* Accent color for title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__hero-description {
    font-size: 1.3em;
    color: #f0f0f0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-privacy-policy__hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    object-fit: cover;
    filter: brightness(0.9); /* Subtle filter to blend with background, NOT changing color */
    min-width: 200px;
    min-height: 200px;
}

.page-privacy-policy__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: rgba(26, 26, 46, 0.85); /* Slightly lighter than body for contrast */
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__section {
    margin-bottom: 50px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05); /* Very subtle transparent white for sections */
    border-radius: 8px;
    border-left: 5px solid #e94560;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__section-title {
    font-size: 2.2em;
    color: #e94560;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(233, 69, 96, 0.3);
}

.page-privacy-policy__subsection-title {
    font-size: 1.8em;
    color: #f0f0f0;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-privacy-policy__paragraph {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.page-privacy-policy__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-privacy-policy__list-item {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-privacy-policy__link {
    color: #e94560;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
    color: #ff6b81;
    text-decoration: underline;
}

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

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

.page-privacy-policy__contact-item {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #e0e0e0;
}

.page-privacy-policy__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    text-align: center;
    margin-top: 20px;
}

.page-privacy-policy__button--primary {
    background-color: #e94560;
    color: #ffffff;
    border: 2px solid #e94560;
}

.page-privacy-policy__button--primary:hover {
    background-color: #ff6b81;
    transform: translateY(-2px);
}

.page-privacy-policy__button--cta {
    background-color: #e94560;
    color: #ffffff;
    border: 2px solid #e94560;
    padding: 15px 30px;
    font-size: 1.3em;
    margin-top: 30px;
}

.page-privacy-policy__button--cta:hover {
    background-color: #ff6b81;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

.page-privacy-policy__cta-section {
    text-align: center;
    background-color: #1a1a2e;
    padding: 50px 30px;
    border-radius: 10px;
    margin-top: 60px;
    border: none;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-privacy-policy__hero-title {
        font-size: 2.8em;
    }
    .page-privacy-policy__hero-description {
        font-size: 1.2em;
    }
    .page-privacy-policy__section-title {
        font-size: 2em;
    }
    .page-privacy-policy__subsection-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy {
        padding-top: var(--header-offset-mobile, 80px); /* Adjust for mobile header offset */
    }
    .page-privacy-policy__hero-section {
        padding: 60px 15px;
    }
    .page-privacy-policy__hero-title {
        font-size: 2.2em;
    }
    .page-privacy-policy__hero-description {
        font-size: 1em;
    }
    .page-privacy-policy__content-area {
        padding: 20px 15px;
    }
    .page-privacy-policy__section {
        padding: 20px;
        margin-bottom: 30px;
    }
    .page-privacy-policy__section-title {
        font-size: 1.8em;
        margin-bottom: 15px;
    }
    .page-privacy-policy__subsection-title {
        font-size: 1.4em;
        margin-top: 20px;
    }
    .page-privacy-policy__paragraph,
    .page-privacy-policy__list-item,
    .page-privacy-policy__contact-item {
        font-size: 0.95em;
    }
    .page-privacy-policy__button {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-privacy-policy__button--cta {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    /* Mobile image overflow prevention */
    .page-privacy-policy__hero-image,
    .page-privacy-policy__image-full {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure min size for mobile too */
        min-height: 200px; /* Ensure min size for mobile too */
    }
}

/* Ensure no small images are generated by CSS */
.page-privacy-policy img {
    min-width: 200px;
    min-height: 200px;
}