/*
Theme Name: Rosemead Care
Theme URI: https://rosemeadcare.co.uk
Author: Rosemead Care Ltd
Description: A clean, professional WordPress theme for Rosemead Care Ltd, a temporary healthcare staffing agency supporting care homes, nursing homes, supported living services and outreach support across South East London.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rosemead-care
Tags: healthcare, staffing, business, responsive, custom-logo
*/

:root {
  --rm-orange: #ff7a1a;
  --rm-charcoal: #4a4a4a;
  --rm-dark: #111111;
  --rm-light: #f7f7f7;
  --rm-grey: #e6e6e6;
  --rm-white: #ffffff;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--rm-charcoal);
  background: var(--rm-white);
  line-height: 1.6;
}
a { color: var(--rm-orange); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(1120px, 92%); margin: 0 auto; }
.site-header {
  background: var(--rm-dark);
  color: var(--rm-white);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo img { max-height: 64px; width: auto; display: block; }
.nav-menu { list-style: none; display: flex; gap: 22px; margin: 0; padding: 0; flex-wrap: wrap; }
.nav-menu a { color: var(--rm-white); font-weight: 700; }
.nav-menu a:hover { color: var(--rm-orange); text-decoration: none; }
.hero {
  background: linear-gradient(135deg, var(--rm-dark) 0%, #252525 55%, var(--rm-orange) 55%, #ff8f3a 100%);
  color: var(--rm-white);
  padding: 86px 0;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 4.8rem); line-height: 1.05; margin: 0 0 20px; }
.hero h1 span { color: var(--rm-orange); }
.hero p { font-size: 1.18rem; max-width: 650px; margin-bottom: 28px; }
.hero-card {
  background: rgba(255,255,255,.95);
  color: var(--rm-charcoal);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(0,0,0,.22);
}
.hero-card h2 { margin-top: 0; color: var(--rm-dark); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  background: var(--rm-orange);
  color: var(--rm-white);
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid var(--rm-orange);
}
.btn.secondary { background: transparent; color: var(--rm-white); border-color: var(--rm-white); }
.btn:hover { text-decoration: none; filter: brightness(.95); }
.section { padding: 64px 0; }
.section.alt { background: var(--rm-light); }
.section h2 { font-size: 2.1rem; color: var(--rm-dark); margin: 0 0 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--rm-white);
  border: 1px solid var(--rm-grey);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
}
.card h3 { margin-top: 0; color: var(--rm-dark); }
.accent { color: var(--rm-orange); font-weight: 700; }
.cta { background: var(--rm-dark); color: var(--rm-white); text-align: center; }
.cta h2 { color: var(--rm-white); }
.site-footer { background: #050505; color: var(--rm-white); padding: 34px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.page-content { padding: 56px 0; }
input, textarea, select { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 8px; }
button, input[type="submit"] { background: var(--rm-orange); color: #fff; border: 0; padding: 12px 20px; border-radius: 999px; font-weight: 700; cursor: pointer; }
@media (max-width: 800px) {
  .header-inner, .footer-grid { grid-template-columns: 1fr; display: block; }
  .nav-menu { margin-top: 18px; }
  .hero-grid, .grid-3 { grid-template-columns: 1fr; }
  .hero { padding: 56px 0; }
}
