/* ========================================
   PowwowCasino - Main Styles
   Primary: Forest Green (#228B22)
   Accent: Amber (#FFBF00)
   ======================================== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans', sans-serif !important;
    font-size: 18px !important;
    line-height: 1.7 !important;
    color: #333 !important;
    background-color: #f8f9fa !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Sans', sans-serif !important;
    font-weight: 700 !important;
    color: #1a5c1a !important;
    margin-bottom: 1rem !important;
}

h1 {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
}

h2 {
    font-size: 2rem !important;
    margin-top: 2rem !important;
    padding-bottom: 0.5rem !important;
    border-bottom: 3px solid #FFBF00 !important;
}

h3 {
    font-size: 1.5rem !important;
    color: #228B22 !important;
    margin-top: 1.5rem !important;
}

p {
    font-size: 18px !important;
    margin-bottom: 1rem !important;
    color: #333 !important;
}

/* Navbar Styles - Critical Bootstrap Override */
.navbar-nav {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    list-style: none !important;
}

.nav-item {
    margin-bottom: 0 !important;
    list-style: none !important;
}

.nav-item::before,
.nav-item::after {
    display: none !important;
    content: none !important;
}

.nav-link::before,
.nav-link::after {
    display: none !important;
    content: none !important;
}

.navbar {
    background-color: #228B22 !important;
    padding: 1rem 0 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

.navbar-brand {
    display: flex !important;
    align-items: center !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 1.5rem !important;
}

.navbar-brand img {
    height: 40px !important;
    width: auto !important;
    margin-right: 10px !important;
}

.navbar .nav-link {
    color: #fff !important;
    font-weight: 500 !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease !important;
    font-size: 16px !important;
}

.navbar .nav-link:hover {
    color: #FFBF00 !important;
}

.navbar-toggler {
    border-color: rgba(255,255,255,0.5) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* CTA Button in Navbar */
.btn-cta-nav {
    background-color: transparent !important;
    border: 2px solid #FFBF00 !important;
    color: #FFBF00 !important;
    padding: 8px 20px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    transition: all 0.3s ease !important;
}

.btn-cta-nav:hover {
    background-color: #FFBF00 !important;
    color: #1a5c1a !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #228B22 0%, #1a6b1a 100%) !important;
    padding: 80px 0 !important;
    color: #fff !important;
    position: relative !important;
    overflow: hidden !important;
}

.hero-section h1 {
    color: #fff !important;
    font-size: 2.8rem !important;
    margin-bottom: 1.5rem !important;
}

.hero-section p {
    color: rgba(255,255,255,0.95) !important;
    font-size: 1.2rem !important;
    margin-bottom: 2rem !important;
}

.hero-section img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 10px !important;
}

.btn-hero {
    background-color: transparent !important;
    border: 2px solid #FFBF00 !important;
    color: #FFBF00 !important;
    padding: 15px 40px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.btn-hero:hover {
    background-color: #FFBF00 !important;
    color: #1a5c1a !important;
}

/* Main Content Sections */
.content-section {
    padding: 60px 0 !important;
}

.content-section:nth-child(even) {
    background-color: #fff !important;
}

.content-section:nth-child(odd) {
    background-color: #f8f9fa !important;
}

.section-card {
    background: #fff !important;
    border-radius: 10px !important;
    padding: 30px !important;
    margin-bottom: 30px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08) !important;
}

/* Content Images */
.content-section img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 8px !important;
    margin: 20px 0 !important;
}

/* Lists - Reset defaults and apply custom markers */
ul, ol {
    list-style: none !important;
    padding-left: 0 !important;
    margin-bottom: 1.5rem !important;
}

/* Content lists only - not navbar/footer */
.content-section ul li,
.content-section ol li {
    position: relative !important;
    padding-left: 30px !important;
    margin-bottom: 12px !important;
    font-size: 18px !important;
}

.content-section ul li::before {
    content: "★" !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    color: #FFBF00 !important;
    font-size: 16px !important;
}

