/*
Theme Name: Flexora
Theme URI: https://flexora.com
Author: VamTam
Author URI: https://vamtam.com
Description: A professional WordPress theme for chiropractors, massage therapists, and physical therapists. Built with Elementor support and modern healthcare design.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: flexora
Tags: healthcare, medical, chiropractic, elementor, responsive, custom-menu, custom-logo, featured-images, footer-widgets, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready

Flexora is a modern, responsive WordPress theme designed specifically for healthcare professionals.
It includes full Elementor support, custom widgets, and a beautiful design optimized for medical practices.
*/

/* ===========================
   Global Styles
   =========================== */

:root {
    --primary-color: #417572;
    --secondary-color: #2c5654;
    --text-color: #333333;
    --heading-color: #1a1a1a;
    --background-color: #ffffff;
    --accent-color: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Ovo', serif;
    color: var(--heading-color);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

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

a:hover {
    color: var(--secondary-color);
}

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

/* ===========================
   Layout
   =========================== */

.main-container {
    width: 100%;
    overflow: hidden;
}

.layout-full {
    width: 100%;
    max-width: 100%;
}

.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   Header
   =========================== */

.main-header {
    position: relative;
    width: 100%;
    background: #ffffff;
    z-index: 1000;
}

.elementor-location-header {
    width: 100%;
}

.vamtam-sticky-header {
    transition: all 0.3s ease;
    background: #ffffff;
}

.vamtam-sticky-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    z-index: 9999;
}

.elementor-widget-theme-site-logo {
    display: flex;
    align-items: center;
}

.elementor-widget-theme-site-logo a {
    display: block;
    line-height: 0;
}

.elementor-widget-theme-site-logo img {
    max-width: 100%;
    height: auto;
}

/* ===========================
   Navigation
   =========================== */

.elementor-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.elementor-nav-menu li {
    position: relative;
}

.elementor-nav-menu a {
    display: block;
    padding: 1rem 1.25rem;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    list-style: none;
    padding: 0.5rem 0;
}

.menu-item:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
}

/* ===========================
   Buttons
   =========================== */

.elementor-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.elementor-button:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(65, 117, 114, 0.3);
}

.elementor-button-icon {
    margin-right: 8px;
}

/* ===========================
   Footer
   =========================== */

.main-footer {
    background-color: #1a1a1a;
    padding: 60px 0 20px;
    margin-top: 80px;
    color: #ffffff;
}

.elementor-location-footer {
    width: 100%;
}

.elementor-location-footer .elementor-heading-title {
    color: #ffffff;
}

.elementor-location-footer a {
    color: #cccccc;
}

.elementor-location-footer a:hover {
    color: #ffffff;
}

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

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #cccccc;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.sm-vertical {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ===========================
   Scroll to Top Button
   =========================== */

.vamtam-scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.vamtam-scroll-to-top .elementor-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.vamtam-scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.vamtam-scroll-to-top:hover .elementor-button {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* ===========================
   Responsive Design
   =========================== */

@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }

    .elementor-nav-menu {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }

    .page-wrapper {
        padding: 0 15px;
    }

    .main-footer {
        padding: 40px 0 20px;
    }
}

/* ===========================
   Utilities
   =========================== */

.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
