/*
 Theme Name: Rose & Comb
 Theme URI: https://roseandcomb.co.uk/
 Author: Mark Grovesmith
 Description: Custom theme for Rose & Comb Dog Grooming.
 Version: 1.1
*/

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Brand variables */
:root {
  --rc-burgundy: #713041;
  --rc-gold: #d5ad71;
  --rc-cream: #f5e9d8;
  --rc-light: #f7faf4;
  --rc-text-dark: #3a2426;
}

/* Basic reset */

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

body {
  margin: 0;
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--rc-text-dark);
  background-color: var(--rc-cream);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header / navigation */

.site-header {
  background: var(--rc-burgundy);
  color: var(--rc-light);
  padding: 1.2rem 5vw;
}

.site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-logo {
  width: 250px;   /* bigger logo */
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.site-title-group {
  display: flex;
  flex-direction: column;
}

/* Larger header branding text */
.site-title {
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: 1.45rem;   /* was 1.05rem */
}

.site-tagline {
  font-size: 1.1rem;     /* was 0.9rem */
  opacity: 0.95;
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-menu {
  list-style: none;
  display: flex;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.main-menu li {
  margin: 0;
}

/* Hero */

.hero {
  padding: 4rem 5vw 4.5rem;
  color: var(--rc-light);
  position: relative;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-heading {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  margin: 0 0 0.6rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 1.6rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: centre;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  background: var(--rc-gold);
  color: var(--rc-text-dark);
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.hero-cta:hover {
  filter: brightness(1.05);
}

.hero-note {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.hero-image-wrap {
  border-radius: 1.8rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* Sections */

.section {
  padding: 3.5rem 5vw;
}

.section-light {
  background: var(--rc-cream);
}

.section-cream {
  background: var(--rc-light);
}

.section-heading {
  font-family: "Poppins", system-ui, sans-serif;
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--rc-burgundy);
}

.section-subtitle {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 640px;
  margin-inline: auto;
}

/* Services grid */

.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.service-card {
  background: var(--rc-light);
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-content {
  padding: 1rem 1.1rem 1.2rem;
}

.service-title {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1rem;
  margin: 0 0 0.4rem;
  color: var(--rc-burgundy);
}

.service-desc {
  font-size: 0.9rem;
}

/* Testimonials */

.testimonial-block {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: 1rem;
}

.testimonial-label {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--rc-burgundy);
}

/* Footer */

.site-footer {
  background: var(--rc-burgundy);
  color: var(--rc-light);
  padding: 1.5rem 5vw;
  margin-top: auto;
  font-size: 0.9rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

/* Generic page layout */

.page-content {
  max-width: 900px;
  margin: 2.5rem auto;
  padding: 2rem 5vw 3rem;
  background: var(--rc-light);
  border-radius: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.page-content h1,
.page-content h2,
.page-content h3 {
  font-family: "Poppins", system-ui, sans-serif;
  color: var(--rc-burgundy);
}

/* Responsive tweaks */

@media (max-width: 900px) {
  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-menu {
    flex-wrap: wrap;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-image-wrap {
    order: -1;
  }
}
