/* Custom styles for Dietrich - Casino Bonus Guide */
/* Primary: indigo | Accent: silver */

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

html {
    scroll-behavior: smooth;
}

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

/* Navbar styles */
.navbar {
    background-color: #4B0082 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15) !important;
}

.navbar-item,
.navbar-link {
    color: #fff !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    list-style: none !important;
}

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

.navbar-item:hover,
.navbar-link:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #C0C0C0 !important;
}

.navbar-burger span {
    background-color: #fff !important;
}

.navbar-menu {
    list-style: none !important;
}

.navbar-menu li {
    list-style: none !important;
}

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

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

.navbar-brand img {
    box-shadow: none !important;
    max-height: 40px !important;
}

.brand-name {
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 22px !important;
    margin-left: 10px !important;
}

/* Hero section */
.hero {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative !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(75, 0, 130, 0.9) 0%, rgba(75, 0, 130, 0.7) 100%) !important;
    z-index: 1 !important;
}

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

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

.hero .subtitle {
    color: #f0f0f0 !important;
    font-size: 1.25rem !important;
    line-height: 1.8 !important;
    max-width: 800px !important;
    margin-bottom: 2rem !important;
}

/* Buttons */
.button.is-outlined {
    border-width: 2px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
}

.button.is-primary.is-outlined {
    border-color: #C0C0C0 !important;
    color: #fff !important;
    background-color: transparent !important;
}

.button.is-primary.is-outlined:hover {
    background-color: #C0C0C0 !important;
    color: #4B0082 !important;
}

.button.is-cta {
    border-color: #C0C0C0 !important;
    color: #4B0082 !important;
    background-color: #C0C0C0 !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
}

.button.is-cta:hover {
    background-color: #a8a8a8 !important;
    border-color: #a8a8a8 !important;
}

/* Sections */
.section {
    padding: 4rem 1.5rem !important;
}

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

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

.section-title {
    color: #4B0082 !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    margin-bottom: 2rem !important;
    position: relative !important;
    padding-bottom: 1rem !important;
}

.section-title::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 60px !important;
    height: 4px !important;
    background-color: #C0C0C0 !important;
    border-radius: 2px !important;
}

h3 {
    color: #4B0082 !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    margin-top: 2rem !important;
    margin-bottom: 1rem !important;
}

/* Lists */
ul, ol {
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.content-list {
    list-style: none !important;
    padding-left: 0 !important;
}

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

.content-list li::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 8px !important;
    width: 0 !important;
    height: 0 !important;
    border-top: 6px solid transparent !important;
    border-bottom: 6px solid transparent !important;
    border-left: 10px solid #C0C0C0 !important;
}

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

ol.content-list {
    counter-reset: item !important;
}

ol.content-list li {
    counter-increment: item !important;
}

ol.content-list li::before {
    content: counter(item) !important;
    border: none !important;
    width: 24px !important;
    height: 24px !important;
    background-color: #4B0082 !important;
    color: #fff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    top: 4px !important;
}

/* Cards */
.card {
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    overflow: hidden !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    background-color: #fff !important;
}

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

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

.card-image img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

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

.table {
    width: 100% !important;
    border-collapse: collapse !important;
    background-color: #fff !important;
    font-size: 16px !important;
}

.table thead {
    background-color: #4B0082 !important;
}

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

.table tbody tr {
    border-bottom: 1px solid #e0e0e0 !important;
}

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

.table tbody td {
    padding: 1rem !important;
    vertical-align: middle !important;
}

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

/* Footer */
.footer {
    background-color: #2c0050 !important;
    padding: 3rem 1.5rem 2rem !important;
}

.footer,
.footer p,
.footer a,
.footer span {
    color: #e0e0e0 !important;
}

.footer a:hover {
    color: #C0C0C0 !important;
}

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

.footer-links li {
    list-style: none !important;
    margin-bottom: 0.5rem !important;
}

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

.footer-title {
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    margin-bottom: 1rem !important;
}

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

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

.material-icons.silver {
    color: #C0C0C0 !important;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .hero .title {
        font-size: 1.75rem !important;
    }

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

    .section-title {
        font-size: 1.5rem !important;
    }

    .navbar-menu {
        background-color: #4B0082 !important;
    }

    .navbar-menu.is-active {
        display: block !important;
    }

    .columns {
        margin: 0 !important;
    }

    .column {
        padding: 0.75rem !important;
    }

    .table {
        font-size: 14px !important;
    }
}

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

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

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

/* Utility classes */
.has-text-centered {
    text-align: center !important;
}

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

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

/* Logo specific - no shadow */
.logo-img {
    box-shadow: none !important;
}
