/*
Theme Name: MediFlow
Theme URI: https://mediflow.titantech.biz.id
Author: TitanTech
Author URI: https://titantech.biz.id
Description: Modern WordPress theme specifically designed for hospitals, clinics, medical centers, and healthcare facilities. Fully compatible with Elementor, WooCommerce, and the MediCore queue management plugin.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
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: mediflow
Tags: medical, hospital, healthcare, clinic, elementor, woocommerce, appointment, doctor

MediFlow WordPress Theme, Copyright 2024
MediFlow is distributed under the terms of the GNU GPL.
*/

/* ==========================================================================
   Base Styles
   ========================================================================== */

:root {
    /* Primary Colors - Soft Medical Colors */
    --mediflow-primary: #64B5F6;        /* Soft light blue */
    --mediflow-primary-dark: #42A5F5;   /* Slightly darker blue */
    --mediflow-primary-light: #E3F2FD;  /* Very light blue */
    
    /* Secondary Colors */
    --mediflow-secondary: #81C784;      /* Soft light green */
    --mediflow-secondary-dark: #66BB6A; /* Slightly darker green */
    --mediflow-accent: #A5D6A7;         /* Very light green */
    --mediflow-warning: #FFB74D;        /* Soft orange */
    --mediflow-danger: #E57373;         /* Soft red */
    
    /* Neutral Colors - Soft whites and grays */
    --mediflow-text-primary: #424242;      /* Soft dark gray */
    --mediflow-text-secondary: #757575;    /* Medium gray */
    --mediflow-text-light: #9E9E9E;        /* Light gray */
    --mediflow-bg-white: #FAFAFA;          /* Soft white */
    --mediflow-bg-light: #F5F5F5;          /* Very light gray */
    --mediflow-bg-lighter: #FFFFFF;        /* Pure white for cards */
    --mediflow-border: #E0E0E0;            /* Light border */
    
    /* Typography */
    --mediflow-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --mediflow-font-heading: 'Poppins', sans-serif;
    
    /* Spacing */
    --mediflow-spacing-xs: 0.5rem;
    --mediflow-spacing-sm: 1rem;
    --mediflow-spacing-md: 1.5rem;
    --mediflow-spacing-lg: 2rem;
    --mediflow-spacing-xl: 3rem;
    
    /* Border Radius */
    --mediflow-radius-sm: 4px;
    --mediflow-radius-md: 8px;
    --mediflow-radius-lg: 12px;
    
    /* Shadows */
    --mediflow-shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --mediflow-shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --mediflow-shadow-lg: 0 10px 20px rgba(0,0,0,0.15);
}

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

body {
    font-family: var(--mediflow-font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--mediflow-text-primary);
    background-color: var(--mediflow-bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--mediflow-font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--mediflow-spacing-sm);
    color: var(--mediflow-text-primary);
}

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

p {
    margin-bottom: var(--mediflow-spacing-sm);
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border-radius: var(--mediflow-radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

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

.btn-primary:hover {
    background-color: var(--mediflow-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--mediflow-shadow-md);
}

.btn-secondary {
    background-color: var(--mediflow-secondary);
    color: white;
}

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

.btn-outline:hover {
    background-color: var(--mediflow-primary);
    color: white;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--mediflow-spacing-md);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-1 { margin-top: var(--mediflow-spacing-sm); }
.mt-2 { margin-top: var(--mediflow-spacing-md); }
.mt-3 { margin-top: var(--mediflow-spacing-lg); }
.mb-1 { margin-bottom: var(--mediflow-spacing-sm); }
.mb-2 { margin-bottom: var(--mediflow-spacing-md); }
.mb-3 { margin-bottom: var(--mediflow-spacing-lg); }

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .container {
        padding: 0 var(--mediflow-spacing-sm);
    }
}
