/* General Styles */
:root {
    --main-bg-color: #f8f9fa; /* Light background */
    --primary-blue: #007bff; /* Main blue accent */
    --secondary-blue: #66b2ff; /* Lighter blue for highlights/borders */
    --dark-text-color: #212529; /* Dark for main text */
    --light-text-color: #ffffff; /* White for text on blue backgrounds */
    --card-bg-color: #ffffff;
    --card-border-color: #e0e0e0;
    --shadow-color: rgba(0, 123, 255, 0.2); /* Blue shadow for glow effect */
    --warning-bg: #fff3cd; /* Light yellow for disclaimer */
    --warning-border: #ffeeba;
    --warning-text: #664d03;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--main-bg-color);
    color: var(--dark-text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark-text-color);
    font-weight: 700;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
}

a:hover {
    color: var(--secondary-blue);
    text-decoration: underline;
}

.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--light-text-color);
}

.btn-primary:hover {
    background-color: #0056b3; /* Slightly darker blue */
    border-color: #0056b3;
}

.btn-outline-primary {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-outline-primary:hover {
    background-color: var(--primary-blue);
    color: var(--light-text-color);
}

.section-title {
    color: var(--primary-blue);
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-blue);
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px; /* Adjust height as needed */
    background: url(media/uploads/casino-hero-background_8.jpg) no-repeat center center / cover;
    color: var(--light-text-color);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
}

.site-title {
     font-size: clamp(20px, 5vw, 30px) !important;
    font-weight: 700;
    color: var(--light-text-color);
}

.logo {
    height: 60px; /* Adjust logo size */
    width: auto;
}

.hero-section h2 {
    color: var(--light-text-color);
    font-size: clamp(23px, 5vw, 30px) !important;
}

.hero-section p.lead {
    font-size: 1.25rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section .dropdown-toggle {
    background-color: var(--card-bg-color);
    color: var(--dark-text-color);
    border: 1px solid var(--card-border-color);
    font-weight: 500;
}

.hero-section .dropdown-menu {
    background-color: var(--card-bg-color);
    border: 1px solid var(--card-border-color);
}

.hero-section .dropdown-item {
    color: var(--dark-text-color);
}

.hero-section .dropdown-item:hover {
    background-color: var(--primary-blue);
    color: var(--light-text-color);
}

.hero-section .dropdown-item.active {
    background-color: var(--primary-blue);
    color: var(--light-text-color);
}

/* Casino Card Styles */
.casino-card {
    background-color: var(--card-bg-color);
    border: 1px solid var(--card-border-color);
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px var(--shadow-color); /* Subtle glow effect */
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    min-height: 200px; /* Ensure consistent height for horizontal layout */
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.casino-logo-wrapper {
    width: 150px; /* Fixed width for logo area */
    height: 150px; /* Fixed height for logo area */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    overflow: hidden;
    background-color: #f0f0f0; /* Light background for logo area */
}

.casino-logo {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.casino-info {
    flex-grow: 1;
    padding: 0 1rem;
}

.casino-name {
    color: var(--primary-blue);
    font-size: 1.8rem;
}

.casino-offer {
    color: var(--dark-text-color);
    font-size: 1.1rem;
}

.casino-features li {
    font-size: 0.95rem;
    color: var(--dark-text-color);
    margin-bottom: 0.25rem;
}

.casino-features i {
    color: var(--primary-blue);
}

.casino-license small {
    color: var(--bs-secondary);
    font-size: 0.85rem;
}

.casino-rating-action {
    text-align: center;
    min-width: 150px; /* Ensure rating/button area has minimum width */
}

.rating-stars {
    color: #ffc107; /* Yellow for stars */
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.rating-score {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.btn-play {
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.5rem;
}

/* FAQ Section */
.accordion-item {
    border: 1px solid var(--card-border-color);
    margin-bottom: 10px;
    border-radius: 0.5rem;
    overflow: hidden;
}

.accordion-button {
    background-color: var(--card-bg-color);
    color: var(--dark-text-color);
    font-weight: 600;
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-blue);
    background-color: #eaf5ff; /* Lighter blue for active state */
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}

.accordion-body {
    background-color: var(--card-bg-color);
    color: var(--dark-text-color);
    padding: 1.25rem;
}

/* Feature Cards (Key Aspects, Main Tips, Promotions) */
.feature-card, .benefit-card, .tip-card, .promotion-card {
    background-color: var(--card-bg-color);
    border: 1px solid var(--card-border-color);
    border-radius: 0.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    height: 100%; /* Ensure cards in a row have equal height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-card:hover, .benefit-card:hover, .tip-card:hover, .promotion-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon, .tip-icon, .promotion-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.benefit-card h5 i {
    font-size: 1.5rem;
    vertical-align: middle;
}

/* Suggestion Form */
#suggestion-form .card {
    border: 1px solid var(--primary-blue);
    box-shadow: 0 0 20px var(--shadow-color);
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: var(--warning-bg); /* Light yellow background */
    border-top: 2px solid var(--warning-border);
    border-bottom: 2px solid var(--warning-border);
    padding: 3rem 0;
    margin-top: 3rem;
}

.disclaimer-content {
    background-color: var(--card-bg-color); /* White background for content box */
    border: 1px solid var(--warning-border);
    border-radius: 0.75rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    color: var(--warning-text); /* Dark text for readability */
}

.disclaimer-icon {
    font-size: 3.5rem;
    color: #dc3545; /* Red warning icon */
    margin-bottom: 1rem;
}

.disclaimer-title {
    color: #dc3545; /* Red for title */
    font-weight: 700;
}

.disclaimer-content ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.disclaimer-content ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 25px;
    text-align: left;
}

.disclaimer-content ul li::before {
    content: "\F28E"; /* Bootstrap icon for check-circle */
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: #dc3545; /* Red checkmark */
    font-weight: 900;
}


/* Footer */
.footer {
    background-color: var(--dark-text-color); /* Dark background for footer */
    color: var(--light-text-color);
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.footer  p{
    color: #fff !important;
}

.logo-footer {
    height: 40px;
    width: auto;
}

.site-title-footer {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-text-color);
}

.eighteen-plus-icon {
    height: 70px; /* Adjust size for 18+ icon */
    width: 70px;
    object-fit: contain;
}

.footer-links a {
    color: var(--light-text-color);
    font-size: 0.95rem;
    transition: color 0.2s ease-in-out;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

.footer-org-logos {
    gap: 1.5rem; /* Space between logos */
}

.footer-org-logo {
    max-width: 140px; /* Limit width as per instructions */
    height: auto;
    object-fit: contain;
    filter: none; /* Ensure no grayscale or other filters */
}

/* Cookie Consent Modal */
#cookieConsentModal .modal-content {
    background-color: var(--card-bg-color);
    border-radius: 0.75rem;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#cookieConsentModal .modal-header {
    border-bottom: 1px solid var(--card-border-color);
    padding: 1.5rem;
}

#cookieConsentModal .modal-title {
    color: var(--primary-blue);
    font-weight: 700;
}

#cookieConsentModal .modal-body {
    padding: 1.5rem;
    color: var(--dark-text-color);
}

#cookieConsentModal .form-check-label {
    color: var(--dark-text-color);
}

