/* AdvoCasino - Main Stylesheet */
/* Using Bulma Framework with Custom Styles */
/* Colors: Teal (primary) & Rose Gold (accent) */

:root {
    --teal: #008080 !important;
    --teal-dark: #006666 !important;
    --teal-light: #20a0a0 !important;
    --rose-gold: #b76e79 !important;
    --rose-gold-dark: #9a5a63 !important;
    --rose-gold-light: #d4a5ad !important;
    --dark-bg: #1a1a2e !important;
    --light-text: #f5f5f5 !important;
}

/* Reset and Base */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth !important;
}

body {
    font-family: 'Sora', sans-serif !important;
    font-size: 18px !important;
    line-height: 1.7 !important;
    color: #333 !important;
    background-color: #fafafa !important;
    overflow-x: hidden !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif !important;
    font-weight: 700 !important;
    color: var(--teal-dark) !important;
    margin-bottom: 1rem !important;
}

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

h2 {
    font-size: 2rem !important;
    margin-top: 2rem !important;
}

h3 {
    font-size: 1.5rem !important;
    color: var(--rose-gold-dark) !important;
}

p {
    font-size: 1.1rem !important;
    margin-bottom: 1rem !important;
    line-height: 1.8 !important;
}

/* Navbar */
.navbar {
    background-color: var(--teal-dark) !important;
    padding: 0.5rem 1rem !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    position: fixed !important;
    width: 100% !important;
    top: 0 !important;
    z-index: 1000 !important;
}

.navbar-brand {
    display: flex !important;
    align-items: center !important;
}

.navbar-brand .brand-name {
    color: var(--light-text) !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-left: 0.5rem !important;
    text-decoration: none !important;
}

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

.navbar-menu {
    background-color: var(--teal-dark) !important;
}

.navbar-item {
    color: var(--light-text) !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    transition: color 0.3s ease !important;
    list-style: none !important;
}

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

.navbar-item:hover {
    color: var(--rose-gold-light) !important;
    background-color: transparent !important;
}

.navbar-end .button {
    margin-left: 0.5rem !important;
}

.navbar-burger {
    color: var(--light-text) !important;
}

.navbar-burger span {
    background-color: var(--light-text) !important;
}

/* Reset navbar list styles */
.navbar ul,
.navbar ol,
.navbar-menu ul,
.navbar-menu ol {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

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

/* Hero Section */
.hero {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative !important;
    padding-top: 80px !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(0, 102, 102, 0.9) 0%, rgba(26, 26, 46, 0.85) 100%) !important;
    z-index: 1 !important;
}

.hero-body {
    position: relative !important;
    z-index: 2 !important;
    padding: 4rem 1.5rem !important;
}

.hero .title {
    color: var(--light-text) !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
    margin-bottom: 1.5rem !important;
}

.hero .subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1.2rem !important;
    max-width: 800px !important;
    margin: 0 auto 2rem auto !important;
    line-height: 1.8 !important;
}

/* Buttons */
.button.is-primary {
    background-color: var(--teal) !important;
    border-color: var(--teal) !important;
    color: white !important;
}

.button.is-primary:hover {
    background-color: var(--teal-dark) !important;
    border-color: var(--teal-dark) !important;
}

.button.is-outlined.is-primary {
    background-color: transparent !important;
    border-color: var(--teal) !important;
    color: var(--teal) !important;
}

.button.is-outlined.is-primary:hover {
    background-color: var(--teal) !important;
    color: white !important;
}

.button.is-accent {
    background-color: var(--rose-gold) !important;
    border-color: var(--rose-gold) !important;
    color: white !important;
}

.button.is-accent:hover {
    background-color: var(--rose-gold-dark) !important;
    border-color: var(--rose-gold-dark) !important;
}

.button.is-outlined.is-accent {
    background-color: transparent !important;
    border-color: var(--rose-gold) !important;
    color: var(--rose-gold) !important;
}

.button.is-outlined.is-accent:hover {
    background-color: var(--rose-gold) !important;
    color: white !important;
}

.button.is-hero-cta {
    background-color: var(--rose-gold) !important;
    border-color: var(--rose-gold) !important;
    color: white !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
}

.button.is-hero-cta:hover {
    background-color: var(--rose-gold-dark) !important;
    transform: translateY(-2px) !important;
}

/* Table of Contents - Outline Buttons */
.toc-section {
    padding: 2rem 0 !important;
    background-color: #f0f0f0 !important;
}

.toc-buttons {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
    justify-content: center !important;
}

.toc-buttons .button {
    white-space: nowrap !important;
}

/* Main Content Sections */
.section {
    padding: 3rem 1.5rem !important;
}

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

.section-title {
    color: var(--teal-dark) !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    padding-bottom: 0.5rem !important;
    border-bottom: 3px solid var(--rose-gold) !important;
    display: inline-block !important;
}

/* Cards */
.card {
    background-color: white !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    overflow: hidden !important;
    margin-bottom: 1.5rem !important;
}

.card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.card-content {
    padding: 1.5rem !important;
}

.card-header {
    background-color: var(--teal) !important;
    padding: 1rem !important;
}

.card-header-title {
    color: white !important;
    font-weight: 600 !important;
}

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

.content ul,
.content ol,
section ul,
section ol,
.section ul,
.section ol {
    list-style: none !important;
    padding-left: 1.5rem !important;
}

