/*
Theme Name: Big Bass Splash
Theme URI: https://www.daulos.gr/go/big-bass-splash/
Author: Dimitris Katsaros
Author URI: https://daulos.gr/
Description: A vibrant and sweet theme inspired by the BIg Bass Splash
Version: 1.0.0
Requires at least: 5.2
Requires PHP: 7.2
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: big-bass-splash-theme
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    background-color: #FDFBF5;
    color: #333333;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

a {
    color: #5027f5;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #FFC300;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Luckiest Guy', sans-serif;
    color: #111111;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }

/*--------------------------------------------------------------
# Layout & Spacing
--------------------------------------------------------------*/
.content-area {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.site-main > * {
    margin-bottom: 1rem;
}

.wp-block-image.aligncenter {
    text-align: center;
}

.wp-block-buttons.aligncenter {
    justify-content: center;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.site-header {
    background-color: #FFFFFF;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.site-branding {
    flex-shrink: 0;
}

.site-title a {
    color: #333333;
    font-weight: bold;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-navigation ul li {
    margin-left: 1.5rem;
}

.main-navigation a {
    color: #333333;
    font-weight: bold;
}

.header-cta {
    margin-left: 2rem;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.site-footer {
    background-color: #FFF8E7;
    color: #333333;
    padding: 2rem 1rem;
    text-align: center;
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
/*.wp-block-button {*/
/*    width: 50%;*/
/*}*/

.wp-block-button__link {
    background-color: #FFC300;
    color: #FFFFFF;
    border-radius: 25px;
    border: 1px solid #DAA520;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
    transition: background-color 0.3s;
    text-align: center;
    width: 50%;
}

.wp-block-button__link:hover {
    background-color: #E6B800;
    color: #FFFFFF;
}

.wp-block-button.is-style-outline .wp-block-button__link {
    background-color: transparent;
    color: #FFC300;
    border: 2px solid #FFC300;
    padding: 0.5rem 1rem;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
    background-color: #FFC300;
    color: #FFFFFF;
}


/*--------------------------------------------------------------
# Images
--------------------------------------------------------------*/
.wp-block-image img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 195, 0, 0.2);
}

/*--------------------------------------------------------------
# Specific Elements
--------------------------------------------------------------*/
.table-of-contents {
    background: #FFF5E1;
    border: 1px solid #FFC300;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
}

.pros-cons-table .pros-header {
    background-color: #FFC300;
}

.pros-cons-table .cons-header {
    background-color: #A52A2A;
    color: white;
}

/*--------------------------------------------------------------
# FAQ Accordion
--------------------------------------------------------------*/
.faq-accordion .faq-item {
    border-bottom: 1px solid #FFF8E7;
    margin-bottom: 1rem;
}

.faq-question {
    background-color: #FFFFFF;
    color: #333333;
    padding: 1rem;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #FFF5E1;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #FFC300;
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    display: none;
    background-color: #FFFFFF;
    color: #333333;
    padding: 1rem;
}

.faq-item.active .faq-answer {
    display: block;
}

/*--------------------------------------------------------------
# WordPress Core
--------------------------------------------------------------*/
.alignwide {
    margin-left: -100px;
    margin-right: -100px;
    max-width: 1400px;
}

.alignfull {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: 100vw;
}

.entry-content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.entry-content ol {
    list-style-type: decimal;
    padding-left: 20px;
}