/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2&family=Roboto&display=swap');

:root {
  --primary-color: #ff9a9e;
  --secondary-color: #fad0c4;
  --highlight: #ffd54f;
  --background: #fff3e0;
  --text-dark: #333;
  --white: #fff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Baloo 2', cursive;
  background: #fefcfb;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.logo {
  max-width: 80px;
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 8px rgba(50,150,80,0.12);
}

header h1 {
  font-size: 2.2rem;
  font-family: 'Baloo 2', cursive;
  letter-spacing: 1px;
  margin: 0.2em 0 0.2em 0;
}

header p {
  font-size: 1.1rem;
  letter-spacing: 0.4px;
  margin: 0.2em 0 0;
}

/* Hero Section */
.hero {
  background: url('images/dogs.jpg') center/cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 2rem 1rem;
  font-size: 1.2rem;
  font-family: 'Baloo 2', cursive;
  letter-spacing: 0.5px;
}

.hero h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.1rem;
}

/* Services Section */
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  padding: 0 1rem;
  background-color: var(--background);
}

.card {
  flex: 1 1 260px;
  max-width: 320px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding: 1.5rem 1rem;
  margin: 0;
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-4px) scale(1.03);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.2rem;
  margin: 0.5em 0 0.3em 0;
  color: var(--primary-color);
  font-family: 'Baloo 2', cursive;
}

.card p {
  font-size: 0.98rem;
  color: #333;
}

/* Brand Slider */
.brand-slider {
  margin: 2rem 0 0 0;
  padding: 1rem 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  border-radius: 18px;
  width: 95%;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.brand-support-message {
  font-size: 1.3rem;
  color: #e57373; /* A warm, loving pink-red tone */
  margin-bottom: 1rem;
  font-family: 'Baloo 2', cursive;
  text-align: center;
  background: linear-gradient(90deg, #ffb6b9, #fae3d9 60%, #b5ead7 100%);
  padding: 0.6em 0.5em;
  border-radius: 1em;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 8px rgba(255, 182, 185, 0.20);
  letter-spacing: 0.5px;
}

/* Swiper styles */
.swiper {
  width: 100%;
  overflow: hidden;
}
.swiper-wrapper {
  display: flex;
  align-items: center;
}
.swiper-slide {
  flex: 0 0 auto;
  min-width: 0;
  max-width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 0;
}
.swiper-slide img {
  width: 90px;
  height: 36px;
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: grayscale(0.18);
  transition: filter 0.2s, transform 0.3s;
}
.swiper-slide img:hover {
  filter: none;
  transform: scale(1.08);
}

/* Footer */
footer {
  background: var(--highlight);
  color: #000;
  text-align: center;
  font-size: 1rem;
  padding: 1.2rem 0 2rem 0;
  margin-top: auto;
  font-weight: bold;
}

footer a {
  color: #000;
  text-decoration: underline;
  margin: 0 0.5rem;
}

footer a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 900px) {
  .brand-slider { max-width: 99%; }
  .services { gap: 1.2rem; }
  .card { max-width: 90vw; }
}
@media (max-width: 700px) {
  .services {
    flex-direction: column;
    gap: 1rem;
    padding: 0 0.4rem;
  }
  .card {
    max-width: 98vw;
    padding: 1.2rem 0.7rem;
  }
  .brand-slider { border-radius: 10px; }
  .swiper-slide img {
    width: 60px;
    height: 24px;
    max-width: 90vw;
    max-height: 28px;
  }
  .brand-support-message {
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
    padding: 0.45em 0.35em;
  }
}
@media (max-width: 520px) {
  header { padding: 1.1rem 0.2rem 0.6rem 0.2rem; }
  .logo { width: 58px; height: 58px; }
  header h1 { font-size: 1.25rem; }
  .hero { font-size: 0.99rem; padding: 1.15rem 0.3rem; }
  .hero h2 { font-size: 1.1rem; }
  .brand-slider { padding: 0.6rem 0; }
  footer { font-size: 0.96rem; padding: 0.8rem 0 1.2rem 0; }
  .card img { height: 120px; }
  .swiper-slide img {
    width: 40px;
    height: 16px;
    max-width: 70vw;
    max-height: 18px;
  }
  .brand-support-message {
    font-size: 0.98rem;
    margin-bottom: 0.5rem;
    padding: 0.35em 0.2em;
  }
}
