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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header */
.header-area {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-header {
  background-color: #f4f4f4;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-header-left,
.top-header-right {
  display: flex;
  align-items: center;
}

.top-header-left .social-icons a {
  color: #555;
  margin-right: 10px;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.top-header-left .social-icons a:hover {
  color: #FFD700;
}

.bottom-header {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bottom-header-logo h1 {
  font-size: 2.5rem;
  color: #FFD700;
  font-weight: bold;
}

.main-menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.main-menu ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.3s;
  scroll-behavior: smooth;
}

.main-menu ul li a:hover {
  color: #FFD700;
}

.menu-toggle {
  display: none; 
  font-size: 2rem;
  cursor: pointer;
  color: #333;
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 1100;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero-bg.jpg') no-repeat center center/cover;
  color: #fff;
  padding: 100px 0;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  max-width: 600px;
  text-align: left;
}

.hero-text h2 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-text span {
  color: #FFD700;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-text .btn-primary {
  padding: 12px 25px;
  font-size: 1rem;
  background-color: #FFD700;
  color: #000;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.hero-text .btn-primary:hover {
  background-color: #e6c200;
}

.hero-image {
  flex: 1;
  max-width: 500px;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    text-align: center;
    margin-bottom: 30px;
  }

  .hero-text h2 {
    font-size: 2.5rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-text .btn-primary {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .hero-image img {
    max-width: 300px;
  }

  .menu-toggle {
    display: block;
  }

  .main-menu {
    display: none; 
    flex-direction: column;
    gap: 10px;
    background-color: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .main-menu.active {
    display: flex; 
  }

  .main-menu ul {
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
  }

  .main-menu ul li a {
    padding: 10px 15px;
    display: block;
    text-align: left;
  }

  /* Header */
  .top-header {
    flex-direction: column;
    text-align: center;
  }

  .bottom-header {
    flex-direction: column;
    text-align: center;
  }

  .main-menu ul {
    flex-direction: column;
    gap: 10px;
  }
}

/* Home Section */
.home-section {
  background-color: #fefefe;
  padding: 100px 0;
}

.home-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.home-text {
  flex: 1;
  max-width: 600px;
  text-align: left;
}

.home-text h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.home-text p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.8;
}

.home-text .btn-primary {
  padding: 12px 25px;
  font-size: 1rem;
  background-color: #FFD700;
  color: #000;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.home-text .btn-primary:hover {
  background-color: #e6c200;
}

.home-image {
  flex: 1;
  max-width: 500px;
  text-align: center;
}

.home-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .home-content {
    flex-direction: column;
    text-align: center;
  }

  .home-text {
    text-align: center;
    margin-bottom: 30px;
  }

  .home-text h1 {
    font-size: 2.5rem;
  }

  .home-text p {
    font-size: 1rem;
  }

  .home-text .btn-primary {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .home-image img {
    max-width: 300px;
  }
}

/* Pet Selection Section */
.pet-selection {
  background-color: #fff;
  padding: 60px 0;
  text-align: center;
}

.pet-selection .heading h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.pet-selection .card-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.card i {
  font-size: 2.5rem;
  color: #FFD700;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.card p {
  font-size: 1rem;
  color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
  .pet-selection .heading h2 {
    font-size: 2.2rem;
  }

  .card {
    padding: 20px;
  }

  .card h3 {
    font-size: 1.5rem;
  }

  .card p {
    font-size: 0.9rem;
  }
}

/* Adopt a Puppy Section */
.adopt-a-puppy-section {
  background-color: #fefefe;
  padding: 60px 0;
  text-align: center;
}

.puppy-heading h2 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.puppy-heading p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
}

.puppy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.puppy-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.puppy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.puppy-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.puppy-info {
  padding: 20px;
  text-align: left;
}

.puppy-info h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #333;
}

.puppy-info p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
}

.btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
  background-color: #007BFF;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn-secondary:hover {
  background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
  .puppy-heading h2 {
    font-size: 2.2rem;
  }

  .puppy-heading p {
    font-size: 1rem;
  }

  .puppy-card img {
    height: 150px;
  }

  .puppy-info h3 {
    font-size: 1.5rem;
  }

  .puppy-info p {
    font-size: 0.9rem;
  }

  .puppy-grid {
    grid-template-columns: 1fr;
  }
}

/* Adoption Form Section */
.adoption-form-section {
  background-color: #fefefe;
  padding: 60px 0;
  text-align: center;
}

.form-heading h2 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.form-heading p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
}

.adoption-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #007BFF;
}

textarea {
  resize: none;
}

.btn-primary {
  display: inline-block;
  padding: 12px 25px;
  font-size: 1rem;
  background-color: #FFD700;
  color: #000;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .form-heading h2 {
    font-size: 2.2rem;
  }

  .form-heading p {
    font-size: 1rem;
  }

  .adoption-form {
    padding: 20px;
  }

  .form-group label {
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 0.9rem;
  }

  .btn-primary {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .adoption-form {
    padding: 20px;
  }
}

/* About Snuggle Section */
.about-snuggle-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  max-width: 600px;
  text-align: left;
}

.about-text h2 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.about-text p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-text .btn-primary {
  padding: 12px 25px;
  font-size: 1rem;
  background-color: #FFD700;
  color: #000;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.about-text .btn-primary:hover {
  background-color: #e6c200;
}

.about-image {
  flex: 1;
  max-width: 500px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    text-align: center;
    margin-bottom: 30px;
  }

  .about-text h2 {
    font-size: 2.2rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .about-text .btn-primary {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .about-image img {
    max-width: 300px;
  }
}

/* Blog Section */
.blog-section {
  background-color: #fefefe;
  padding: 60px 0;
  text-align: center;
}

.blog-heading h2 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.blog-heading p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
}

.blog-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.blog-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
  text-align: left;
}

.blog-content h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #333;
}

.blog-content p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
}

.btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
  background-color: #007BFF;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn-secondary:hover {
  background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-heading h2 {
    font-size: 2.2rem;
  }

  .blog-heading p {
    font-size: 1rem;
  }

  .blog-card img {
    height: 150px;
  }

  .blog-content h3 {
    font-size: 1.5rem;
  }

  .blog-content p {
    font-size: 0.9rem;
  }

  .blog-cards {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.footer {
  background-color: #232f3e;
  color: #fff;
  padding: 40px 20px;
}

.footer-columns {
  display: flex;
  justify-content: space-evenly; 
  flex-wrap: wrap;
  gap: 20px;
}

.footer-column {
  flex: 1;
  max-width: 250px; 
  text-align: center; 
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: bold;
  color: #FFD700;
}

.footer-column p,
.footer-column ul {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #FFD700;
}

.social-icons a {
  color: #fff;
  font-size: 1.2rem;
  margin-right: 10px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #FFD700;
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: #ccc;
  border-top: 1px solid #444;
  padding-top: 20px;
  margin-top: 20px;
}

/* Responsiveness */
@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    text-align: center;
    align-items: center; /* Center-align content */
  }

  .footer-column {
    margin-bottom: 20px;
    text-align: center;
  }
}