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

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: #555;
  font-weight: 500;
  font-size: 16px;
}

.nav-links a:hover {
  color: #000;
}

/* Hero Section */
.hero {
  background: url('unsplash.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-content {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px 40px;
  border-radius: 10px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero-button {
  background-color: #ff6b6b;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.hero-button:hover {
  background-color: #ff4b4b;
}

/* Info Section */
.info-section {
  padding: 60px 20px;
  text-align: center;
}

.info-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.info-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.info-button {
  background-color: #4CAF50;
  color: white;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.info-button:hover {
  background-color: #45a049;
}

/* Featured Pets Section */
.featured-pets {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.featured-pets h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.pet-gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.pet-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 200px;
  font-weight: normal;
}

.profile-card .info-button {
  margin-top: 20px;
  display: inline-block;
}

.pet-card h3 {
  margin-bottom: 10px;
}

.pet-card-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 10px;
  object-fit: cover;
  max-height: 200px;
}

.pet-name {
  font-weight: bold;
}

/* Success Stories Section */
.success-stories {
  padding: 60px 20px;
  text-align: center;
}

/* Guides Section */
.guides {
  padding: 60px 20px;
  text-align: center;
}

/* Footer */
.footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  font-size: 16px;
  margin-left: 20px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.dropdown-content a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 14px;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  color: #000;
}

/* Adoption Process */
.adoption-process-section {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.adoption-process-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #333;
}

.adoption-process-section ol {
  list-style: none;
  counter-reset: none;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
  text-align: left;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #333;
}

.adoption-process-section li {
  margin-bottom: 15px;
}

.adoption-process-section li strong {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 2px;
  color: #222;
}

.adoption-process-section li span {
  display: block;
  color: #555;
  padding-left: 0;
}

/* FAQ Page */
.faq-item {
  max-width: 700px;
  margin: 20px auto;
  text-align: left;
}

.faq-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #222;
}

.faq-item p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
}

/* Pet Guide Section */
.guide-item {
  max-width: 700px;
  margin: 20px auto;
  text-align: left;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.guide-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #222;
}

.guide-item p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.success-gallery {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 40px 0;
}

/* Get Involved Section */
.get-involved-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.involve-card {
  max-width: 400px;
  text-align: center;
}

.involve-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.involve-card h3 {
  color: #1b9c85;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.involve-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Contact Us Section */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.contact-info, .contact-form {
  flex: 1 1 45%;
  min-width: 300px;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.contact-info h3 {
  margin-top: 30px;
  font-size: 1.5rem;
}

.contact-info p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
}

.contact-info ul {
  margin-top: 20px;
  padding: 0;
  list-style: none;
}

.contact-info li {
  margin-bottom: 15px;
  font-size: 1rem;
}

.contact-info li::before {
  content: '📍';
  margin-right: 10px;
}

.contact-info li.phone::before { content: '📞'; }
.contact-info li.email::before { content: '✉️'; }

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-top: 15px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  margin-top: 5px;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  resize: vertical;
}

.contact-form button {
  margin-top: 20px;
  padding: 12px 0;
  font-size: 1rem;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #3c9c44;
}

/* Sticky Footer Layout */
html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}


