/*
Theme Name: Big Bass Casino Slot
Theme URI: https://tayteko.gr/
Author: Roo
Author URI: https://tayteko.gr/
Description: A minimal theme for the Big Bass Casino Slot website, designed to complement the Big Bass Casino Slot plugin.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: big-bass-casino-slot
Tags: custom-background, custom-logo, custom-menu, editor-style, featured-images, full-width-template, responsive-layout, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* Basic Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px; /* Base font size */
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: #e0e0e0; /* Light text color for dark theme */
    background-color: #1a1a2e; /* Dark background color */
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-content {
    flex: 1;
    width: 100%;
    max-width: 1200px; /* Max width for content area */
    margin: 0 auto;
    padding: 20px;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Arial', sans-serif; /* Example: A more distinct font for headings */
    color: #ffffff; /* White color for headings */
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

/* Links */
a {
    color: #4d94ff; /* A bright blue for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover,
a:focus {
    color: #80b3ff; /* Lighter blue on hover/focus */
    text-decoration: underline;
}

/* Paragraphs */
p {
    margin-bottom: 1em;
}

/* Lists */
ul, ol {
    margin-bottom: 1em;
    padding-left: 1.5em;
}

li > ul,
li > ol {
    margin-bottom: 0;
    margin-left: 1.5em;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    border-radius: 4px; /* Slightly rounded corners for images */
}

/* Buttons */
.button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    background-color: #007bff; /* Primary button color */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.button:hover,
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    background-color: #0056b3; /* Darker shade on hover */
}

/* Basic Structure */
.site-header {
    background-color: #121220; /* Slightly darker header */
    padding: 1em 0;
    border-bottom: 1px solid #333;
}

.site-header .container,
.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title a {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-navigation li {
    margin-left: 20px;
}

.main-navigation a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
}

.main-navigation a:hover {
    color: #ffffff;
}

.site-footer {
    background-color: #121220; /* Consistent footer background */
    color: #aaa;
    padding: 2em 0;
    text-align: center;
    font-size: 0.9em;
    border-top: 1px solid #333;
}

/* WordPress Core CSS Classes */
.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
}

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption-text {
    font-size: 0.9em;
    color: #aaa;
    text-align: center;
    margin-top: 0.5em;
}

/* Accessibility */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000; /* Above WP toolbar. */
}

/* Table of Contents Styling */
.toc {
    background-color: #2a2a3e;
    border: 1px solid #444;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.toc_title {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.toc ul {
    list-style-type: none;
    padding-left: 0;
}

.toc ul li {
    margin-bottom: 5px;
}

.toc ul li a {
    text-decoration: none;
}

/* Accordion Styling */
.accordion-item {
    margin-bottom: 10px;
    border: 1px solid #444;
    border-radius: 4px;
    overflow: hidden;
}

.accordion-title {
    background-color: #3a3a4e;
    color: #fff;
    padding: 10px 15px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-title::after {
    content: '+'; /* Collapsed state */
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-title::after {
    content: '−'; /* Expanded state */
}

.accordion-content {
    padding: 15px;
    background-color: #2a2a3e;
    display: none; /* Hidden by default */
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

/* Game specific CTA button */
.cta-button {
    background-color: #ff8c00 !important; /* Orange color for game CTA */
    color: #ffffff !important;
    padding: 12px 25px !important;
    font-size: 1.1rem !important;
    border-radius: 8px !important;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background-color: #cc7000 !important; /* Darker orange on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-header .container,
    .site-footer .container {
        flex-direction: column;
        text-align: center;
    }

    .main-navigation ul {
        flex-direction: column;
        margin-top: 1em;
    }

    .main-navigation li {
        margin-left: 0;
        margin-bottom: 0.5em;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
}