/*
Theme Name: Eucalyptus
Author: Owain Jones
Author URI: https://rentmanager.com
Description: A clean and modern WordPress theme perfect for blogs, portfolios, and business sites. Designed for minimalism and performance.
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: eucalyptus
Tags: clean, modern, blog, portfolio, responsive, minimal, custom-background, custom-logo, theme-options
Requires at least: 5.0
Tested up to: 6.0
Requires PHP: 7.4
*/

@import "assets/css/theme-colors.css";
@import "assets/css/header.css";
@import "assets/css/blocks.css";

body {
    margin: 0 auto;
    font-family: var(--body-font) !important; /*  Unfortunatly Bootstrap kept overriding this so we need an important tag here */
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--header-font);
}
h1 {
    font-size: 3em;
    margin: 0;
}
.oj-row {
    padding: 50px 10vw;
    margin: 0 auto;
}
.oj-btn-container {
    display: inline-block;
    padding: 12px 24px !important;
    font-size: 16px !important;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    color: var(--primary-color, #ffffff); 
    background-color: var(--secondary-color, #0073aa); 
    border: none;
    border-radius: 30px !important; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    cursor: pointer;
}
.oj-btn-container a, .oj-btn-container a:hover{
    text-decoration: none;
    color: #fff;
}
.oj-btn-container:hover {
    background-color: var(--primary-color, #005b8a); 
    color: var(--secondary-color, #ffffff);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px); 
}

/* CALLOUT SECTION */
.oj-home-callout {
    overflow: hidden;
}
.oj-callout-content {
    display: flex;
    width: 100%;
    justify-content: center;
}
.oj-callout-col {
    flex-basis: 40%;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
}
.callout-contact {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px 10px;
}
.callout-contact h2, .callout-contact h3, .callout-contact p {
    width: 100%;
}
.google-map {
    flex: 100%;
    display: flex;
    flex-wrap: wrap;
}
.google-map iframe {
    width: 100%;
}
/* CALLOUT SECTION END */

/* SUBPAGE HERO */
.page-hero {
    display: none;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 40vh;
    align-items: center;
    position: relative;
    z-index: 1;
}
.page-hero::before {
    content:"";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}
.page-hero h1 {
    padding: 0 10vw;
    color: #fff;
    z-index: 99;
}

.oj-content-container {
    background-color: var(--primary-color) !important;
    color: white;
}
/* FOOTER  */
footer {
    background-color: var(--primary-color, #f4f4f4);
    color: #fff;
    overflow: hidden;
}

.footer {
    display: none;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 40px;
}

.footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.footer-menu li {
    margin: 1em auto;
}

.logo-area {
    align-items: center;
    justify-content: center;
}

.logo-area img {
    max-width: 200px;
    max-height: 100px;
}

.right-column {
    text-align: right;
    align-items: flex-end;
}

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

footer a:hover {
    color: var(--secondary-color);
     transform: translateY(-2px); 
}

.bottom-footer a:hover {
    color: white;
}

.hours-title {
    margin-bottom: 0em;
}

.social-area {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-menu {
    list-style: none;
    margin-top: 1em;
    padding: 0;
}

.bottom-footer {
    background-color: #23282d;
    display: flex;
    justify-content: center;
    padding: 20px 10px;
}
/* FOOTER  END */

/* RESPONSIVE CSS */

@media (max-width: 768px) {
    .oj-callout-content {
        flex-direction: column;
    }
}



/* Accordion wrapper */

.wp-block-heading {
    padding: 2em;
}

.wp-block-accordion {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1em;
    margin-bottom: 1em;
}

/* Each item */
.wp-block-accordion-item {
    /* border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 12px; */
    overflow: hidden;
}

/* Heading / trigger button */
.wp-block-accordion-heading__toggle-title {
    font-weight: 600;
    font-size: 1.4rem;
}

.wp-block-accordion-heading button {
    width: 100%;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white-color, #ffffff);
    color: black;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
    text-align: left;
    border-radius: 20px;
}


/* Hide default icon, add custom */
.wp-block-accordion-heading__toggle-icon {
    display: none;
}

.wp-block-accordion-heading button::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 300;
}

.wp-block-accordion-heading button[aria-expanded="true"]::after {
    content: '−';
}

/* Open state border */
/* .wp-block-accordion-heading button[aria-expanded="true"] {
    border-bottom: 1px solid #e0e0e0;
  } */

/* Content panel */
.wp-block-accordion-panel {
    padding: 16px 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #000;
}

@media (max-width:800px) {
    .wp-block-accordion { 
        max-width: 80%;
    }
}
