/* assets/css/style.css */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.navbar {
  background-color: #222;
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.logo a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.25rem;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  padding: 0.5rem;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #333;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 999;
  flex-direction: column;
}

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

.dropdown-menu li {
  white-space: nowrap;
}

.dropdown-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  color: #fff;
}

.cta > a {
  background-color: #00c853;
  border-radius: 4px;
  padding: 0.5rem 0.75rem;
  color: #000;
}

.cta > a:hover {
  background-color: #00b248;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    gap: 0.5rem;
    display: none;
    width: 100%;
    background-color: #222;
  }

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

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: flex;
  }
}

/* Footer styles */
.site-footer {
  background-color: #111;
  color: #ddd;
  padding: 2rem 1.5rem;
  font-size: 0.9rem;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-column h4 {
  margin-bottom: 0.5rem;
  color: #fff;
}

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

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: #bbb;
  text-decoration: none;
}

.footer-column a:hover {
  color: #00c853;
}

.newsletter input[type="email"] {
  padding: 0.5rem;
  border: none;
  width: 70%;
  margin-bottom: 0.5rem;
}

.newsletter button {
  padding: 0.5rem 1rem;
  background-color: #00c853;
  color: #fff;
  border: none;
  cursor: pointer;
}

.footer-bottom {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: #666;
}

/* Other component styles remain unchanged */
/* ... (rest of the CSS untouched) ... */

.hero-banner {
  background: url('/skennel/assets/images/hero.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 4rem 1rem;
}
.hero-text .btn {
  background: #00c853;
  color: white;
  padding: 0.75rem 1.25rem;
  margin: 0.5rem;
  text-decoration: none;
  border-radius: 5px;
}
.hero-text .btn.secondary {
  background: #333;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1rem;
}

.services-grid .grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service-card {
  display: block;
  padding: 1.5rem;
  background: #f7f7f7;
  border-left: 5px solid #00c853;
  border-radius: 8px;
  text-decoration: none;
  color: #222;
  transition: all 0.3s ease;
}
.service-card:hover {
  background: #e8f5e9;
  transform: translateY(-2px);
}

.testimonials blockquote {
  background: #f5f5f5;
  padding: 1rem;
  margin: 0.5rem 0;
  border-left: 4px solid #00c853;
}

.book-highlight .highlight-card {
  background: #00c853;
  color: white;
  padding: 1rem;
  text-align: center;
  margin: 0.5rem;
  border-radius: 5px;
  display: inline-block;
  text-decoration: none;
}

.why-sanyati ul {
  list-style: none;
  padding-left: 0;
}
.why-sanyati li {
  margin-bottom: 0.5rem;
}

.contact-cta iframe {
  border-radius: 8px;
  margin-top: 1rem;
}

.carousel {
  position: relative;
  max-width: 500px;
  margin: auto;
  text-align: center;
}
.carousel img {
  width: 100%;
  display: none;
  border-radius: 10px;
}
.carousel-btn {
  position: absolute;
  top: 45%;
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 0 10px;
  cursor: pointer;
}
.carousel-btn.prev {
  left: 10px;
}
.carousel-btn.next {
  right: 10px;
}

@media (max-width: 768px) {
  .carousel-btn {
    font-size: 1.5rem;
    top: 40%;
  }

  .hero-banner {
    padding: 3rem 1rem;
  }

  .book-highlight .highlight-card {
    width: 100%;
    margin-bottom: 1rem;
  }
}

/* Cards, tables, and other UI blocks */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  text-align: center;
}
.card img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.cta-banner {
  background: #f5f5f5;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  margin-top: 3rem;
}
.cta-banner .btn.cta {
  background: #2e7d32;
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
}

.dog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.dog-card {
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 1rem;
  background: #fff;
  text-align: center;
}
.dog-card img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 1rem;
  max-height: 250px;
}
.dog-card h3 {
  margin: 0.5rem 0;
}

.puppy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.puppy-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
}
.puppy-card img {
  max-width: 100%;
  border-radius: 8px;
  max-height: 200px;
  object-fit: cover;
}

.litter-info {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
}

.adoption-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
}
.adoption-steps .step {
  background: #f9f9f9;
  padding: 1.5rem;
  border-left: 5px solid #4caf50;
  border-radius: 10px;
}
.adoption-cta {
  background: #f0fdf4;
  padding: 2rem;
  text-align: center;
  border-radius: 12px;
  margin-top: 3rem;
}
.adoption-cta .btn.cta {
  background: #4caf50;
  color: white;
  border-radius: 30px;
  padding: 0.8rem 2rem;
}

.team-grid.horizontal-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}

.team-member {
  min-width: 200px;
  flex: 0 0 auto;
  text-align: center;
}

.team-member img {
  width: 100%;
  max-width: 200px;
  border-radius: 50%;
  border: 3px solid #00c853;
}

.testimonials blockquote {
  background: #f9f9f9;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 5px solid #00c853;
  font-style: italic;
  color: #333;
  border-radius: 5px;
}

.testimonials cite {
  display: block;
  margin-top: 0.5rem;
  font-weight: bold;
  color: #555;
}

.testimonial-list {
  max-width: 800px;
  margin: auto;
}
.form-styled {
  max-width: 700px;
  margin: 2rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-styled h3 {
  margin-top: 2rem;
  color: #2e7d32;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.3rem;
}

.form-styled label {
  font-weight: 600;
}

.form-styled input,
.form-styled select,
.form-styled textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

.form-styled textarea {
  resize: vertical;
}

.form-styled .btn.cta {
  background-color: #00c853;
  color: white;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 1rem;
  align-self: flex-start;
}

.form-styled .btn.cta:hover {
  background-color: #00b248;
}
.login-page {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem;
  background: #f9f9f9;
  min-height: 70vh;
}

.login-card {
  background: #fff;
  border-radius: 10px;
  padding: 2rem 2.5rem;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.login-card h2 {
  margin-bottom: 1.5rem;
  text-align: center;
  color: #333;
}

.login-card label {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  color: #555;
}

.login-card input {
  width: 100%;
  padding: 0.7rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.login-card .btn.cta {
  margin-top: 1.5rem;
  width: 100%;
  padding: 0.75rem;
  font-weight: bold;
  font-size: 1rem;
  background: #00c853;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.login-card .btn.cta:hover {
  background: #00b248;
}

.error-msg {
  background: #ffebee;
  color: #c62828;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border-left: 4px solid #c62828;
  border-radius: 4px;
}
