/* style/casino.css */

/* Base styles for the casino page content */
.page-casino {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: var(--background-color, #FFFFFF); /* Ensure consistency with body background */
}

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

.page-casino__section-title {
    font-size: 2.5em;
    color: #017439; /* Brand color for titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-casino__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    color: #555555;
}

/* Hero Section */
.page-casino__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    text-align: center;
    color: #FFFFFF;
    overflow: hidden;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-casino__dark-bg {
    background-color: #017439; /* Brand color for dark sections */
    color: #FFFFFF; /* White text on dark background */
}

.page-casino__light-bg {
    background-color: #FFFFFF; /* White background for light sections */
    color: #333333; /* Dark text on light background */
}

.page-casino__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-casino__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5); /* Darken image for text readability */
}

.page-casino__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}

.page-casino__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFFFFF;
}

.page-casino__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-casino__hero-description a {
    color: #FFFF00; /* Yellow for links in hero description */
    text-decoration: underline;
}

.page-casino__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Buttons */
.page-casino__btn-primary,
.page-casino__btn-register,
.page-casino__btn-login {
    display: inline-block;
    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-color 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    text-align: center;
}

.page-casino__btn-primary {
    background-color: #017439; /* Main brand color */
    color: #FFFFFF;
    border: 2px solid #017439;
}

.page-casino__btn-primary:hover {
    background-color: #02944b;
    border-color: #02944b;
}

.page-casino__btn-register,
.page-casino__btn-login {
    background-color: #C30808; /* Red for register/login */
    color: #FFFF00; /* Yellow text for register/login */
    border: 2px solid #C30808;
}

.page-casino__btn-register:hover,
.page-casino__btn-login:hover {
    background-color: #e00b0b;
    border-color: #e00b0b;
}

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

.page-casino__cta-buttons--center {
    justify-content: center;
}

/* About Section */
.page-casino__about-section {
    padding: 80px 0;
}