/* Core Styles for PinkVegan Casino */

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

body {
    font-family: 'Public Sans', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    background-color: #f5f5f5;
}

/* Typography */
h1 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.2 !important;
}

h2 {
    font-size: 2rem !important;
    font-weight: 700 !important;
    margin-top: 2.5rem !important;
    margin-bottom: 1.5rem !important;
    color: #008080 !important;
}

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

p {
    margin-bottom: 1.5rem;
    font-size: 18px;
}

/* Logo */
.logo-image {
    width: 48px;
    height: 48px;
    box-shadow: none !important;
}

/* Navigation */
.navbar {
    background-color: #008080 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.navbar-item {
    color: #ffffff !important;
    font-weight: 500;
    transition: color 0.3s ease;
    list-style: none !important;
}

.navbar-item:hover {
    color: #B76E79 !important;
    background-color: rgba(183, 110, 121, 0.1) !important;
}

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

.navbar-brand .navbar-item {
    color: #ffffff !important;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-left: 0.75rem;
}

.navbar-burger {
    color: #ffffff !important;
}

/* Hero Section */
.hero {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative !important;
    min-height: 500px !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, 128, 128, 0.85), rgba(183, 110, 121, 0.75)) !important;
}

.hero .hero-body {
    position: relative !important;
    z-index: 2 !important;
}

.hero h1 {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.hero p {
    color: #ffffff !important;
    font-size: 1.2rem !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
}

/* Buttons */
.button.is-primary {
    background-color: #B76E79 !important;
    border-color: #B76E79 !important;
    color: #ffffff !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-radius: 4px;
}

.button.is-primary:hover {
    background-color: #a05d6a !important;
    border-color: #a05d6a !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(183, 110, 121, 0.3);
}

.button.cta-button {
    background-color: #008080 !important;
    border-color: #008080 !important;
    color: #ffffff !important;
    font-size: 1.1rem;
}

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

/* Table of Contents */
.toc {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

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

.toc li {
    padding: 0.5rem 0;
    list-style: none !important;
}

.toc li::before {
    display: none !important;
}

.toc a {
    color: #008080;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.toc a:hover {
    color: #B76E79;
}

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

.content-section {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    transition: box-shadow 0.3s ease;
}

.content-section:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.content ul li,
.content ol li {
    position: relative;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    list-style: none !important;
}

.content ul li::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0.6em !important;
    width: 8px !important;
    height: 8px !important;
    background-color: #B76E79 !important;
    border-radius: 50% !important;
    list-style: none !important;
}

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

.content ol {
    counter-reset: item;
}

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

.content ol li::before {
    content: counter(item) '.' !important;
    position: absolute !important;
    left: 0 !important;
    color: #B76E79 !important;
    font-weight: 600 !important;
}

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

/* Remove list styling from navbar and footer */
.navbar ul,
.navbar ol,
.navbar li,
.footer ul,
.footer ol,
.footer li {
    list-style: none !important;
}

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

/* Images */
.content img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.content img:hover {
    transform: scale(1.02);
}

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

.table {
    background-color: #ffffff;
    width: 100%;
    border-collapse: collapse;
}

.table thead {
    background-color: #008080;
}

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

.table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

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

.table tbody td {
    padding: 1rem;
}

/* Cards */
.card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.card-header {
    background-color: #008080;
    color: #ffffff;
}

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

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

.footer p {
    color: #ffffff !important;
    font-size: 16px;
}

.footer a {
    color: #ffffff !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

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

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

/* Icons */
.icon {
    color: #008080;
}

.icon.is-accent {
    color: #B76E79;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section {
    animation: fadeIn 0.6s ease-out;
}

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

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

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

    .hero {
        min-height: 400px !important;
    }

    .section {
        padding: 2rem 1rem;
    }

    .content-section {
        padding: 1.5rem;
    }

    .table-container {
        margin: 1rem -1rem;
    }
}

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

.mt-3 {
    margin-top: 1.5rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.container {
    max-width: 1200px;
}

/* Ensure readability */
.has-text-white {
    color: #ffffff !important;
}

.has-background-teal {
    background-color: #008080 !important;
}

.has-background-rosegold {
    background-color: #B76E79 !important;
}
