/*
Theme Name: Dr RK Clinic Child Theme
Theme URI: https://drrkclinic.com/
Description: Custom Child Theme for Dr RK Clinic optimized for performance and medical aesthetic.
Author: Google Deepmind Agent
Author URI: https://drrkclinic.com/
Template: astra
Version: 1.0.0
*/

:root {
    --color-primary: #007bff; /* Medical Blue */
    --color-secondary: #28a745; /* Healthcare Green */
    --color-accent: #17a2b8; /* Calming Teal */
    --color-text-dark: #333333;
    --color-text-light: #ffffff;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
}

/* Custom Button Styles */
.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: var(--color-accent);
}

/* Camp Section Styles */
.camp-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    background: #f9f9f9;
}

.camp-title {
    color: var(--color-secondary);
}
