/* ============================================
   GROOM PLAY LOVE - STYLES
   Mobile-first CSS
   ============================================ */

/* CSS Variables */
:root {
    --charcoal: #2d2d2d;
    --charcoal-light: #4a4a4a;
    --terracotta: #b5654a;
    --terracotta-dark: #9a5540;
    --terracotta-light: #c9785d;
    --cream: #faf8f5;
    --cream-dark: #f0ebe3;
    --warm-white: #fffdfb;
    --text-muted: #6b6b6b;
    
    --shadow-soft: 0 4px 20px rgba(45, 45, 45, 0.08);
    --shadow-hover: 0 8px 30px rgba(45, 45, 45, 0.12);
    --shadow-card: 0 2px 12px rgba(45, 45, 45, 0.06);
    
    --transition: all 0.3s ease;
    --radius: 8px;
    --radius-lg: 12px;
}

/* Reset & Base - Mobile First */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    color: var(--charcoal);
    background-color: var(--warm-white);
    line-height: 1.7;
    font-size: 16px;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.2;
    color: var(--charcoal);
}

h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--terracotta-dark);
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--terracotta);
    color: white;
    box-shadow: 0 4px 14px rgba(181, 101, 74, 0.3);
}

.btn-primary:hover {
    background-color: var(--terracotta-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(181, 101, 74, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
}

.btn-secondary:hover {
    background-color: var(--charcoal);
    color: white;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.125rem;
}

/* Header */
.header {
    background: var(--warm-white);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow-soft);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Mobile Navigation */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--charcoal);
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--warm-white);
    list-style: none;
    padding: 20px;
    box-shadow: var(--shadow-soft);
}

.nav-menu.active {
    display: block;
}

.nav-menu li {
    margin-bottom: 15px;
}

.nav-menu li:last-child {
    margin-bottom: 0;
}

.nav-menu a {
    color: var(--charcoal);
    font-weight: 600;
    font-size: 1.125rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--terracotta);
}

.nav-cta {
    display: inline-block;
    background-color: var(--terracotta);
    color: white !important;
    padding: 12px 24px;
    border-radius: var(--radius);
}

.nav-cta:hover {
    background-color: var(--terracotta-dark);
    color: white !important;
}

/* Hero Section */
.hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-content .tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.125rem;
    color: var(--terracotta);
    margin-bottom: 0.5rem;
}

.hero-content h1 {
    color: var(--charcoal);
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
}

/* Our Promise Section */
.our-promise {
    padding: 60px 0;
    background: var(--charcoal);
}

.promise-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.promise-card {
    background: var(--warm-white);
    padding: 30px;
    border-radius: var(--radius-lg);
}

.promise-card.highlight {
    background: var(--charcoal-light);
    color: white;
}

.promise-card h2 {
    color: var(--charcoal);
    margin-bottom: 1.25rem;
}

.promise-card.highlight h3 {
    color: white;
    margin-bottom: 1rem;
}

.promise-card.highlight p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.promise-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.promise-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.promise-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--terracotta);
}

.promise-card.highlight .promise-list li::before {
    color: var(--terracotta-light);
}

.our-promise.page-promise {
    padding: 40px 0;
}

/* Services Preview */
.services-preview {
    padding: 60px 0;
    background: var(--warm-white);
}

.section-intro {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 2.5rem;
}

.service-card {
    background: var(--cream);
    padding: 30px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.service-card h3 {
    color: var(--terracotta);
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.services-cta {
    text-align: center;
}

.natural-callout {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: #5a8a4a;
    text-align: center;
    margin: 2.5rem 0 1rem;
}

.pricing-note {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Gallery */
.gallery {
    padding: 60px 0;
    background: var(--cream);
}

.gallery h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: var(--charcoal);
    text-align: center;
}

.cta-content h2 {
    color: white;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.cta-hours {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.cta-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 400px;
    margin: 0 auto 2rem;
}

.cta-phone {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
    margin-bottom: 0;
}

.cta-phone a {
    color: white;
    font-weight: 600;
}

.cta-phone a:hover {
    color: var(--terracotta-light);
}

/* Footer */
.footer {
    background: var(--cream-dark);
    padding: 50px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--terracotta) !important;
    margin-bottom: 0.5rem !important;
}

.footer-book-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--terracotta);
}

