/*
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/footer.css";
@import "assets/css/blocks.css";
@import "assets/css/bg-colors.css";
@import "assets/css/fonts.css";
@import "assets/css/availability.css";

body {
  box-sizing: border-box;
  overflow-x: hidden;
}
a:hover, a:focus {
  text-decoration: none !important;
}
body * {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/*Responsive Layout*/
html {
  padding: 0;
  margin: 0;
  background: #FFF;
}

body {
  padding: 0;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #515151;
}
@media (max-width: 800px) {
  body {
    font-size: 14px;
  }
}
.oj-row {
    padding: 50px 10vw;
    margin: 0 auto;
}
.oj-btn-container {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    background-color: var(--primary-color, #ffffff); 
    color: var(--secondary-color, #0073aa); 
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    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);
}

/* 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: flex;
    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;
}
/* FOOTER  */
footer {
    background-color: var(--primary-color);
    text-align: center;
    color: #fff;
    overflow: hidden;
}
footer img {
    max-width: 50%;
    max-height: 150px;
}
.bottom-footer {
    background-color: #23282d;
    display: flex;
    justify-content: flex-end;
    color: #fff;
    padding: 20px 10px;
}
footer a {
    color: #fff;
    text-decoration: none;
}
/* FOOTER  END */

/* RESPONSIVE CSS */

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