/* style/privacy-policy.css */

/* Custom Colors */
:root {
    --bingoplus-primary: #F2C14E;
    --bingoplus-secondary: #FFD36B;
    --bingoplus-card-bg: #111111;
    --bingoplus-bg: #0A0A0A;
    --bingoplus-text-main: #FFF6D6;
    --bingoplus-border: #3A2A12;
    --bingoplus-glow: #FFD36B;
    --bingoplus-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-privacy-policy {
    font-family: Arial, sans-serif;
    color: var(--bingoplus-text-main); /* Default text color for the page content */
    background-color: var(--bingoplus-bg); /* Default background for the page content */
    line-height: 1.6;
}

.page-privacy-policy__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px 0;
    background-color: var(--bingoplus-bg);
}

.page-privacy-policy__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 400px; /* Default height for hero image */
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-privacy-policy__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 20px;
    margin-top: -100px; /* Overlap slightly with image */
    background-color: var(--bingoplus-card-bg);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--bingoplus-border);
}

.page-privacy-policy__main-title {
    font-size: clamp(1.8em, 3vw, 2.8em);
    color: var(--bingoplus-primary);
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.page-privacy-policy__hero-description {
    font-size: 1.1em;
    color: var(--bingoplus-text-main);
    margin-bottom: 30px;
}

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

.page-privacy-policy__btn-primary,
.page-privacy-policy__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-privacy-policy__btn-primary {
    background: var(--bingoplus-button-gradient);
    color: #ffffff; /* White text for contrast */
    border: none;
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-privacy-policy__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-privacy-policy__btn-secondary {
    background-color: transparent;
    color: var(--bingoplus-primary);
    border: 2px solid var(--bingoplus-primary);
}

.page-privacy-policy__btn-secondary:hover {
    background-color: var(--bingoplus-primary);
    color: var(--bingoplus-card-bg); /* Dark text on hover */
    transform: translateY(-2px);
}

.page-privacy-policy__section {
    padding: 60px 20px;
    background-color: var(--bingoplus-bg);
    text-align: left;
}

.page-privacy-policy__dark-section {
    background-color: var(--bingoplus-card-bg);
}

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

.page-privacy-policy__section-title {
    font-size: clamp(1.6em, 2.5vw, 2.5em);
    color: var(--bingoplus-primary);
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
    position: relative;
    padding-bottom: 10px;
}

.page-privacy-policy__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--bingoplus-secondary);
    border-radius: 2px;
}

.page-privacy-policy__sub-title {
    font-size: clamp(1.2em, 2vw, 1.8em);
    color: var(--bingoplus-secondary);
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-privacy-policy__text-block {
    font-size: 1em;
    color: var(--bingoplus-text-main);
    margin-bottom: 15px;
    line-height: 1.7;
}

.page-privacy-policy__text-block a {
    color: var(--bingoplus-primary);
    text-decoration: none;
    font-weight: bold;
}

.page-privacy-policy__text-block a:hover {
    text-decoration: underline;
}

.page-privacy-policy__image-and-text {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-top: 30px;
}

.page-privacy-policy__image-and-text--reversed {
    flex-direction: row-reverse;
}

.page-privacy-policy__text-content {
    flex: 1;
}

.page-privacy-policy__image-wrapper {
    flex: 0 0 400px; /* Fixed width for image on desktop */
    max-width: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--bingoplus-border);
}

.page-privacy-policy__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-privacy-policy__contact-link {
    color: var(--bingoplus-secondary);
    text-decoration: none;
    font-weight: bold;
}

.page-privacy-policy__contact-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-privacy-policy__hero-image-wrapper {
        height: 300px;
    }

    .page-privacy-policy__hero-content {
        margin-top: -80px;
        max-width: 700px;
    }

    .page-privacy-policy__image-and-text {
        flex-direction: column;
        gap: 30px;
    }

    .page-privacy-policy__image-and-text--reversed {
        flex-direction: column;
    }

    .page-privacy-policy__image-wrapper {
        flex: none;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy__hero-image-wrapper {
        height: 250px;
    }

    .page-privacy-policy__hero-content {
        margin-top: -60px;
        padding: 15px;
        border-radius: 8px;
    }

    .page-privacy-policy__main-title {
        font-size: 1.8em;
    }

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

    .page-privacy-policy__cta-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .page-privacy-policy__btn-primary,
    .page-privacy-policy__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

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

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

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

    .page-privacy-policy__text-block {
        font-size: 0.95em;
    }

    .page-privacy-policy__container,
    .page-privacy-policy__hero-content {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-privacy-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-privacy-policy__image-wrapper {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__hero-image-wrapper {
        height: 200px;
    }

    .page-privacy-policy__hero-content {
        margin-top: -40px;
        padding: 10px;
    }

    .page-privacy-policy__main-title {
        font-size: 1.5em;
    }

    .page-privacy-policy__hero-description {
        font-size: 0.9em;
    }

    .page-privacy-policy__section {
        padding: 30px 10px;
    }

    .page-privacy-policy__section-title {
        font-size: 1.8em;
    }

    .page-privacy-policy__sub-title {
        font-size: 1.2em;
    }

    .page-privacy-policy__text-block {
        font-size: 0.9em;
    }
}