/*
Theme Name: Shine Healthcare
Theme URI: https://shinehealthcare.com
Author: Shine Healthcare Team
Author URI: https://shinehealthcare.com
Description: A modern medical travel and healthcare WordPress theme inspired by Vaidam.com. Features include responsive design, custom page sections, and medical tourism functionality.
Version: 1.0.0
Requires at least: 5.9
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: shine-healthcare
Tags: healthcare, medical, medical-tourism, responsive, custom-colors, block-styles
*/

/* Import Inter Font */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

/* ========================================================================
   CSS Variables - Color Scheme
   ======================================================================== */
:root {
  --primary-color: #96bf50;
  --secondary-color: #89c02d;
  --primary-dark: #4d8a1c;
  --secondary-dark: #14a8d4;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --text-dark: #333333;
  --text-gray: #666666;
  --border-color: #e0e0e0;
  --success-color: #60ab23;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
  --transition: all 0.3s ease;
  --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* ========================================================================
     Reset & Base Styles
     ======================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

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

a {
  color: #89c02d;
  text-decoration: none;
  transition: var(--transition);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

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

p {
  margin-bottom: 1rem;
}

.section-p{
  padding: 50px 0;  
}

/* ========================================================================
     Layout & Container
     ======================================================================== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}


.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.section-title p {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto;
}

