/*
Theme Name: Siliguri Rooms Theme
Theme URI: https://siliguriroomrentals.com
Author: Antigravity Team
Author URI: https://siliguriroomrentals.com
Description: Production-ready custom WordPress theme for the Siliguri Room Rental Platform. Built with Vanilla CSS, Material Design principles, fast loading, accessible, and responsive.
Version: 1.0.0
Text Domain: siliguri-rooms-theme
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* Core CSS Variable Design Tokens (Google Material Inspired) */
:root {
  --srr-font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --srr-primary: #1a56db;
  --srr-primary-hover: #1e429f;
  --srr-primary-light: #ebf5ff;
  --srr-secondary: #047857;
  --srr-secondary-hover: #065f46;
  --srr-secondary-light: #ecfdf5;
  --srr-accent: #d97706;
  --srr-accent-light: #fffbe6;
  --srr-danger: #dc2626;
  --srr-danger-light: #fef2f2;
  --srr-bg: #f8fafc;
  --srr-card-bg: #ffffff;
  --srr-border: #e2e8f0;
  --srr-text-main: #0f172a;
  --srr-text-muted: #64748b;
  --srr-radius-sm: 6px;
  --srr-radius-md: 12px;
  --srr-radius-lg: 18px;
  --srr-radius-full: 9999px;
  --srr-shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --srr-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -1px rgba(0,0,0,0.04);
  --srr-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --srr-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Resets */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--srr-font-sans);
  background-color: var(--srr-bg);
  color: var(--srr-text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--srr-primary);
  text-decoration: none;
  transition: var(--srr-transition);
}

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

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