* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Advent Pro', Arial, sans-serif;
  background: #c7b299;
  color: #1a1a1a;
}

.top-nav {
  background: #f26c51;
  display: flex;
  justify-content: center;
  border-top: 8px solid #111;
}

.top-nav a {
  color: #ffffff;
  text-decoration: none;
  padding: 26px 30px;
  font-family: 'Comfortaa', Arial, sans-serif;
  font-size: 14px;
  border-left: 1px solid #ffffff;
}

.top-nav a:last-child {
  border-right: 1px solid #ffffff;
}

.top-nav a:hover,
.top-nav a.active {
  background: #ebecee;
  color: #000000;
}

.page {
  max-width: 1050px;
  margin: 0 auto;
  padding: 35px 25px 60px;
}

.slogan {
  font-size: 58px;
  letter-spacing: 3px;
  margin: 0 0 35px;
  text-shadow: 3px 3px #ffffff;
}

.hero-image {
  width: 100%;
  max-width: 880px;
  display: block;
  margin: 0 auto 30px;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}

.info-row {
  max-width: 900px;
  margin: 25px auto 50px;
  display: flex;
  gap: 30px;
  justify-content: center;
}

.info-box {
  flex: 1;
  text-align: center;
}

.info-box h2 {
  font-size: 30px;
  letter-spacing: 5px;
  margin-bottom: 8px;
}

.info-box p {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.white-text {
  color: #ffffff;
}

.welcome {
  background: rgba(255,255,255,0.85);
  max-width: 900px;
  margin: 45px auto;
  padding: 35px;
  text-align: center;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.welcome h2,
.services-preview h2,
.pet-gallery h2,
.cta h2 {
  font-size: 40px;
  letter-spacing: 2px;
  margin-top: 0;
}

.welcome p {
  font-size: 22px;
  line-height: 1.5;
}

.services-preview {
  max-width: 1000px;
  margin: 40px auto;
  text-align: center;
}

.service-cards,
.pet-cards {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.card,
.pet-card {
  background: #ffffff;
  width: 300px;
  padding: 25px;
  text-align: center;
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

.card h3,
.pet-card h3 {
  font-size: 30px;
  margin: 10px 0;
}

.card p,
.pet-card p {
  font-size: 18px;
  line-height: 1.4;
}

.pet-gallery {
  max-width: 1000px;
  margin: 60px auto;
  text-align: center;
}

.pet-card {
  padding: 0 0 25px;
  overflow: hidden;
}

.pet-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.pet-card:hover,
.card:hover {
  transform: translateY(-6px);
  transition: 0.3s ease;
}

.cta {
  max-width: 850px;
  margin: 50px auto;
  text-align: center;
  background: #f26c51;
  color: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.cta h2 {
  color: #ffffff;
}

.cta p {
  font-size: 20px;
}

.cta a {
  display: inline-block;
  margin-top: 15px;
  background: #ffffff;
  color: #f26c51;
  padding: 13px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-family: Arial, sans-serif;
}

.cta a:hover {
  background: #1a1a1a;
  color: #ffffff;
}

.footer {
  background: #ffffff;
  text-align: center;
  padding: 25px;
  font-size: 18px;
}

@media (max-width: 750px) {
  .top-nav {
    flex-wrap: wrap;
  }

  .top-nav a {
    padding: 18px 20px;
  }

  .slogan {
    font-size: 42px;
    text-align: center;
  }

  .info-row {
    flex-direction: column;
  }

  .welcome h2,
  .services-preview h2,
  .pet-gallery h2,
  .cta h2 {
    font-size: 32px;
  }
}