/* style/cookies-policy.css */

/* Custom Colors */
:root {
    --wynn08-green-primary: #11A84E;
    --wynn08-green-secondary: #22C768;
    --wynn08-button-gradient-top: #2AD16F;
    --wynn08-button-gradient-bottom: #13994A;
    --wynn08-card-bg: #11271B;
    --wynn08-background: #08160F; /* This is the body background from shared.css */
    --wynn08-text-main: #F2FFF6; /* Light text for dark backgrounds */
    --wynn08-text-secondary: #A7D9B8; /* Lighter green text */
    --wynn08-border: #2E7A4E;
    --wynn08-glow: #57E38D;
    --wynn08-gold: #F2C14E;
    --wynn08-divider: #1E3A2A;
    --wynn08-deep-green: #0A4B2C;
}

/* Base styles for the page content, assuming a dark body background from shared.css */
.page-cookies-policy {
    background-color: var(--wynn08-background); /* Ensure consistency if body background is not fully covering */
    color: var(--wynn08-text-main); /* Light text for dark background */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    padding-bottom: 40px; /* Add some padding at the bottom before footer */
}

/* Hero Section */
.page-cookies-policy__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    justify-content: center;
    padding: 20px; /* Small padding-top as body handles header offset */
    box-sizing: border-box;
    overflow: hidden; /* Ensure content doesn't overflow */
}

.page-cookies-policy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px; /* Limit height for hero image */
    margin-bottom: 30px; /* Space between image and content */
    border-radius: 8px;
}

.page-cookies-policy__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 0 20px;
    z-index: 1; /* Ensure text is above any potential background elements */
    box-sizing: border-box;
}

.page-cookies-policy__main-title {
    font-size: clamp(2.2em, 4vw, 3em); /* Flexible H1 font size */
    color: var(--wynn08-gold);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-cookies-policy__hero-description {
    font-size: 1.1em;
    color: var(--wynn08-text-secondary);
    margin-bottom: 30px;
}

/* General Section Styles */
.page-cookies-policy__section {
    padding: 40px 20px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.page-cookies-policy__dark-bg {
    background-color: var(--wynn08-deep-green); /* Darker background for contrast sections */
    color: var(--wynn08-text-main);
}

.page-cookies-policy__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Inner padding for content */
    box-sizing: border-box;
}

.page-cookies-policy__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.5em);
    color: var(--wynn08-green-primary);
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.page-cookies-policy__sub-title {
    font-size: clamp(1.4em, 2.5vw, 1.8em);
    color: var(--wynn08-gold);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 500;
}

.page-cookies-policy p {
    margin-bottom: 15px;
    color: var(--wynn08-text-main);
}

.page-cookies-policy a {
    color: var(--wynn08-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-cookies-policy a:hover {
    color: var(--wynn08-glow);
    text-decoration: underline;
}

.page-cookies-policy__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--wynn08-text-main);
}

.page-cookies-policy__list li {
    margin-bottom: 10px;
}

.page-cookies-policy__last-updated {
    text-align: right;
    font-style: italic;
    color: var(--wynn08-text-secondary);
    margin-top: 30px;
}

/* Card Grid for Cookie Types */
.page-cookies-policy__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.page-cookies-policy__card {
    background-color: var(--wynn08-card-bg);
    border: 1px solid var(--wynn08-border);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: var(--wynn08-text-main);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cookies-policy__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-cookies-policy__card-title {
    font-size: 1.3em;
    color: var(--wynn08-green-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

/* Image Content Styles */
.page-cookies-policy__image-content {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Call to Action Buttons */
.page-cookies-policy__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.page-cookies-policy__btn-primary,
.page-cookies-policy__btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure responsiveness */
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
    text-align: center;
}

.page-cookies-policy__btn-primary {
    background: linear-gradient(180deg, var(--wynn08-button-gradient-top) 0%, var(--wynn08-button-gradient-bottom) 100%);
    color: var(--wynn08-text-main);
    border: 2px solid transparent;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-cookies-policy__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    opacity: 0.9;
}

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

.page-cookies-policy__btn-secondary:hover {
    background-color: var(--wynn08-green-primary);
    color: var(--wynn08-text-main);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-cookies-policy__faq-list {
    margin-top: 30px;
}

.page-cookies-policy__faq-item {
    background-color: var(--wynn08-card-bg);
    border: 1px solid var(--wynn08-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-cookies-policy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: bold;
    color: var(--wynn08-green-primary);
    font-size: 1.1em;
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-cookies-policy__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}
.page-cookies-policy__faq-item summary {
    list-style: none; /* Hide default marker for other browsers */
}

.page-cookies-policy__faq-question:hover {
    background-color: var(--wynn08-deep-green);
}

.page-cookies-policy__faq-qtext {
    flex-grow: 1;
}

.page-cookies-policy__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
}

.page-cookies-policy__faq-answer {
    padding: 0 25px 20px;
    color: var(--wynn08-text-secondary);
    font-size: 0.95em;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .page-cookies-policy__hero-image {
        max-height: 400px;
    }
    .page-cookies-policy__main-title {
        font-size: clamp(2em, 5vw, 2.5em);
    }
    .page-cookies-policy__hero-description {
        font-size: 1em;
    }
    .page-cookies-policy__card-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Mobile-specific adjustments */
    .page-cookies-policy__hero-section {
        padding: 10px;
    }
    .page-cookies-policy__hero-image {
        max-height: 300px;
        margin-bottom: 20px;
    }
    .page-cookies-policy__main-title {
        font-size: clamp(1.8em, 6vw, 2.2em);
        margin-bottom: 15px;
    }
    .page-cookies-policy__hero-description {
        font-size: 0.95em;
        margin-bottom: 25px;
    }
    .page-cookies-policy__section {
        padding: 30px 10px;
    }
    .page-cookies-policy__section-title {
        font-size: clamp(1.6em, 5vw, 2em);
        margin-bottom: 20px;
    }
    .page-cookies-policy__sub-title {
        font-size: clamp(1.2em, 4vw, 1.5em);
    }
    .page-cookies-policy p,
    .page-cookies-policy__list li,
    .page-cookies-policy__faq-answer {
        font-size: 15px;
    }
    .page-cookies-policy__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        padding: 0 15px; /* Add padding to prevent overflow */
    }
    .page-cookies-policy__btn-primary,
    .page-cookies-policy__btn-secondary {
        width: 100% !important; /* Force full width on mobile */
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    /* Image responsive adaptions */
    .page-cookies-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-cookies-policy__section,
    .page-cookies-policy__card,
    .page-cookies-policy__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    /* Fixed header top padding handled by body, so content sections need only small top padding */
    .page-cookies-policy__hero-section {
        padding-top: 10px !important;
    }
    .page-cookies-policy__card-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }
    .page-cookies-policy__faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }
    .page-cookies-policy__faq-answer {
        padding: 0 20px 15px;
    }
}

/* Ensure no filter on images */
.page-cookies-policy img {
    filter: none !important;
}

/* All video related CSS is omitted as there's no video on this page */