/* style/index-about-crown88-casino.css */

/* Base styles for the page content */
.page-index-about-crown88-casino {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default dark text for light body background */
    background-color: #f8f8f8; /* Light background for the page */
}

/* Fixed header offset for the first content section */
.page-index-about-crown88-casino__hero-section {
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    overflow: hidden;
    box-sizing: border-box;
}

.page-index-about-crown88-casino__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-index-about-crown88-casino__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 2;
}

.page-index-about-crown88-casino__hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    max-width: 900px;
    padding: 20px;
}

.page-index-about-crown88-casino__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
}

.page-index-about-crown88-casino__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-index-about-crown88-casino__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* General Section Styles */
.page-index-about-crown88-casino__section {
    padding: 60px 20px;
    background-color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-about-crown88-casino__section:last-of-type {
    margin-bottom: 0;
}

.page-index-about-crown88-casino__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-index-about-crown88-casino__section-title {
    font-size: 2.5em;
    color: #1A2B5B;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-index-about-crown88-casino__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-index-about-crown88-casino__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #333333;
}

.page-index-about-crown88-casino__image-full {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Dark Section Specific Styles */
.page-index-about-crown88-casino__dark-section {
    background-color: #1A2B5B;
    color: #ffffff;
}

.page-index-about-crown88-casino__dark-section .page-index-about-crown88-casino__section-title {
    color: #FFD700;
}

.page-index-about-crown88-casino__dark-section .page-index-about-crown88-casino__paragraph {
    color: #f0f0f0;
}

/* Feature Grid (Why Choose Us) */
.page-index-about-crown88-casino__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-about-crown88-casino__feature-card {
    background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white on dark background */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff;
}

.page-index-about-crown88-casino__feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-index-about-crown88-casino__card-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-index-about-crown88-casino__card-description {
    font-size: 1em;
    color: #f0f0f0;
    margin-bottom: 15px;
    flex-grow: 1;
}

/* Buttons */
.page-index-about-crown88-casino__btn-primary,
.page-index-about-crown88-casino__btn-secondary,
.page-index-about-crown88-casino__btn-text {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
    box-sizing: border-box;
}

.page-index-about-crown88-casino__btn-primary {
    background-color: #FFD700;
    color: #1A2B5B;
    border: 2px solid #FFD700;
}

.page-index-about-crown88-casino__btn-primary:hover {
    background-color: #1A2B5B;
    color: #FFD700;
    border-color: #FFD700;
}

.page-index-about-crown88-casino__btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-index-about-crown88-casino__btn-secondary:hover {
    background-color: #FFD700;
    color: #1A2B5B;
}

.page-index-about-crown88-casino__btn-text {
    background-color: transparent;
    color: #FFD700;
    border: none;
    padding: 5px 0;
    font-size: 1em;
    text-decoration: underline;
}

.page-index-about-crown88-casino__btn-text:hover {
    color: #ffffff;
    text-decoration: none;
}

.page-index-about-crown88-casino__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Light background sections */
.page-index-about-crown88-casino__light-bg {
    background-color: #f0f0f0;
    color: #333333;
}

.page-index-about-crown88-casino__light-bg .page-index-about-crown88-casino__section-title {
    color: #1A2B5B;
}

.page-index-about-crown88-casino__light-bg .page-index-about-crown88-casino__paragraph {
    color: #333333;
}

.page-index-about-crown88-casino__light-bg .page-index-about-crown88-casino__btn-text {
    color: #1A2B5B;
}

.page-index-about-crown88-casino__light-bg .page-index-about-crown88-casino__btn-text:hover {
    color: #FFD700;
}

/* FAQ Section */
.page-index-about-crown88-casino__faq-section {
    background-color: #f8f8f8;
}

.page-index-about-crown88-casino__faq-list {
    margin-top: 40px;
}

.page-index-about-crown88-casino__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-index-about-crown88-casino__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #1A2B5B;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-index-about-crown88-casino__faq-question:hover {
    background-color: #f0f0f0;
}

.page-index-about-crown88-casino__faq-title {
    margin: 0;
    font-size: 1.2em;
    color: #1A2B5B;
}

.page-index-about-crown88-casino__faq-toggle {
    font-size: 1.5em;
    font-weight: normal;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-index-about-crown88-casino__faq-item.active .page-index-about-crown88-casino__faq-toggle {
    transform: rotate(45deg);
}

.page-index-about-crown88-casino__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #333333;
}

.page-index-about-crown88-casino__faq-item.active .page-index-about-crown88-casino__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to contain content */
    padding: 15px 25px 25px 25px;
}

.page-index-about-crown88-casino__faq-answer p {
    margin-bottom: 15px;
    color: #333333;
}

.page-index-about-crown88-casino__faq-answer a {
    color: #1A2B5B;
    text-decoration: underline;
}

.page-index-about-crown88-casino__faq-answer a:hover {
    color: #FFD700;
}


/* Contact CTA Section */
.page-index-about-crown88-casino__contact-cta {
    background-color: #1A2B5B;
    color: #ffffff;
    text-align: center;
}

.page-index-about-crown88-casino__contact-cta .page-index-about-crown88-casino__section-title {
    color: #FFD700;
}

.page-index-about-crown88-casino__contact-cta .page-index-about-crown88-casino__paragraph {
    color: #f0f0f0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-about-crown88-casino__hero-title {
        font-size: 2.8em;
    }

    .page-index-about-crown88-casino__hero-description {
        font-size: 1.1em;
    }

    .page-index-about-crown88-casino__section-title {
        font-size: 2em;
    }

    .page-index-about-crown88-casino__paragraph {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    /* Fixed header offset for mobile */
    .page-index-about-crown88-casino__hero-section {
        padding-top: var(--header-offset, 120px) !important;
        min-height: 60vh;
    }

    .page-index-about-crown88-casino__hero-title {
        font-size: 2em;
    }

    .page-index-about-crown88-casino__hero-description {
        font-size: 1em;
    }

    .page-index-about-crown88-casino__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-index-about-crown88-casino__btn-primary,
    .page-index-about-crown88-casino__btn-secondary,
    .page-index-about-crown88-casino a[class*="button"],
    .page-index-about-crown88-casino a[class*="btn"] {
        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-index-about-crown88-casino__cta-buttons,
    .page-index-about-crown88-casino__button-group,
    .page-index-about-crown88-casino__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
        flex-direction: column; /* Stack buttons vertically on mobile */
    }

    .page-index-about-crown88-casino__section {
        padding: 40px 15px;
    }

    .page-index-about-crown88-casino__container {
        padding: 0 10px;
    }

    .page-index-about-crown88-casino__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-index-about-crown88-casino__feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-index-about-crown88-casino__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }

    .page-index-about-crown88-casino__faq-title {
        font-size: 1.1em;
    }

    .page-index-about-crown88-casino__faq-answer {
        padding: 0 20px;
    }

    .page-index-about-crown88-casino__faq-item.active .page-index-about-crown88-casino__faq-answer {
        padding: 10px 20px 20px 20px;
    }

    /* Images responsiveness */
    .page-index-about-crown88-casino img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-index-about-crown88-casino__section,
    .page-index-about-crown88-casino__card,
    .page-index-about-crown88-casino__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .page-index-about-crown88-casino__hero-title {
        font-size: 1.8em;
    }

    .page-index-about-crown88-casino__hero-description {
        font-size: 0.9em;
    }

    .page-index-about-crown88-casino__section-title {
        font-size: 1.5em;
    }

    .page-index-about-crown88-casino__paragraph {
        font-size: 0.9em;
    }
}