/* === GLOBAL RESET === */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: #f8f8f8;
  color: #111;
  line-height: 1.8;
}

/* === NAVIGATION === */
nav {
  background: #111;
  text-align: center;
  padding: 15px 0;
}
nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  margin: 0 14px;
  transition: color 0.3s ease;
}
nav a:hover {
  color: #00bfff;
}

/* === HERO SECTION === */
.hero {
  min-height: 90vh;
  background: url('images/hero.jpg') center/cover no-repeat;
  position: relative;
}
.hero::after {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
}
.hero-overlay {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 100px 20px;
}
.hero-overlay h1 {
  font-size: clamp(32px, 6vw, 60px);
  color: #00bfff;
  margin-bottom: 20px;
}
.hero-overlay p {
  font-size: clamp(16px, 3vw, 22px);
  max-width: 800px;
  margin: 0 auto;
  color: #eee;
}

/* === SECTIONS === */
.section {
  padding: 60px 20px;
  text-align: center;
}
.section h2 {
  color: #00bfff;
  font-size: 32px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.section p, .info-box ul {
  max-width: 900px;
  margin: auto;
  font-size: 18px;
  text-align: left;
  color: #222;
}
.info-box {
  background: #fff;
  padding: 25px;
  margin: 20px auto;
  border-left: 6px solid #c8a165;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* === BUTTONS === */
.btn, .whatsapp-btn {
  display: inline-block;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 6px;
  font-size: 17px;
  color: white;
  margin-top: 20px;
  transition: 0.3s ease;
}
.btn { background: #00bfff; }
.btn:hover { background: #0094cc; }
.whatsapp-btn { background: #25D366; }
.whatsapp-btn:hover { background: #1ea354; }

/* === PET LIST === */
.pets-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 20px;
}
.pet-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.pet-card img {
  width: 100%;
  border-radius: 10px;
}

/* === FOOTER === */
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 15px;
}

/* === MOBILE === */
@media (max-width: 600px) {
  .btn, .whatsapp-btn {
    width: 100%;
    text-align: center;
  }
}