/* Kirchen Casino - Custom Styles */
/* Primary: Mustard Yellow (#d4a017) | Accent: Navy Blue (#1e3a5f) */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

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

/* Navigation Styles */
.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-menu ul,
.nav-menu ol {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

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

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

header {
    background: #1e3a5f !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

.header-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0.75rem 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.5rem !important;
    text-decoration: none !important;
}

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

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

.nav-menu {
    display: flex !important;
    align-items: center !important;
    gap: 1.5rem !important;
    flex-wrap: wrap !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: #d4a017 !important;
}

.cta-btn {
    background: #d4a017 !important;
    color: #1e3a5f !important;
    padding: 0.6rem 1.25rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: all 0.3s !important;
    display: inline-block !important;
}

.cta-btn:hover {
    background: #b8900f !important;
    transform: translateY(-2px) !important;
}

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

.cta-btn-outline:hover {
    background: #d4a017 !important;
    color: #1e3a5f !important;
}

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

@media (max-width: 992px) {
    .mobile-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: 10rem 1.5rem 5rem !important;
    margin-top: 0 !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(30,58,95,0.92) 0%, rgba(30,58,95,0.85) 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: 2.75rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.2 !important;
}

.hero p {
    color: #e8e8e8 !important;
    font-size: 1.2rem !important;
    margin-bottom: 2rem !important;
    line-height: 1.7 !important;
}

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

@media (max-width: 768px) {
    .hero {
        padding: 8rem 1rem 3rem !important;
        min-height: 400px !important;
    }

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

    .hero p {
        font-size: 1rem !important;
    }
}

/* Table of Contents */
.toc-container {
    max-width: 1000px !important;
    margin: 2rem auto !important;
    padding: 0 1.5rem !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.75rem !important;
    justify-content: center !important;
}

.toc-btn {
    background: transparent !important;
    border: 2px solid #1e3a5f !important;
    color: #1e3a5f !important;
    padding: 0.6rem 1.25rem !important;
    border-radius: 50px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: all 0.3s !important;
    font-size: 0.95rem !important;
}

.toc-btn:hover {
    background: #1e3a5f !important;
    color: #fff !important;
}

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

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

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #1e3a5f !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
}

h2 {
    font-size: 2rem !important;
    margin-bottom: 1.5rem !important;
    padding-bottom: 0.75rem !important;
    border-bottom: 3px solid #d4a017 !important;
}

h3 {
    font-size: 1.5rem !important;
    margin-top: 2rem !important;
    margin-bottom: 1rem !important;
}

@media (max-width: 768px) {
    h2 {
        font-size: 1.6rem !important;
    }

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

    section {
        padding: 1.5rem !important;
    }
}

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

/* Images */
.content-img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    border-radius: 10px !important;
    margin: 1.5rem 0 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
}

/* Lists - Content Area Only */
main ul,
main ol,
section ul,
section ol {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 1.5rem 0 !important;
}

main ul li,
main ol li,
section ul li,
section ol li {
    position: relative !important;
    padding-left: 1.75rem !important;
    margin-bottom: 0.85rem !important;
    font-size: 1.1rem !important;
    line-height: 1.7 !important;
}

main ul li::before,
section ul li::before {
    content: '\25C6' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    color: #1e3a5f !important;
    font-size: 0.8rem !important;
}

main ol {
    counter-reset: item !important;
}

main ol li::before,
section ol li::before {
    counter-increment: item !important;
    content: counter(item) '.' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    color: #1e3a5f !important;
    font-weight: 700 !important;
}

main ul li::after,
main ol li::after,
section ul li::after,
section ol li::after {
    display: none !important;
}

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

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

thead {
    background: #1e3a5f !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 #e0e0e0 !important;
    color: #444 !important;
}

tbody tr:nth-child(even) {
    background: #f8f9fa !important;
}

tbody tr:hover {
    background: #f0f4f8 !important;
}

/* Cards */
.card {
    background: #fff !important;
    border-radius: 10px !important;
    padding: 1.75rem !important;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08) !important;
    border-left: 4px solid #d4a017 !important;
    margin: 1.25rem 0 !important;
}

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

/* Icons */
.icon {
    color: #1e3a5f !important;
    margin-right: 0.5rem !important;
}

.icon-accent {
    color: #d4a017 !important;
}

/* Conversion Button */
.conversion-btn {
    display: inline-block !important;
    background: linear-gradient(135deg, #d4a017 0%, #b8900f 100%) !important;
    color: #1e3a5f !important;
    padding: 1rem 2.5rem !important;
    border-radius: 50px !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: all 0.3s !important;
    text-align: center !important;
    box-shadow: 0 4px 15px rgba(212,160,23,0.3) !important;
}

.conversion-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(212,160,23,0.4) !important;
}

.btn-container {
    text-align: center !important;
    margin: 2rem 0 !important;
}

/* Footer */
footer {
    background: #1e3a5f !important;
    color: #fff !important;
    padding: 3rem 1.5rem 1.5rem !important;
    margin-top: 3rem !important;
}

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

footer li::before,
footer li::after {
    display: none !important;
    content: none !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: #d4a017 !important;
    font-size: 1.1rem !important;
    margin-bottom: 1rem !important;
    font-weight: 600 !important;
}

.footer-col a {
    color: #ccc !important;
    text-decoration: none !important;
    display: block !important;
    margin-bottom: 0.5rem !important;
    transition: color 0.3s !important;
}

.footer-col a:hover {
    color: #d4a017 !important;
}

.footer-col p {
    color: #aaa !important;
    font-size: 0.95rem !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: #888 !important;
    font-size: 0.9rem !important;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr !important;
    }
}

/* Utility Classes */
.text-center {
    text-align: center !important;
}

.mt-2 {
    margin-top: 2rem !important;
}

.mb-2 {
    margin-bottom: 2rem !important;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #f8f4e8 0%, #fff9e6 100%) !important;
    border-left: 4px solid #d4a017 !important;
    padding: 1.5rem !important;
    border-radius: 0 10px 10px 0 !important;
    margin: 1.5rem 0 !important;
}

.highlight-box p {
    margin-bottom: 0 !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    main {
        padding: 2rem 1rem !important;
    }

    .toc-container {
        padding: 0 1rem !important;
    }

    .toc-btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.85rem !important;
    }
}
