html{
    scroll-behavior: smooth;
}

/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styles */
body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

/* Container for layout consistency */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
 /* background-color: #4CAF50; */
 background-color: #989898;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

header .logo {
  color: #fff;
  font-size: 1.8em;
  font-weight: 700;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

nav a:hover {
  color: #fff3b0;
}

/* Hero Section 
.hero {
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.3)), url('images/character_and_logos.png') no-repeat center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 0 20px;
}

.hero h2 {
  font-size: 3em;
  margin-bottom: 20px;
} */

.btn-primary {
  background-color: #f4a7c7;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #f7348e;
}

/* Sections */
section {
  padding: 60px 0;
}

section h3 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2em;
  color: #333;
}

/* Services Cards */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background-color: #fff;
  padding: 20px;
  flex: 1 1 250px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.5s;
}
.card:hover {
  transform: translateY(-10px);
}
.card:hover .overlay {
 opacity: 1;
}

/* Style the overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #989898; /* rgba(0, 0, 0, 1); /* black, fully opaque */
  color: white;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0; /* start transparent */
  transition: opacity 0.3s ease;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  }

/*
.paw-print {
    position: absolute;
    width: 25px;
    height: 25px;
    background-image: url('images/paw.png');
    background-size: cover;
    opacity: 0;
    pointer-events: none; /* Prevents interfering with mouse events
    animation: bounce 2s infinite;
}
*/
