/* Rida Beauty Point - Modern Luxury Theme
   Beauty Salon / Spa Management System
   Mobile-first, responsive, elegant
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --rbp-rose: #d8a0a0;
  --rbp-rose-dark: #b76e79;
  --rbp-gold: #c9a86c;
  --rbp-cream: #faf7f4;
  --rbp-charcoal: #2d2d2d;
  --rbp-stone: #6b6b6b;
  --rbp-white: #ffffff;
  --rbp-black: #111111;
  --rbp-shadow: 0 18px 40px rgba(0,0,0,0.06);
  --rbp-radius: 18px;
  --rbp-radius-sm: 10px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Poppins', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--rbp-charcoal);
  background: var(--rbp-cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--rbp-charcoal);
  margin: 0 0 0.6em;
  line-height: 1.2;
}

a { color: var(--rbp-rose-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--rbp-rose); }

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

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.rbp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  background: linear-gradient(135deg, var(--rbp-rose) 0%, var(--rbp-rose-dark) 100%);
  color: var(--rbp-white);
  box-shadow: 0 8px 20px rgba(183,110,121,0.28);
}

.rbp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(183,110,121,0.35);
  color: var(--rbp-white);
}

.rbp-btn--outline {
  background: transparent;
  color: var(--rbp-rose-dark);
  border: 2px solid var(--rbp-rose-dark);
  box-shadow: none;
}

.rbp-btn--outline:hover { background: var(--rbp-rose-dark); color: var(--rbp-white); }

.rbp-btn--gold {
  background: linear-gradient(135deg, var(--rbp-gold) 0%, #a88955 100%);
  box-shadow: 0 8px 20px rgba(201,168,108,0.28);
}

.rbp-section { padding: 5rem 0; }
.rbp-section--white { background: var(--rbp-white); }
.rbp-section--cream { background: var(--rbp-cream); }

.rbp-section-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  text-align: center;
  margin-bottom: 0.4rem;
}

.rbp-section-subtitle {
  text-align: center;
  color: var(--rbp-stone);
  margin-bottom: 2.8rem;
  font-size: 1.05rem;
}

/* Navbar */
.rbp-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.rbp-navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.rbp-navbar__brand {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--rbp-charcoal);
}

.rbp-navbar__brand span { color: var(--rbp-rose-dark); }

.rbp-navbar__menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0; padding: 0;
  align-items: center;
}

.rbp-navbar__menu a {
  font-weight: 500;
  color: var(--rbp-charcoal);
  font-size: 0.95rem;
  position: relative;
}

.rbp-navbar__menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--rbp-rose-dark);
  transition: width 0.25s;
}

.rbp-navbar__menu a:hover::after { width: 100%; }

.rbp-navbar__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--rbp-rose-dark);
  cursor: pointer;
}

@media (max-width: 992px) {
  .rbp-navbar__toggle { display: block; }
  .rbp-navbar__menu {
    position: fixed;
    top: 64px; right: -100%;
    width: min(300px, 80%);
    height: calc(100vh - 64px);
    flex-direction: column;
    background: var(--rbp-white);
    box-shadow: var(--rbp-shadow);
    padding: 2rem;
    gap: 1.4rem;
    transition: right 0.35s ease;
  }
  .rbp-navbar__menu.is-open { right: 0; }
}

/* Hero */
.rbp-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(45,45,45,0.35), rgba(45,45,45,0.4)),
    url('../images/hero-salon.jpg') center/cover no-repeat;
  color: var(--rbp-white);
  text-align: center;
}

.rbp-hero__content { max-width: 760px; margin: 0 auto; padding: 0 1rem; }

.rbp-hero__eyebrow {
  display: inline-block;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--rbp-cream);
}

.rbp-hero__title {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  color: var(--rbp-white);
  margin-bottom: 1.2rem;
}

.rbp-hero__lead {
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: 2rem;
}

/* Cards */
.rbp-card {
  background: var(--rbp-white);
  border-radius: var(--rbp-radius);
  box-shadow: var(--rbp-shadow);
  padding: 2rem;
  transition: transform 0.25s, box-shadow 0.25s;
}

.rbp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(0,0,0,0.09);
}

.rbp-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Forms */
.rbp-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--rbp-charcoal);
}

.rbp-form input,
.rbp-form textarea,
.rbp-form select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #e3d8cf;
  border-radius: var(--rbp-radius-sm);
  background: var(--rbp-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.rbp-form input:focus,
.rbp-form textarea:focus,
.rbp-form select:focus {
  outline: none;
  border-color: var(--rbp-rose);
  box-shadow: 0 0 0 4px rgba(216,160,160,0.14);
}

.rbp-form .field-row { margin-bottom: 1.2rem; }

/* Footer */
.rbp-footer {
  background: var(--rbp-charcoal);
  color: #d3d3d3;
  padding: 4rem 0 1.5rem;
}

.rbp-footer a { color: #d3d3d3; }
.rbp-footer a:hover { color: var(--rbp-rose); }

.rbp-footer__grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 3rem;
}

.rbp-footer__title {
  color: var(--rbp-white);
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
}

.rbp-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.88rem;
}

.rbp-socials { display: flex; gap: 0.8rem; font-size: 1.1rem; }

/* Page banner */
.rbp-page-banner {
  background:
    linear-gradient(rgba(45,45,45,0.45), rgba(45,45,45,0.5)),
    var(--rbp-rose-dark);
  color: var(--rbp-white);
  padding: 5rem 0 4rem;
  text-align: center;
}

.rbp-page-banner h1 { color: var(--rbp-white); font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.4rem; }
.rbp-page-banner p { opacity: 0.9; }

/* Breadcrumb */
.rbp-breadcrumb {
  background: var(--rbp-white);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  font-size: 0.88rem;
  color: var(--rbp-stone);
}

.rbp-breadcrumb a { color: var(--rbp-stone); }
.rbp-breadcrumb a:hover { color: var(--rbp-rose-dark); }

/* Tables */
.rbp-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--rbp-white);
  border-radius: var(--rbp-radius);
  overflow: hidden;
  box-shadow: var(--rbp-shadow);
}

.rbp-table th, .rbp-table td { padding: 1rem; text-align: left; border-bottom: 1px solid #f0e9e3; }
.rbp-table th { background: #fdf8f6; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; }
.rbp-table tr:last-child td { border-bottom: none; }
.rbp-table tr:hover td { background: #fffbf9; }

/* Status badges */
.rbp-badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

.rbp-badge--success { background: #e6f8ed; color: #1f7a3f; }
.rbp-badge--warning { background: #fff6e5; color: #995f00; }
.rbp-badge--danger { background: #fdecec; color: #b32424; }
.rbp-badge--info { background: #e9f3ff; color: #1d5bb5; }

/* Alerts */
.rbp-alert {
  padding: 1rem 1.2rem;
  border-radius: var(--rbp-radius-sm);
  margin-bottom: 1rem;
  background: #fff6f6;
  border-left: 4px solid var(--rbp-rose-dark);
  color: var(--rbp-rose-dark);
}

/* Utilities */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
