/* style/index.css */

/* General styles for the page content */
.page-index {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark backgrounds */
    background-color: #0A1931; /* Main background color */
    line-height: 1.6;
}

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

.page-index__bg-dark {
    background-color: #0A1931;
    color: #E0E0E0;
}

.page-index__bg-light {
    background-color: #FFD700;
    color: #0A1931;
}

/* Headings */
.page-index__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-index__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-index__card-title,
.page-index__promotion-title,
.page-index__feature-title,
.page-index__detail-title {
    font-size: 1.5em;
    color: #FFD700; /* Gold for sub-titles */
    margin-bottom: 15px;
    font-weight: bold;
}

/* Paragraphs and text content */
.page-index__hero-subtitle {
    font-size: 1.3em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: #FFFFFF; /* White for hero subtitle */
}

.page-index__section-description,
.page-index__text-content,
.page-index__card-description,
.page-index__promotion-text,
.page-index__feature-text,
.page-index__testimonial-text,
.page-index__detail-description {
    font-size: 1em;
    color: #E0E0E0; /* Light grey for general text */
    margin-bottom: 15px;
}

.page-index__bg-light .page-index__section-description,
.page-index__bg-light .page-index__text-content,
.page-index__bg-light .page-index__card-description,
.page-index__bg-light .page-index__promotion-text,
.page-index__bg-light .page-index__feature-text,
.page-index__bg-light .page-index__testimonial-text,
.page-index__bg-light .page-index__detail-description {
    color: #0A1931; /* Dark blue for text on light background */
}

/* Buttons */
.page-index__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.page-index__btn--primary {
    background-color: #FFD700; /* Gold background */
    color: #0A1931; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-index__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-index__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-index__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A1931;
    transform: translateY(-2px);
}

.page-index__btn--text {
    background: none;
    border: none;
    color: #FFD700;
    padding: 5px 10px;
    font-weight: normal;
    text-decoration: underline;
}

.page-index__btn--text:hover {
    color: #e6c200;
}

.page-index__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
}

.page-index__btn--large {
    padding: 15px 35px;
    font-size: 1.1em;
}

/* Layout sections */
.page-index__hero-section {
    position: relative;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, #0A1931 0%, #1a3a6b 100%); /* Dark gradient background */
}

.page-index__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3; /* Subtle background image */
}

.page-index__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7); /* Darken image for better text contrast */
}

.page-index__hero-section .page-index__container {
    position: relative;
    z-index: 1;
}

.page-index__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.page-index__about-section,
.page-index__services-section,
.page-index__promotions-section,
.page-index__why-choose-us-section,
.page-index__testimonials-section,
.page-index__cta-download-section,
.page-index__detail-pages-section,
.page-index__responsible-gambling-section {
    padding: 80px 0;
}

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

.page-index__service-card {
    background-color: #1a2a47; /* Slightly lighter dark blue for cards */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-index__service-card:hover {
    transform: translateY(-5px);
}

.page-index__service-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

.page-index__promotion-item {
    background-color: #1a2a47;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-index__promotion-image {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Why Choose Us Features */
.page-index__feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index__feature-item {
    background-color: #1a2a47;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-index__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    object-fit: contain;
    filter: invert(80%) sepia(80%) saturate(1000%) hue-rotate(0deg) brightness(120%) contrast(100%); /* Make icons gold */
}

.page-index__feature-image--small {
    max-width: 150px;
    height: auto;
    margin-top: 15px;
    border-radius: 5px;
}

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

.page-index__testimonial-card {
    background-color: #1a2a47;
    border-left: 5px solid #FFD700;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    padding: 25px;
}

.page-index__testimonial-author {
    font-style: italic;
    color: #FFD700;
    margin-top: 15px;
    text-align: right;
    font-size: 0.95em;
}

/* CTA Download Section */
.page-index__cta-download-section {
    background: linear-gradient(45deg, #0A1931, #2c4a7e); /* Darker gradient */
    color: #E0E0E0;
    padding: 80px 0;
    text-align: center;
}

.page-index__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

/* Detail Pages Grid */
.page-index__detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-index__detail-card {
    background-color: #1a2a47;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.page-index__detail-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-index__detail-title a:hover {
    color: #e6c200;
    text-decoration: underline;
}

/* Utility classes */
.page-index__actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.page-index__actions--center {
    justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-index__hero-title {
        font-size: 2.8em;
    }
    .page-index__section-title {
        font-size: 2em;
    }
    .page-index__hero-subtitle {
        font-size: 1.1em;
    }
    .page-index__service-grid,
    .page-index__promotion-grid,
    .page-index__feature-list,
    .page-index__testimonial-grid,
    .page-index__detail-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-index__hero-title {
        font-size: 2.2em;
    }
    .page-index__section-title {
        font-size: 1.8em;
    }
    .page-index__hero-subtitle {
        font-size: 1em;
    }
    .page-index__hero-actions {
        flex-direction: column;
    }
    .page-index__btn--large {
        width: 80%;
        margin: 0 auto;
    }
    .page-index__hero-section {
        padding: 80px 0;
        min-height: 500px;
    }
    .page-index__about-section,
    .page-index__services-section,
    .page-index__promotions-section,
    .page-index__why-choose-us-section,
    .page-index__testimonials-section,
    .page-index__cta-download-section,
    .page-index__detail-pages-section,
    .page-index__responsible-gambling-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .page-index__hero-title {
        font-size: 1.8em;
    }
    .page-index__section-title {
        font-size: 1.5em;
    }
    .page-index__container {
        padding: 15px;
    }
    .page-index__hero-actions {
        gap: 15px;
    }
    .page-index__btn {
        padding: 10px 20px;
    }
    .page-index__btn--large {
        width: 90%;
    }
    .page-index__service-grid,
    .page-index__promotion-grid,
    .page-index__feature-list,
    .page-index__testimonial-grid,
    .page-index__detail-grid {
        grid-template-columns: 1fr;
    }
    .page-index__service-card,
    .page-index__promotion-item,
    .page-index__feature-item,
    .page-index__testimonial-card,
    .page-index__detail-card {
        padding: 20px;
    }
}