.content-section ol {
    counter-reset: custom-counter !important;
}

.content-section ol li::before {
    counter-increment: custom-counter !important;
    content: counter(custom-counter) "." !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    color: #FFBF00 !important;
    font-weight: 700 !important;
}

/* Navbar and Footer lists - NO markers */
.navbar ul,
.navbar ol,
.footer ul,
.footer ol,
footer ul,
footer ol {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 !important;
}

.navbar li::before,
.navbar li::after,
.footer li::before,
.footer li::after,
footer li::before,
footer li::after {
    display: none !important;
    content: none !important;
}

/* Tables */
.table-responsive {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    margin: 20px 0 !important;
}

.table {
    width: 100% !important;
    margin-bottom: 1rem !important;
    background-color: #fff !important;
    border-collapse: collapse !important;
}

.table th {
    background-color: #228B22 !important;
    color: #fff !important;
    font-weight: 600 !important;
    padding: 15px !important;
    text-align: left !important;
    white-space: nowrap !important;
}

.table td {
    padding: 15px !important;
    border-bottom: 1px solid #e9ecef !important;
    vertical-align: middle !important;
}

.table tbody tr:hover {
    background-color: #f8f9fa !important;
}

/* Conversion Buttons */
.btn-conversion {
    background-color: transparent !important;
    border: 2px solid #FFBF00 !important;
    color: #228B22 !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    text-decoration: none !important;
}

.btn-conversion:hover {
    background-color: #FFBF00 !important;
    color: #1a5c1a !important;
}

/* Cards */
.info-card {
    background: #fff !important;
    border-radius: 10px !important;
    padding: 25px !important;
    margin-bottom: 20px !important;
    border-left: 4px solid #FFBF00 !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05) !important;
}

.info-card h3 {
    margin-top: 0 !important;
}

/* Material Icons */
.material-icons {
    color: #228B22 !important;
    vertical-align: middle !important;
    margin-right: 8px !important;
}

.material-icons.accent {
    color: #FFBF00 !important;
}

/* Footer */
footer {
    background-color: #1a5c1a !important;
    color: #fff !important;
    padding: 50px 0 20px !important;
}

footer h5 {
    color: #FFBF00 !important;
    font-size: 1.2rem !important;
    margin-bottom: 1rem !important;
}

footer p {
    color: rgba(255,255,255,0.85) !important;
    font-size: 16px !important;
}

footer a {
    color: rgba(255,255,255,0.85) !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

footer a:hover {
    color: #FFBF00 !important;
}

footer ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

footer li {
    margin-bottom: 8px !important;
    list-style: none !important;
}

footer li::before,
footer li::after {
    display: none !important;
    content: none !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2) !important;
    margin-top: 30px !important;
    padding-top: 20px !important;
    text-align: center !important;
}

.footer-bottom p {
    margin: 0 !important;
    font-size: 14px !important;
    color: rgba(255,255,255,0.7) !important;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section {
        padding: 60px 0 !important;
    }

    .hero-section h1 {
        font-size: 2rem !important;
    }

    .hero-section .row {
        flex-direction: column-reverse !important;
    }

    .hero-section img {
        margin-bottom: 30px !important;
    }

    .navbar-collapse {
        background-color: #228B22 !important;
        padding: 15px !important;
        margin-top: 10px !important;
        border-radius: 8px !important;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 1.8rem !important;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    h3 {
        font-size: 1.25rem !important;
    }

    .content-section {
        padding: 40px 0 !important;
    }

    .section-card {
        padding: 20px !important;
    }

    footer .row > div {
        margin-bottom: 30px !important;
    }
}

/* Utility Classes */
.text-accent {
    color: #FFBF00 !important;
}

.text-primary-green {
    color: #228B22 !important;
}

.bg-primary-green {
    background-color: #228B22 !important;
}

.bg-accent {
    background-color: #FFBF00 !important;
}
