/* style/casino.css */
/* Base styles for the casino page */
.page-casino {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
    background-color: #ffffff; /* Default body background */
}

/* Section styling */
.page-casino__section {
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.page-casino__section-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: #26A9E0; /* Brand primary color for titles */
    font-weight: bold;
}

.page-casino__section-title--light {
    color: #ffffff; /* White title for dark backgrounds */
}

.page-casino__section-description {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #555555;
}

.page-casino__section-description--light {
    color: #f0f0f0; /* Light description for dark backgrounds */
}

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

/* Color schemes for sections */
.page-casino__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-casino__dark-bg {
    background-color: #26A9E0; /* Primary brand color for dark sections */
    color: #ffffff;
}

/* Hero Section */
.page-casino__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    background: linear-gradient(135deg, #26A9E0, #5ac8fa); /* Gradient background for hero */
    color: #ffffff;
    overflow: hidden; /* Prevent image overflow */
}

.page-casino__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.page-casino__hero-image {
    width: 100%;
    margin-bottom: 30px;
    max-width: 900px; /* Constrain hero image width */
}

.page-casino__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-casino__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 15px;
}