/* style/gdpr.css */

.page-gdpr {
    color: #333333; /* Dark text for light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #FFFFFF; /* Ensure content background is white if body is white */
    padding-top: var(--header-offset, 120px); /* Apply header offset to the main content area */
}

.page-gdpr__hero-section {
    position: relative;
    background-color: #000000; /* Dark background for hero section */
    color: #FFFFFF; /* Light text for dark hero background */
    text-align: center;
    overflow: hidden;
    padding-bottom: 60px; /* Add some bottom padding to hero section */
}

.page-gdpr__hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.page-gdpr__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-gdpr__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 700px;
    color: #F0F0F0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-gdpr__hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-gdpr__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    font-size: 1.1em;
    min-width: 150px;
    text-align: center;
    border: 2px solid transparent;
}

.page-gdpr__button--register {
    background-color: #000000; /* Dark button background */
    color: #FFFFFF; /* White text as specified */
    border-color: #FFFFFF; /* White border for contrast */
}

.page-gdpr__button--register:hover {
    background-color: #FFFFFF;
    color: #000000;
    border-color: #000000;
}

.page-gdpr__button--login {
    background-color: #FCBC45; /* Yellow button background as specified */
    color: #000000; /* Dark text for yellow background */
    border-color: #FCBC45;
}

.page-gdpr__button--login:hover {
    background-color: #E0A73C; /* Slightly darker yellow on hover */\    color: #000000;
    border-color: #E0A73C;
}

.page-gdpr__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.3;
}

.page-gdpr__content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.page-gdpr__content-container {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-gdpr__section-title {
    font-size: 2.5em;
    color: #000000;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.page-gdpr__subsection-title {
    font-size: 1.8em;
    color: #000000;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-gdpr__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #333333;
}

.page-gdpr__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #333333;
}

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

.page-gdpr__link {
    color: #FCBC45; /* Use primary accent color for links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-gdpr__link:hover {
    color: #E0A73C;
    text-decoration: underline;
}

.page-gdpr__image-inline {
    display: block;
    margin: 30px auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__call-to-action {
    text-align: center;
    background-color: #F8F8F8;
    padding: 50px 30px;
    border-radius: 10px;
    margin-top: 60px;
    border: 1px solid #E0E0E0;
}

.page-gdpr__call-to-action-text {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 30px;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-gdpr {
        padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
    }

    .page-gdpr__hero-section {
        padding: 40px 15px;
        padding-top: 0; /* No double padding with main .page-gdpr */
    }

    .page-gdpr__hero-title {
        font-size: 2.2em;
    }

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

    .page-gdpr__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-gdpr__button {
        width: 100%;
        max-width: 250px;
    }

    .page-gdpr__content-section {
        padding: 30px 15px;
    }

    .page-gdpr__content-container {
        padding: 20px;
    }

    .page-gdpr__section-title {
        font-size: 2em;
    }

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

    .page-gdpr__paragraph,
    .page-gdpr__list-item {
        font-size: 0.95em;
    }

    .page-gdpr__call-to-action-text {
        font-size: 1.2em;
    }
}

/* Ensure all images within .page-gdpr are responsive and meet minimum size requirements */
.page-gdpr img {
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
    max-width: 100%;
    height: auto;
}