.footer h4 {
    color: var(--charcoal);
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.footer-contact p,
.footer-hours p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: var(--terracotta);
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(45, 45, 45, 0.1);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Page Header */
.page-header {
    padding: 120px 0 50px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
    text-align: center;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Page */
.services-main {
    padding: 60px 0;
}

.services-main h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.service-detail {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--cream-dark);
}

.service-detail:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-detail-content h3 {
    color: var(--terracotta);
}

.service-detail-content p {
    color: var(--text-muted);
}

.service-includes {
    background: var(--cream);
    padding: 20px;
    border-radius: var(--radius);
    font-size: 0.9375rem;
}

.service-includes strong {
    color: var(--charcoal);
}

.service-detail-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

/* Memberships */
.memberships {
    padding: 60px 0;
    background: var(--cream);
}

.memberships h2 {
    text-align: center;
}

.membership-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 2rem;
}

.membership-card {
    background: var(--warm-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.membership-card h3 {
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.membership-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.size-tiers {
    border-top: 1px solid var(--cream-dark);
    padding-top: 1rem;
}

.tier {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--cream-dark);
}

.tier:last-child {
    border-bottom: none;
}

.tier-name {
    font-weight: 600;
    color: var(--charcoal);
}

.tier-size {
    color: var(--text-muted);
}

/* Add-ons */
.addons {
    padding: 60px 0;
    background: var(--cream);
}

.addons h2 {
    text-align: center;
}

.addons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.addon-card {
    background: var(--warm-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.addon-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.addon-card h3 {
    font-size: 1.25rem;
    color: var(--charcoal);
}

.addon-card p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.9375rem;
}

.addon-card.bakery-card {
    background: var(--charcoal);
    color: white;
}

.addon-card.bakery-card h3 {
    color: white;
}

.addon-card.bakery-card p {
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Page */
.contact-main {
    padding: 60px 0;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-block {
    margin-bottom: 35px;
}

.contact-block:last-child {
    margin-bottom: 0;
}

.contact-block h3 {
    color: var(--charcoal);
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.contact-phone {
    margin-bottom: 10px;
}

.contact-phone a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--terracotta);
}

.contact-phone a:hover {
    color: var(--terracotta-dark);
}

.contact-address {
    font-size: 1.125rem;
    line-height: 1.6;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 8px 0;
    border-bottom: 1px solid var(--cream-dark);
}

.hours-table tr:last-child td {
    border-bottom: none;
}

.hours-table td:first-child {
    font-weight: 600;
    color: var(--charcoal);
}

.hours-table td:last-child {
    text-align: right;
    color: var(--text-muted);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.contact-map iframe {
    display: block;
}

.contact-image-section {
    padding: 0 0 60px;
}

.contact-image-grid img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

/* ============================================
   TABLET STYLES - 768px and up
   ============================================ */
@media (min-width: 768px) {
    h1 {
        font-size: 2.75rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero .container {
        flex-direction: row;
        align-items: center;
    }
    
    .hero-content {
        flex: 1;
        padding-right: 40px;
    }
    
    .hero-image {
        flex: 1;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .services-preview {
        padding: 80px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery {
        padding: 80px 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .gallery-item img {
        height: 220px;
    }
    
    .cta-section {
        padding: 80px 0;
    }
    
    .our-promise {
        padding: 80px 0;
    }
    
    .promise-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .services-main {
        padding: 80px 0;
    }
    
    .service-detail {
        flex-direction: row;
        align-items: center;
    }
    
    .service-detail.reverse {
        flex-direction: row-reverse;
    }
    
    .service-detail-content {
        flex: 1.2;
    }
    
    .service-detail-image {
        flex: 1;
    }
    
    .addons {
        padding: 80px 0;
    }
    
    .addons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .memberships {
        padding: 80px 0;
    }
    
    .membership-grid {
        grid-template-columns: 2fr 1fr;
        align-items: start;
    }
    
    .contact-main {
        padding: 80px 0;
    }
    
    .contact-grid {
        flex-direction: row;
    }
    
    .contact-info {
        flex: 1;
    }
    
    .contact-map {
        flex: 1.2;
    }
}

/* ============================================
   DESKTOP STYLES - 1024px and up
   ============================================ */
@media (min-width: 1024px) {
    h1 {
        font-size: 3.25rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .logo img {
        height: 60px;
    }
    
    .nav-toggle {
        display: none;
    }
    
    .nav-menu {
        display: flex;
        position: static;
        background: none;
        box-shadow: none;
        padding: 0;
        align-items: center;
        gap: 35px;
    }
    
    .nav-menu li {
        margin-bottom: 0;
    }
    
    .nav-menu a {
        font-size: 1rem;
    }
    
    .hero {
        padding: 160px 0 100px;
    }
    
    .hero-content {
        padding-right: 60px;
    }
    
    .hero-content p {
        font-size: 1.25rem;
    }
    
    .services-preview {
        padding: 100px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .gallery {
        padding: 100px 0;
    }
    
    .gallery-item img {
        height: 280px;
    }
    
    .cta-section {
        padding: 100px 0;
    }
    
    .our-promise {
        padding: 100px 0;
    }
    
    .natural-callout {
        font-size: 1.75rem;
    }
    
    .cta-quote {
        font-size: 1.375rem;
    }
    
    .footer {
        padding: 60px 0 40px;
    }
    
    .page-header {
        padding: 160px 0 60px;
    }
    
    .services-main {
        padding: 100px 0;
    }
    
    .service-detail {
        gap: 60px;
    }
    
    .addons {
        padding: 100px 0;
    }
    
    .addons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .addons-grid .addon-card:nth-child(4),
    .addons-grid .addon-card:nth-child(5) {
        grid-column: span 1;
    }
    
    .memberships {
        padding: 100px 0;
    }
    
    .contact-main {
        padding: 100px 0;
    }
    
    .contact-grid {
        gap: 60px;
    }
}

/* ============================================
   RESOURCES PAGE STYLES
   ============================================ */
.resources-intro {
    padding: 40px 0 20px;
    text-align: center;
}

.resources-intro h2 {
    color: var(--charcoal);
}

.tips-section {
    padding: 20px 0 60px;
}

.tips-section .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.tip-card {
    background: var(--cream);
    padding: 30px;
    border-radius: var(--radius-lg);
}

.tip-card h3 {
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.tip-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.tip-card p:last-of-type {
    margin-bottom: 0;
}

.tip-card.highlight {
    background: var(--charcoal);
}

.tip-card.highlight h3 {
    color: white;
}

.tip-card.highlight p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.tip-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--terracotta);
}

.guide-section {
    padding: 60px 0;
    background: var(--warm-white);
}

.guide-section.alt-bg {
    background: var(--cream);
}

.guide-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.guide-content {
    max-width: 800px;
    margin: 0 auto;
}

.guide-content h3 {
    color: var(--terracotta);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.guide-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.grooming-schedule {
    padding: 60px 0;
    background: var(--charcoal);
}

.grooming-schedule h2 {
    color: white;
    text-align: center;
    margin-bottom: 1.5rem;
}

.schedule-intro {
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.schedule-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.schedule-column {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 15px;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-item .breed {
    color: white;
    font-weight: 600;
}

.schedule-item .frequency {
    color: var(--terracotta-light);
}

.schedule-note {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 0;
    font-style: italic;
}

@media (min-width: 768px) {
    .tips-section .container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tip-card.highlight {
        grid-column: span 2;
    }
    
    .guide-section {
        padding: 80px 0;
    }
    
    .grooming-schedule {
        padding: 80px 0;
    }
    
    .schedule-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .schedule-column {
        margin-bottom: 0;
    }
}

@media (min-width: 1024px) {
    .tips-section .container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tip-card.highlight {
        grid-column: span 3;
    }
    
    .guide-section {
        padding: 100px 0;
    }
    
    .grooming-schedule {
        padding: 100px 0;
    }
}
