/*
Theme Name: RIAHS Official Theme
Theme URI: https://raviiahs.com/
Author: RIAHS Developer
Author URI: https://raviiahs.com/
Description: Custom WordPress Theme for Ravi Institute of Allied Health Sciences, converted from the Next.js frontend.
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: riahs
*/

/* 
 * Tailwind CSS is loaded via CDN in header.php for this classic theme. 
 * We also define our custom CSS variables here for Tailwind to pick up.
 */

:root {
  --background: 0 0% 100%;
  --foreground: 222.2 84% 4.9%;
  --card: 0 0% 100%;
  --card-foreground: 222.2 84% 4.9%;
  --popover: 0 0% 100%;
  --popover-foreground: 222.2 84% 4.9%;
  --primary: 221.2 83.2% 53.3%;
  --primary-foreground: 210 40% 98%;
  --secondary: 210 40% 96.1%;
  --secondary-foreground: 222.2 47.4% 11.2%;
  --muted: 210 40% 96.1%;
  --muted-foreground: 215.4 16.3% 46.9%;
  --accent: 210 40% 96.1%;
  --accent-foreground: 222.2 47.4% 11.2%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;
  --border: 214.3 31.8% 91.4%;
  --input: 214.3 31.8% 91.4%;
  --ring: 221.2 83.2% 53.3%;
  --radius: 0.5rem;
  --ravi-red: 355 83% 50%; /* #E8192C */
  --ravi-blue: 218 100% 32%; /* #003DA5 */
  --ravi-gray: 210 40% 98%; /* #f8fafc */
}

.medical-pattern {
  background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.15) 1px, transparent 0);
  background-size: 24px 24px;
}

.hero-gradient {
  background: linear-gradient(135deg, hsl(var(--ravi-blue)) 0%, hsl(var(--ravi-blue) / 0.8) 100%);
}

.section-title-center {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}
.section-title-center::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: hsl(var(--ravi-red));
  border-radius: 2px;
}
