/* General Body Styles */
body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    padding-top: 56px; /* Adjust for fixed navbar height */
}

/* Header & Navbar */
.navbar-brand .logo {
    height: 30px;
    margin-right: 10px;
}
.navbar-dark .navbar-nav .nav-link {
    color: #fff;
    font-weight: 600;
}
.navbar-dark .navbar-nav .nav-link:hover {
    color: #007bff; /* Bootstrap primary blue */
}

/* Age Disclaimer Banner */
.age-disclaimer-banner {
    background-color: #ffc107; /* Warning yellow */
    color: #343a40; /* Dark text */
    font-weight: bold;
    font-size: 0.9em;
    padding: 8px 0;
    position: sticky;
    top: 56px; /* Position below fixed navbar */
    z-index: 1020; /* Above regular content, below navbar */
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/hero-bg.jpg') no-repeat center center/cover;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.hero-section h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}
.hero-section .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 50px;
}
.hero-section .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}
.hero-section .trust-symbols .fas {
    color: #28a745; /* Green for trust */
    font-size: 1.2em;
}

/* Casino List Section */
#casino-list .card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.2s;
}
#casino-list .card:hover {
    transform: translateY(-5px);
}
#casino-list .card-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #007bff;
}
#casino-list .card-text strong {
    color: #555;
}
#casino-list .rating .text-warning {
    font-size: 1.2em;
}
#casino-list .visit-site-btn {
    width: 100%;
    font-weight: bold;
    background-color: #28a745; /* Success green */
    border-color: #28a745;
}
#casino-list .visit-site-btn:hover {
    background-color: #218838;
    border-color: #1e7e34;
}
.licensing-info {
    font-size: 0.9em;
    color: #6c757d; /* Muted text */
}

/* Responsible Gambling Links Section */
.responsible-gambling-links {
    background-color: #f8f9fa; /* Light background */
    border-top: 1px solid #e9ecef;
}
.responsible-gambling-links .btn-outline-dark {
    border-color: #343a40;
    color: #343a40;
}
.responsible-gambling-links .btn-outline-dark:hover {
    background-color: #343a40;
    color: #fff;
}

/* Footer */
footer {
    background-color: #212529; /* Dark background */
    color: #dee2e6;
}
footer h5 {
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}
footer ul li a {
    color: #adb5bd;
}
footer ul li a:hover {
    color: #fff;
}
.footer-responsible-links a {
    font-size: 0.9em;
}

/* Other Pages (Common styles for legal pages) */
.page-content {
    padding-top: 80px; /* Adjust for fixed navbar + banner */
    padding-bottom: 50px;
}
.page-content h1, .page-content h2 {
    font-family: 'Roboto', sans-serif;
    color: #007bff;
    margin-bottom: 20px;
}
.page-content p, .page-content ul {
    margin-bottom: 15px;
}
.page-content ul {
    list-style-type: disc;
    margin-left: 20px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #343a40;
        padding: 15px;
    }
    .age-disclaimer-banner {
        top: 0; /* No fixed navbar on smaller screens, can be relative */
    }
    .hero-section {
        min-height: 300px;
        padding: 30px 0;
    }
    .hero-section h1 {
        font-size: 2.5em;
    }
    .hero-section .lead {
        font-size: 1em;
    }
    .btn-group {
        flex-direction: column;
    }
    .btn-group .btn {
        width: 100%;
        margin-bottom: 5px;
    }
}