/* style/gdpr.css */

/* General Styles for the GDPR page */
.page-gdpr {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for dark body background */
    background-color: transparent; /* Body background is handled by shared.css (#121212) */
    padding: 0;
    margin: 0;
}

.page-gdpr__hero-section {
    position: relative;
    padding: 80px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
    background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    min-height: 500px;
    overflow: hidden;
}

.page-gdpr__hero-content {
    max-width: 600px;
    text-align: left;
    z-index: 1;
}

.page-gdpr__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.page-gdpr__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-gdpr__hero-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__hero-button.page-gdpr__btn-primary {
    background-color: #FFD700;
    color: #8B0000;
}

.page-gdpr__hero-button.page-gdpr__btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-gdpr__hero-image-wrapper {
    flex-shrink: 0;
    z-index: 0;
}

.page-gdpr__hero-image {
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__section {
    padding: 60px 20px;
    background-color: #1a1a1a; /* Slightly lighter dark background for sections */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-gdpr__section--about {
    background-color: #121212; /* Match body background */
}

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

.page-gdpr__container--flex {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.page-gdpr__container--center {
    text-align: center;
}

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

.page-gdpr__section--rights .page-gdpr__section-title,
.page-gdpr__section--contact .page-gdpr__section-title {
    text-align: left;
}

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

.page-gdpr__paragraph--center {
    text-align: center;
}

.page-gdpr__paragraph a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-gdpr__paragraph a:hover {
    text-decoration: underline;
}

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

.page-gdpr__list-item {
    font-size: 1.1em;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #e0e0e0;
}

.page-gdpr__list-item::before {
    content: '✓';
    color: #FFD700;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.page-gdpr__list--sharing .page-gdpr__list-item::before {
    content: '•';
    color: #FFD700;
}

.page-gdpr__content-block {
    flex: 1;
}

.page-gdpr__image-block {
    flex-shrink: 0;
    max-width: 500px;
}

.page-gdpr__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-gdpr__card {
    background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent background for cards */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.page-gdpr__card-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-gdpr__card-text {
    font-size: 1em;
    color: #e0e0e0;
}

.page-gdpr__card-text a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-gdpr__card-text a:hover {
    text-decoration: underline;
}

.page-gdpr__image-wrapper--center {
    text-align: center;
    margin-top: 40px;
}

.page-gdpr__data-collection-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-gdpr__data-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #FFD700;
    color: #e0e0e0;
}

.page-gdpr__data-item-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-gdpr__data-item-text {
    font-size: 1em;
}

.page-gdpr__subtitle {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: center;
}

.page-gdpr__video-section {
    background-color: #1a1a1a;
    padding: 60px 20px;
    text-align: center;
}

.page-gdpr__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-gdpr__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover; /* Ensure video covers the area */
}

.page-gdpr__video-link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; /* Make the link clickable over the video */
    cursor: pointer;
}

.page-gdpr__faq-list {
    margin-top: 40px;
}

.page-gdpr__faq-item {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.12);
    transition: background-color 0.3s ease;
}

.page-gdpr__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-gdpr__faq-title {
    font-size: 1.25em;
    color: #FFD700;
    margin: 0;
}

.page-gdpr__faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-gdpr__faq-item.active .page-gdpr__faq-toggle {
    transform: rotate(45deg);
}

.page-gdpr__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 20px 25px;
}

.page-gdpr__faq-answer .page-gdpr__paragraph {
    margin: 0;
    color: #e0e0e0;
}

.page-gdpr__section--contact {
    background-color: #121212;
    text-align: center;
}

.page-gdpr__contact-image-wrapper {
    margin: 30px auto;
    max-width: 600px;
}

.page-gdpr__image--contact {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__contact-list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 600px;
    text-align: left;
}

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

.page-gdpr__contact-item a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-gdpr__contact-item a:hover {
    text-decoration: underline;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    margin: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__btn-primary {
    background-color: #FFD700;
    color: #8B0000;
    border: 2px solid transparent;
}

.page-gdpr__btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-gdpr__btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-gdpr__btn-secondary:hover {
    background-color: #FFD700;
    color: #8B0000;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-gdpr__hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: var(--header-offset, 120px);
    }

    .page-gdpr__hero-content {
        text-align: center;
        max-width: 100%;
    }

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

    .page-gdpr__hero-image-wrapper {
        margin-top: 40px;
    }

    .page-gdpr__container--flex {
        flex-direction: column;
        align-items: center;
    }

    .page-gdpr__image-block {
        margin-top: 30px;
    }

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

@media (max-width: 768px) {
    .page-gdpr {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-gdpr__hero-section {
        padding: 60px 15px;
        padding-top: var(--header-offset, 120px) !important;
        gap: 20px;
    }

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

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

    .page-gdpr__section {
        padding: 40px 15px;
    }
}