/* JeffsCasino - Custom Styles */
/* Primary: Flamingo Pink #F8837E | Accent: Ash Gray #B2BEB5 */

:root {
    --primary: #F8837E;
    --primary-dark: #E66B66;
    --accent: #B2BEB5;
    --accent-dark: #8A9A8D;
    --dark: #1a1a2e;
    --light: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px !important;
    line-height: 1.7 !important;
    color: #333;
    background-color: var(--light);
}

/* Navigation Reset */
.nav-menu li {
    margin-bottom: 0 !important;
    list-style: none !important;
}

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

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

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

/* Header & Navigation */
header {
    background: var(--dark) !important;
    padding: 1rem 0 !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

.nav-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 1.5rem !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
}

.logo {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    text-decoration: none !important;
}

.logo img {
    width: 45px !important;
    height: 45px !important;
    box-shadow: none !important;
}

.logo span {
    color: #fff !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
}

.nav-menu {
    display: flex !important;
    gap: 2rem !important;
    align-items: center !important;
    list-style: none !important;
}

.nav-menu a {
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
    transition: color 0.3s !important;
}

.nav-menu a:hover {
    color: var(--primary) !important;
}

.cta-btn {
    background: var(--primary) !important;
    color: #fff !important;
    padding: 0.6rem 1.25rem !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    display: inline-block !important;
    transition: background 0.3s !important;
}

.cta-btn:hover {
    background: var(--primary-dark) !important;
}

.cta-btn-outline {
    background: transparent !important;
    border: 2px solid var(--primary) !important;
    color: var(--primary) !important;
    padding: 0.5rem 1.1rem !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    display: inline-block !important;
    transition: all 0.3s !important;
}

.cta-btn-outline:hover {
    background: var(--primary) !important;
    color: #fff !important;
}

/* Mobile Menu */
.menu-toggle {
    display: none !important;
    background: none !important;
    border: none !important;
    color: #fff !important;
    font-size: 1.5rem !important;
    cursor: pointer !important;
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block !important;
    }

    .nav-menu {
        display: none !important;
        width: 100% !important;
        flex-direction: column !important;
        gap: 1rem !important;
        padding: 1rem 0 !important;
        text-align: center !important;
    }

    .nav-menu.active {
        display: flex !important;
    }
}

/* Hero Section */
.hero {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative !important;
    padding: 6rem 1.5rem !important;
    min-height: 500px !important;
    display: flex !important;
    align-items: center !important;
}

.hero::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, rgba(26,26,46,0.9) 0%, rgba(26,26,46,0.7) 100%) !important;
    z-index: 1 !important;
}

.hero-content {
    position: relative !important;
    z-index: 2 !important;
    max-width: 900px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.hero h1 {
    color: #fff !important;
    font-size: 3rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.2 !important;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem !important;
    }
}

.hero p {
    color: rgba(255,255,255,0.9) !important;
    font-size: 1.2rem !important;
    margin-bottom: 2rem !important;
    line-height: 1.8 !important;
}

.hero .cta-btn {
    font-size: 1.1rem !important;
    padding: 1rem 2rem !important;
}

/* Table of Contents */
.toc {
    padding: 2rem 1.5rem !important;
    background: #fff !important;
}

.toc-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.75rem !important;
    justify-content: center !important;
}

.toc-btn {
    border: 2px solid var(--accent) !important;
    background: transparent !important;
    color: var(--dark) !important;
    padding: 0.6rem 1.25rem !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    white-space: nowrap !important;
    transition: all 0.3s !important;
}

.toc-btn:hover {
    background: var(--accent) !important;
    color: var(--dark) !important;
}

/* Main Content */
main {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 3rem 1.5rem !important;
}

section {
    margin-bottom: 4rem !important;
    background: #fff !important;
    border-radius: 12px !important;
    padding: 2.5rem !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05) !important;
}

h2 {
    color: var(--dark) !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    padding-bottom: 0.75rem !important;
    border-bottom: 3px solid var(--primary) !important;
}

h3 {
    color: var(--dark) !important;
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    margin: 2rem 0 1rem !important;
}

p {
    color: #444 !important;
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
    margin-bottom: 1.25rem !important;
}

/* Content Lists */
.content-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 1.5rem 0 !important;
}

.content-list li {
    position: relative !important;
    padding-left: 1.75rem !important;
    margin-bottom: 1rem !important;
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
}

.content-list li::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0.6rem !important;
    width: 8px !important;
    height: 8px !important;
    background: var(--accent) !important;
    border-radius: 50% !important;
}

.content-list li::marker {
    display: none !important;
}

/* Images */
.section-img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    border-radius: 10px !important;
    margin: 1.5rem 0 !important;
    display: block !important;
}

/* Tables */
.table-container {
    overflow-x: auto !important;
    margin: 1.5rem 0 !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
}

table {
    width: 100% !important;
    min-width: 600px !important;
    border-collapse: collapse !important;
    font-size: 1rem !important;
}

thead {
    background: var(--primary) !important;
}

th {
    color: #fff !important;
    padding: 1rem !important;
    text-align: left !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
}

td {
    padding: 1rem !important;
    border-bottom: 1px solid #eee !important;
    color: #444 !important;
}

tbody tr:hover {
    background: rgba(248,131,126,0.05) !important;
}

/* Cards */
.card-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 1.5rem !important;
    margin: 2rem 0 !important;
}

.card {
    background: var(--light) !important;
    border-radius: 10px !important;
    padding: 1.5rem !important;
    border-left: 4px solid var(--primary) !important;
}

.card h4 {
    color: var(--dark) !important;
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.75rem !important;
}

.card p {
    font-size: 1rem !important;
    margin-bottom: 0 !important;
}

/* Icons */
.bi {
    color: var(--primary) !important;
    font-size: 1.25rem !important;
    margin-right: 0.5rem !important;
    vertical-align: middle !important;
}

/* Footer */
footer {
    background: var(--dark) !important;
    color: rgba(255,255,255,0.8) !important;
    padding: 3rem 1.5rem 1.5rem !important;
}

.footer-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 2rem !important;
}

.footer-col h4 {
    color: #fff !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem !important;
}

.footer-col ul li::before,
.footer-col ul li::after {
    display: none !important;
    content: none !important;
}

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

.footer-col a:hover {
    color: var(--primary) !important;
}

.footer-col p {
    color: rgba(255,255,255,0.7) !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
}

.footer-bottom {
    max-width: 1200px !important;
    margin: 2rem auto 0 !important;
    padding-top: 1.5rem !important;
    border-top: 1px solid rgba(255,255,255,0.1) !important;
    text-align: center !important;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6) !important;
    font-size: 0.95rem !important;
    margin: 0 !important;
}

/* Responsive */
@media (max-width: 768px) {
    section {
        padding: 1.5rem !important;
    }

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

    .hero {
        padding: 4rem 1rem !important;
        min-height: 400px !important;
    }
}