#cookieConsentModal .modal-footer {
    border-top: 1px solid var(--card-border-color);
    padding: 1.5rem;
}

#cookieConsentModal .btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}

#cookieConsentModal .btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .hero-section {
        height: 500px;
    }

   

  

    .hero-section p.lead {
        font-size: 1rem;
    }

    .casino-card {
        flex-direction: column;
        text-align: center;
    }

    .casino-logo-wrapper {
        margin-right: 0 !important;
        margin-bottom: 1rem !important;
    }

    .casino-info {
        padding: 0;
    }

    .casino-rating-action {
        margin-left: 0 !important;
        margin-top: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .disclaimer-content ul li {
        text-align: center;
        padding-left: 0;
    }

    .disclaimer-content ul li::before {
        position: static;
        display: block;
        margin-bottom: 5px;
    }
}/* Styles for content within .dataClauseFrame */
.dataClauseFrame {
    padding: 2rem 1.5rem; /* Padding top/bottom and left/right */
    margin-top: 3rem; /* Top margin for separation */
    margin-bottom: 3rem; /* Bottom margin for separation */
    background-color: var(--card-bg-color); /* Background color for the content block */
    border: 1px solid var(--card-border-color); /* Border for the content block */
    border-radius: 0.75rem; /* Rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Subtle shadow */
    line-height: 1.7; /* General line height for better readability */
    color: var(--dark-text-color); /* Default text color */
}

.dataClauseFrame h1 {
    font-size: 2.2rem; /* Heading 1 font size */
    margin-top: 2rem; /* Top margin for heading */
    margin-bottom: 1.2rem; /* Bottom margin for heading */
    line-height: 1.2; /* Line height for heading */
    color: var(--dark-text-color); /* Color for heading */
    font-weight: 700; /* Bold font weight */
}

.dataClauseFrame h2 {
    font-size: 1.8rem; /* Heading 2 font size */
    margin-top: 1.8rem; /* Top margin for heading */
    margin-bottom: 1rem; /* Bottom margin for heading */
    line-height: 1.3; /* Line height for heading */
    color: var(--dark-text-color); /* Color for heading */
    font-weight: 600; /* Semi-bold font weight */
}

.dataClauseFrame h3 {
    font-size: 1.5rem; /* Heading 3 font size */
    margin-top: 1.5rem; /* Top margin for heading */
    margin-bottom: 0.8rem; /* Bottom margin for heading */
    line-height: 1.4; /* Line height for heading */
    color: var(--dark-text-color); /* Color for heading */
    font-weight: 600; /* Semi-bold font weight */
}

.dataClauseFrame h4 {
    font-size: 1.25rem; /* Heading 4 font size */
    margin-top: 1.2rem; /* Top margin for heading */
    margin-bottom: 0.6rem; /* Bottom margin for heading */
    line-height: 1.5; /* Line height for heading */
    color: var(--dark-text-color); /* Color for heading */
    font-weight: 500; /* Medium font weight */
}

.dataClauseFrame h5 {
    font-size: 1.1rem; /* Heading 5 font size */
    margin-top: 1rem; /* Top margin for heading */
    margin-bottom: 0.5rem; /* Bottom margin for heading */
    line-height: 1.6; /* Line height for heading */
    color: var(--dark-text-color); /* Color for heading */
    font-weight: 500; /* Medium font weight */
}

.dataClauseFrame p {
    font-size: 1rem; /* Paragraph font size */
    margin-bottom: 1rem; /* Bottom margin for paragraphs */
    line-height: 1.7; /* Line height for paragraphs */
    color: var(--dark-text-color); /* Text color for paragraphs */
}

.dataClauseFrame ul {
    list-style: disc; /* Default disc bullet points */
    padding-left: 25px; /* Indentation for list items */
    margin-bottom: 1rem; /* Bottom margin for the list */
    color: var(--dark-text-color); /* Text color for list */
}

.dataClauseFrame ul li {
    font-size: 1rem; /* List item font size */
    margin-bottom: 0.5rem; /* Bottom margin for individual list items */
    line-height: 1.6; /* Line height for list items */
    color: var(--dark-text-color); /* Text color for list items */
}
