:root {
    --color-primary: #2C5F7C;
    --color-secondary: #FAF7F2;
    --color-accent: #B8D4E3;
    --color-text: #333333;
    --color-background: #FDFBF7;
    --color-surface: #FFFFFF;
    --color-surface-alt: #E3ECF3;
    --color-text-muted: #555555;
    --color-text-light: #8B8680;
    /* Font variables */
    --font-hero: 'Dancing Script', cursive;
    --font-body: 'Merriweather', serif;
    --font-accent: 'Raleway', sans-serif;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
}
p, li {
    font-size: 1rem;
}
a {
    color: var(--color-primary);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--color-surface-alt);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 1000;
    height: 84px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    opacity: 1;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-logo {
    position: absolute;
    top: 0;
    left: 165px;
    z-index: 2;
}

.nav-logo img {
    height: 136px;
    width: 136px;
    margin-top: 16px;
    transition: height 0.3s ease, width 0.3s ease, margin-top 0.3s ease;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--color-text);
    font-family: var(--font-accent);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--color-primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('./cover-dog.jpg') no-repeat center left;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 80%;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-title {
    font-family: var(--font-hero);
    font-size: 4rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0.06em 0.06em 0em #4c4b4b;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-secondary);
    font-weight: 300;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-family: var(--font-hero);
    font-size: 3rem;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

/* About Section */
.about {
    background: var(--color-surface);
    position: relative;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--color-text-muted);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    background: var(--color-surface-alt);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--color-surface);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    flex: 0 0 365px;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card .price {
    font-size: 1.3rem;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card ul {
    text-align: left;
}

.service-card li {
    margin-bottom: 0.5rem;
    position: relative;
}
.service-card.paws li {
    list-style: none;
    padding-left: 1.5rem;
}
.service-card.paws li:before {
    content: "\1F43E"; /* 🐾 paw prints */
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--color-primary);
    font-weight: bold;
}

/* Service Area Section */
.service-area {
    background: var(--color-surface);
    text-align: center;
}

.area-content h3 {
    font-family: var(--font-accent);
    font-size: 1.6rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.area-content p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.area-content em {
    color: var(--color-text-light);
    font-size: 1rem;
}

/* Policies Section */
.policies {
    background: var(--color-surface-alt);
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.policy-card {
    background: var(--color-surface);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

.policy-card p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.policy-card cite {
    font-family: var(--font-accent);
    font-weight: 600;
    color: var(--color-primary);
    font-style: normal;
}

/* Contact Section */
.contact {
    background: var(--color-surface);
    text-align: center;
}

/* .contact-content h3 {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 600;
} */

.contact-content h3:first-child {
    margin-top: 0;
}

.contact-content p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: var(--color-text);
    color: var(--color-accent);
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    font-family: var(--font-accent);
    font-size: 0.9rem;
}

.area-map {
    max-width: 80%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

.slide-in {
    animation: slideIn 1s ease-out;
}

.slide-in-left {
    animation: slideInLeft 1s ease-out;
}

.slide-in-right {
    animation: slideInRight 1s ease-out;
}

.slide-in-up {
    animation: slideInUp 1s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .area-map {
        max-width: 100%;
    }
    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .policies-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .nav-logo h1 {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.6rem;
    }
}

/* --- Mobile Navigation --- */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  margin-left: auto;
  margin-right: 0;
  padding: 0;
  /* transition: background 0.2s; */
}
.nav-hamburger:focus, .nav-hamburger:hover {
  /* background: rgba(139, 69, 19, 0.08); */
  outline: none;
}
.hamburger-bar {
  width: 36px;
  height: 5px;
  background: #333;
  margin: 4px 0;
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(.4,2,.3,1);
}

/* Hide nav menu by default on mobile */
.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--color-surface-alt);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 1rem 0;
  /* display: none; */
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: opacity 0.7s cubic-bezier(.4,2,.3,1), transform 0.7s cubic-bezier(.4,2,.3,1);
}
.nav-menu.active {
  /* display: flex; */
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-menu li {
  width: 100%;
  padding: 0.8rem 2rem;
}
.nav-menu a {
  width: 100%;
  display: block;
  font-size: 1.2rem;
  padding: 0.5rem 0;
}

.nav-container {
  width: 80%;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.nav-logo {
  position: static;
  margin-right: 1rem;
}
.nav-logo img {
  width: 136px;
  height: 136px;
  object-fit: contain;
}

/* Hide hamburger on desktop, show on mobile */
@media (min-width: 981px) {
  .nav-hamburger {
    display: none;
  }
  .nav-menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    align-items: center;
    opacity: 1 !important;
    pointer-events: auto;
    background: none;
    box-shadow: none;
    transform: none;
    width: auto;
    padding: 0;
  }
  .nav-menu li {
    padding: 0;
    width: auto;
  }
  .nav-menu a {
    font-size: 1rem;
    padding: 0;
  }
  
  /* Desktop navbar scroll animation */
  .navbar {
    height: 84px;
    transition: height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  }
  
  .navbar .nav-logo img {
    height: 136px;
    width: 136px;
    margin-top: 84px;
    transition: height 0.3s ease, width 0.3s ease, margin-top 0.3s ease;
  }
  
  .navbar.navbar-scrolled {
    height: 48px;
    background: var(--color-surface-alt);
    opacity: 0.8;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  }
  
  .navbar.navbar-scrolled .nav-logo img {
    height: 80px;
    width: 80px;
    margin-top: 48px;
  }
}

@media (max-width: 980px) {
  .nav-menu {
    font-size: 1.1rem;
  }
  .nav-logo img {
    width: 70px;
    height: 70px;
  }
}

/* Button styles */
.button {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--color-accent);
    color: var(--color-text);
    text-decoration: none;
    border-radius: 3px;
    font-family: var(--font-accent);
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.button:hover {
    background-color: var(--color-primary);
    color: var(--color-surface);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}