/* === RUBY CAKES BOUTIQUE BASE STYLES === */

/* Colour variables */
:root {
  --rcb-bg-light: #ffe4ec;   /* light crimson */
  --rcb-bg-soft:  #ffaebc;   /* medium pink */
  --rcb-magenta:  #b20b69;   /* vivid magenta */
  --rcb-crimson:  #d54772;   /* text crimson */
  --rcb-text-dark: #333333;
  --rcb-max-width: 1100px;
}

/* Global reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--rcb-text-dark);
  background-color: #ffffff;
}

/* Reusable layout helpers */
.rcb-container {
  max-width: var(--rcb-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.rcb-section {
  padding: 4rem 0;
}

.rcb-section-soft {
  background: var(--rcb-bg-light);
}

.rcb-section-intro {
  max-width: 650px;
  margin: 0.75rem 0 2.5rem;
  line-height: 1.6;
}

/* HEADER / NAVBAR */
.rcb-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #ffffffee;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #f3c0d1;
}

.rcb-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
}

.rcb-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.rcb-logo-script {
  font-family: "Dancing Script", cursive;
  font-size: 1.7rem;
  color: var(--rcb-magenta);
}

.rcb-logo-sub {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rcb-crimson);
}

.rcb-nav a {
  margin-left: 1.25rem;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--rcb-text-dark);
  font-weight: 500;
}

.rcb-nav a:hover {
  color: var(--rcb-magenta);
}

/* HERO */
.rcb-hero {
  background: linear-gradient(135deg, var(--rcb-bg-light), #ffffff);
}

.rcb-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  padding: 3.5rem 0 3rem;
}

.rcb-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: var(--rcb-crimson);
  margin-bottom: 0.5rem;
}

.rcb-hero h1 {
  font-family: "Dancing Script", cursive;
  font-size: 2.8rem;
  color: var(--rcb-magenta);
  margin: 0 0 0.5rem;
}

.rcb-hero-sub {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 450px;
  margin-bottom: 1.5rem;
}

.rcb-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* HERO IMAGE CIRCLE */
.rcb-hero-image {
  display: flex;
  justify-content: center;
}

.rcb-hero-circle {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--rcb-magenta);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  font-family: "Dancing Script", cursive;
  font-size: 2rem;
}

/* BUTTONS */
.rcb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.rcb-btn-primary {
  background: var(--rcb-magenta);
  color: #ffffff;
}

.rcb-btn-primary:hover {
  background: #900650;
}

.rcb-btn-outline {
  background: #ffffff;
  color: var(--rcb-magenta);
  border-color: var(--rcb-magenta);
}

.rcb-btn-outline:hover {
  background: var(--rcb-bg-soft);
}

.rcb-btn-small {
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
}

/* STRIP */
.rcb-strip {
  background: var(--rcb-bg-soft);
  padding: 0.7rem 0;
}

.rcb-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
  justify-content: center;
  font-size: 0.85rem;
  text-align: center;
}

/* SCRIPT HEADING */
.rcb-script-heading {
  font-family: "Dancing Script", cursive;
  color: var(--rcb-crimson);
  font-size: 2.1rem;
  margin: 0 0 0.5rem;
}

/* GRID + CARDS */
.rcb-grid {
  display: grid;
  gap: 1.5rem;
}

.rcb-grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.rcb-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.rcb-grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.rcb-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.rcb-card-outline {
  border: 1px solid #f1c2d2;
  box-shadow: none;
}

.rcb-card h3 {
  margin-top: 0;
  margin-bottom: 0.35rem;
  color: var(--rcb-magenta);
}

.rcb-card p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.rcb-card-note {
  font-size: 0.85rem;
  color: #6c4c59;
}

.rcb-card-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--rcb-magenta);
  text-decoration: none;
}

.rcb-card-link:hover {
  text-decoration: underline;
}

/* GALLERY PLACEHOLDER */
.rcb-gallery-placeholder .rcb-gallery-item {
  background: var(--rcb-bg-soft);
  border-radius: 14px;
  padding: 3rem 1rem;
  text-align: center;
  font-weight: 600;
  color: var(--rcb-magenta);
}

/* ORDER LAYOUT PLACEHOLDER */
.rcb-order-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.rcb-order-column {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}

/* CONTACT FORM */
.rcb-contact-form {
  max-width: 650px;
}

.rcb-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.rcb-field {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
}

.rcb-field label {
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.rcb-field input,
.rcb-field textarea {
  border-radius: 999px;
  border: 1px solid #f0c2d4;
  padding: 0.55rem 0.9rem;
  font: inherit;
  resize: vertical;
}

.rcb-field textarea {
  border-radius: 18px;
}

/* FOOTER */
.rcb-footer {
  background: #1f1720;
  color: #f8e8f0;
  padding: 1.2rem 0;
  font-size: 0.85rem;
}

.rcb-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .rcb-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .rcb-nav a {
    margin-left: 0;
    margin-right: 0.9rem;
  }

  .rcb-hero-inner {
    grid-template-columns: 1fr;
  }

  .rcb-hero-circle {
    width: 220px;
    height: 220px;
  }

  .rcb-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
