/*
Theme Name: Life Assist Abilities Support
Theme URI: https://lifeassistsupport.com.au
Author: Life Assist Abilities Support
Author URI: https://lifeassistsupport.com.au
Description: A custom WordPress theme for Life Assist Abilities Support - NDIS Provider in Canberra ACT. Supports Elementor page builder.
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: life-assist
Tags: custom-header, custom-logo, custom-menu, featured-images, elementor, ndis, healthcare
*/

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
    --primary-color: #5E3D7A;
    --primary-dark: #4A2F61;
    --primary-light: #7B4B94;
    --secondary-color: #9B6BB5;
    --accent-green: #6BBF4E;
    --text-dark: #333333;
    --text-light: #666666;
    --text-white: #FFFFFF;
    --bg-white: #FFFFFF;
    --bg-light: #F8F8F8;
    --bg-gray: #F5F5F5;
    --border-color: #E0E0E0;
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --header-height: 80px;
    --topbar-height: 45px;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

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

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 15px 0;
}

p {
    margin: 0 0 15px 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* ==========================================================================
   Top Bar Styles – Client Improved Version
   ========================================================================== */

.top-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    padding: 12px 0;
    font-size: 16px; /* Increased for readability */
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* LEFT SIDE (Email / Phone) */
.top-bar-left {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.top-bar-left a,
.top-bar-left span {
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px; /* Bigger text */
    font-weight: 600; /* Better visibility */
    line-height: 1.4;
}

.top-bar-left a:hover {
    color: rgba(255, 255, 255, 0.85);
}

/* ICONS */
.top-bar-left i,
.top-bar-left svg {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

/* RIGHT SIDE */
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* SOCIAL ICONS */
.top-bar-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.top-bar-social a {
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.top-bar-social a:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* ===============================
   MOBILE RESPONSIVE
   =============================== */

@media (max-width: 768px) {
    .top-bar {
        text-align: center;
        padding: 10px 0;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 8px;
    }

    .top-bar-left {
        justify-content: center;
        gap: 15px;
    }

    .top-bar-left a {
        font-size: 15px;
    }
}

/* ==========================================================================
   Main Header Styles
   ========================================================================== */
.site-header {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    min-height: var(--header-height);
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    justify-content: start;
}

.site-logo a {
    display: flex;
    align-items: center;
}

.site-logo img {
    max-height: 75px;
    max-width: 258px;
    width: auto;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    color: var(--text-dark);
    font-size: 22px;
    font-weight: 500;
    padding: 10px 0;
    display: block;
    position: relative;
    font-family: var(--font-primary);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li.current-menu-item a::after {
    width: 100%;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
    color: var(--primary-color);
}

/* Sub-menu */
.nav-menu li ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 220px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.nav-menu li:hover ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu li ul.sub-menu li a {
    padding: 10px 20px;
    font-size: 14px;
}

.nav-menu li ul.sub-menu li a::after {
    display: none;
}

.nav-menu li ul.sub-menu li a:hover {
    background: var(--bg-light);
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* CTA Button */
.btn,
.header-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary,
.header-cta-btn {
    background: var(--primary-color);
    color: var(--text-white);
}

.btn-primary:hover,
.header-cta-btn:hover {
    background: var(--primary-dark);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(94, 61, 122, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

.btn-white {
    background: var(--bg-white);
    color: var(--primary-color);
}

.btn-white:hover {
    background: var(--bg-light);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ==========================================================================
   Footer Styles
   ========================================================================== */
.site-footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    padding: 25px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

   .footer-logo-img {
    max-width: 310px;
    height: auto;
}

}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.footer-nav a {
    color: var(--text-white);
    font-size: 20px;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-contact a,
.footer-contact span {
    color: var(--text-white);
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-contact a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-copyright {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Main Content Area
   ========================================================================== */
.site-main {
    min-height: calc(100vh - var(--header-height) - var(--topbar-height) - 200px);
}

.content-area {
    padding: 60px 0;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 992px) {
    .nav-menu {
        gap: 20px;
    }

    .header-right {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    /* Mobile Top Bar */
    .top-bar {
        padding: 15px 0;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .top-bar-left {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .top-bar-left a,
    .top-bar-left span {
        font-size: 14px;
    }

    .top-bar-right {
        justify-content: center;
    }

    .top-bar-social {
        gap: 10px;
    }

    .top-bar-social a {
        width: 40px;
        height: 40px;
        font-size: 16px;
        background: rgba(255, 255, 255, 0.2);
    }

    /* Mobile Header */
    .header-inner {
        padding: 12px 0;
        min-height: 60px;
    }

    .site-logo img {
        max-height: 45px;
    }

    .mobile-menu-toggle {
        display: block;
        order: 2;
    }

    .site-logo {
        order: 1;
        flex: 1;
    }

    .header-right {
        order: 3;
        display: none;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-white);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        z-index: 1000;
        flex-direction: column;
    }

    .main-navigation.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li a {
        padding: 15px 0;
        font-size: 16px;
    }

    .nav-menu li ul.sub-menu {
        position: static;
        box-shadow: none;
        padding: 0 0 0 20px;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .header-cta-btn {
        display: none;
    }

    /* Mobile Navigation CTA inside menu */
    .main-navigation .mobile-cta {
        display: block;
        margin-top: 20px;
        padding: 12px 25px;
        background: var(--primary-color);
        color: var(--text-white);
        text-align: center;
        border-radius: 5px;
        font-weight: 600;
    }

    /* Footer Mobile */
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        flex-direction: column;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .top-bar-left {
        flex-direction: column;
        gap: 8px;
    }

    .site-logo img {
        max-height: 45px;
    }

    .btn,
    .header-cta-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* ==========================================================================
   Elementor Compatibility
   ========================================================================== */
.elementor-page .site-main {
    padding: 0;
}

.elementor-page .content-area {
    padding: 0;
}

/* ==========================================================================
   WordPress Core Styles
   ========================================================================== */
.alignleft {
    float: left;
    margin-right: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
    margin-top: 10px;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

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

.text-primary { color: var(--primary-color); }
.text-white { color: var(--text-white); }

.bg-primary { background-color: var(--primary-color); }
.bg-light { background-color: var(--bg-light); }
.bg-white { background-color: var(--bg-white); }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

.hidden { display: none; }
.visible { display: block; }

/* Responsive Visibility Classes */
.desktop-only {
    display: flex;
}

.mobile-only {
    display: none;
}

/* Mobile Icon Buttons */
.mobile-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.mobile-icon-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: flex !important;
    }

    .hide-on-mobile {
        display: none !important;
    }
}

/* Mobile Top Bar Disabled State */
body.mobile-topbar-disabled .top-bar {
    display: block;
}

@media (max-width: 768px) {
    body.mobile-topbar-disabled .top-bar {
        display: none;
    }
}
.hero-section {
  padding: 80px 0;
  background-image: url('assets/images/empty-with-purple-wall-room.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

