/* style/cookies-policy.css */

/* Base styles for the page content, ensuring header offset */
.page-cookies-policy {
    padding-top: var(--header-offset, 120px); /* Ensures content starts below the fixed header */
    color: #333333; /* Dark text for default light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f8f8f8; /* Light background for the main content area */
}

/* Hero Section */
.page-cookies-policy__hero-section {
    position: relative;
    overflow: hidden;
    color: #ffffff; /* White text for hero section */
    text-align: center;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 450px; /* Minimum height for hero section */
}

.page-cookies-policy__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.page-cookies-policy__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the entire area */
    filter: brightness(0.6); /* Slightly darken image for text readability, not changing color */
}

.page-cookies-policy__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.page-cookies-policy__main-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-cookies-policy__intro-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-cookies-policy__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #4B0082; /* Royal purple text */
    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;
    border: 2px solid #FFD700;
}

.page-cookies-policy__cta-button:hover {
    background-color: #4B0082; /* Royal purple on hover */
    color: #FFD700; /* Gold text on hover */
    border-color: #FFD700;
}

/* Content Area */
.page-cookies-policy__content-area {
    max-width: 1000px;
    margin: 40px auto;
    padding: 40px 20px;
    background-color: #ffffff; /* White background for content cards */
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-cookies-policy__section {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.page-cookies-policy__section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-cookies-policy__section-title {
    font-size: 2em;
    color: #4B0082; /* Royal purple for section titles */
    margin-bottom: 20px;
    border-left: 5px solid #FFD700; /* Gold accent */
    padding-left: 15px;
}

.page-cookies-policy__paragraph {
    font-size: 1em;
    color: #333333;
    margin-bottom: 15px;
}

.page-cookies-policy__image {
    width: 100%; /* Ensure images are responsive */
    height: auto;
    display: block;
    margin: 25px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

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

.page-cookies-policy__list-item {
    background-color: #f9f9f9;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-left: 4px solid #FFD700; /* Gold accent */
    border-radius: 5px;
    color: #333333;
    font-size: 1.05em;
}

.page-cookies-policy__list-item strong {
    color: #4B0082; /* Royal purple for strong text */
}

.page-cookies-policy__button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.page-cookies-policy__secondary-button,
.page-cookies-policy__contact-button {
    display: inline-block;
    background-color: #4B0082; /* Royal purple button */
    color: #FFD700; /* Gold text */
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid #4B0082;
}

.page-cookies-policy__secondary-button:hover,
.page-cookies-policy__contact-button:hover {
    background-color: #FFD700; /* Gold on hover */
    color: #4B0082; /* Royal purple text on hover */
    border-color: #FFD700;
}


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

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

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

    .page-cookies-policy__hero-section {
        padding: 60px 15px;
        min-height: 350px;
    }

    .page-cookies-policy__content-area {
        padding: 20px 15px;
        margin: 20px auto;
    }

    .page-cookies-policy__cta-button,
    .page-cookies-policy__secondary-button,
    .page-cookies-policy__contact-button {
        padding: 12px 20px;
        font-size: 0.95em;
    }

    .page-cookies-policy__button-group {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    /* Mobile image constraint */
    .page-cookies-policy__image {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-cookies-policy__main-title {
        font-size: 1.8em;
    }

    .page-cookies-policy__intro-description {
        font-size: 0.9em;
    }

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

    .page-cookies-policy__hero-section {
        padding: 40px 10px;
        min-height: 300px;
    }
}