.content ul li,
.content ol li,
section ul li,
section ol li,
.section ul li,
.section ol li {
    position: relative !important;
    padding-left: 1.5rem !important;
    margin-bottom: 0.75rem !important;
    font-size: 1.1rem !important;
}

.content ul li::before,
section ul li::before,
.section ul li::before {
    content: '\276F' !important;
    position: absolute !important;
    left: 0 !important;
    color: var(--rose-gold) !important;
    font-weight: bold !important;
}

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

.content ol li,
section ol li,
.section ol li {
    counter-increment: custom-counter !important;
}

.content ol li::before,
section ol li::before,
.section ol li::before {
    content: counter(custom-counter) '.' !important;
    position: absolute !important;
    left: 0 !important;
    color: var(--rose-gold) !important;
    font-weight: bold !important;
}

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

.table {
    width: 100% !important;
    border-collapse: collapse !important;
    background-color: white !important;
    font-size: 1rem !important;
}

.table thead {
    background-color: var(--teal) !important;
}

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

.table tbody tr {
    transition: background-color 0.2s ease !important;
}

.table tbody tr:nth-child(even) {
    background-color: #f9f9f9 !important;
}

.table tbody tr:hover {
    background-color: rgba(0, 128, 128, 0.05) !important;
}

.table tbody td {
    padding: 1rem !important;
    border-bottom: 1px solid #eee !important;
}

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

/* Footer */
.footer {
    background-color: var(--dark-bg) !important;
    color: var(--light-text) !important;
    padding: 3rem 1.5rem 2rem !important;
}

.footer a {
    color: var(--rose-gold-light) !important;
    transition: color 0.3s ease !important;
}

.footer a:hover {
    color: var(--rose-gold) !important;
}

.footer p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1rem !important;
}

.footer-links {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 2rem !important;
    justify-content: center !important;
    margin-bottom: 2rem !important;
}

.footer-column {
    min-width: 150px !important;
}

.footer-column h4 {
    color: var(--light-text) !important;
    font-size: 1.1rem !important;
    margin-bottom: 1rem !important;
}

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

.footer li {
    padding-left: 0 !important;
    margin-bottom: 0.5rem !important;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-top: 1.5rem !important;
    text-align: center !important;
}

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

.bi-accent {
    color: var(--rose-gold) !important;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) !important;
    }
    50% {
        transform: translateY(-10px) !important;
    }
}

@keyframes wave {
    0% {
        transform: translateX(-100%) !important;
    }
    100% {
        transform: translateX(100%) !important;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1 !important;
    }
    50% {
        opacity: 0.7 !important;
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite !important;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite !important;
}

/* Decorative Elements */
.wave-decoration {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 50px !important;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23fafafa' d='M0,50 C360,100 1080,0 1440,50 L1440,100 L0,100 Z'%3E%3C/path%3E%3C/svg%3E") !important;
    background-size: cover !important;
}

.decoration-circle {
    position: absolute !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, var(--rose-gold-light), var(--rose-gold)) !important;
    opacity: 0.1 !important;
    z-index: 0 !important;
}

.decoration-square {
    position: absolute !important;
    background: linear-gradient(135deg, var(--teal-light), var(--teal)) !important;
    opacity: 0.1 !important;
    z-index: 0 !important;
    transform: rotate(45deg) !important;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    h1 {
        font-size: 2rem !important;
    }

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

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

@media screen and (max-width: 768px) {
    body {
        font-size: 16px !important;
    }

    h1 {
        font-size: 1.75rem !important;
    }

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

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

    .hero .title {
        font-size: 1.75rem !important;
    }

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

    .section {
        padding: 2rem 1rem !important;
    }

    .toc-buttons {
        flex-direction: column !important;
        align-items: center !important;
    }

    .toc-buttons .button {
        width: 100% !important;
        max-width: 300px !important;
    }

    .footer-links {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .navbar-menu {
        padding: 1rem !important;
    }

    .navbar-menu.is-active {
        display: block !important;
        background-color: var(--teal-dark) !important;
    }
}

@media screen and (max-width: 480px) {
    .hero-body {
        padding: 3rem 1rem !important;
    }

    .button {
        font-size: 0.9rem !important;
    }
}

/* Pros and Cons Cards */
.pros-cons-container {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 1.5rem !important;
    margin: 1.5rem 0 !important;
}

.pros-card,
.cons-card {
    border-radius: 8px !important;
    padding: 1.5rem !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.pros-card {
    background-color: rgba(0, 128, 128, 0.05) !important;
    border-left: 4px solid var(--teal) !important;
}

.cons-card {
    background-color: rgba(183, 110, 121, 0.05) !important;
    border-left: 4px solid var(--rose-gold) !important;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%) !important;
    padding: 3rem 1.5rem !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.cta-section h3 {
    color: white !important;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Conversion Buttons */
.conversion-btn {
    display: inline-block !important;
    background-color: transparent !important;
    border: 2px solid var(--rose-gold) !important;
    color: var(--rose-gold) !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    transition: all 0.3s ease !important;
}

.conversion-btn:hover {
    background-color: var(--rose-gold) !important;
    color: white !important;
}

/* Skip padding to top for fixed navbar */
.main-content {
    padding-top: 70px !important;
}
