/* CSS RESET & BASE STYLES ----------------------------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #FDF6F0;
  color: #215642;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}
a {
  color: #215642;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #5C91B7;
  outline: none;
}
ul, ol {
  padding-left: 1.2em;
}
h1, h2, h3, h4, h5, h6 {
  color: #215642;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 0.5em;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-top: 1.6em; }
h3 { font-size: 1.5rem; margin-top: 1.2em; }
h4 { font-size: 1.1rem; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
}

/* MAIN NAVIGATION ------------------------------------------------------ */
header {
  background: #fff;
  box-shadow: 0 5px 20px rgba(92, 145, 183, 0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
}
.logo-link img {
  height: 42px;
  width: auto;
  border-radius: 10px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 7px 14px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #FDF6F0;
  color: #5C91B7;
}
.main-nav .cta-primary {
  background: #215642;
  color: #fff;
  border-radius: 20px;
  padding: 10px 24px;
  margin-left: 12px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(92, 145, 183, 0.13);
  transition: background 0.22s, transform 0.18s;
}
.main-nav .cta-primary:hover,
.main-nav .cta-primary:focus {
  background: #5C91B7;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

/* MOBILE NAVIGATION --------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #215642;
  cursor: pointer;
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1151;
  height: 46px;
  width: 46px;
  border-radius: 50%;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus {
  background: #FDF6F0;
  outline: 2px solid #5C91B7;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 80vw;
  max-width: 320px;
  background: #fff;
  box-shadow: 2px 0 28px 0 rgba(92,145,183,0.19);
  transform: translateX(-110%);
  transition: transform 0.36s cubic-bezier(0.61,0,0.31,1);
  z-index: 1200;
  padding: 32px 24px 24px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #215642;
  font-size: 1.9rem;
  align-self: flex-end;
  margin-bottom: 30px;
  cursor: pointer;
  height: 38px;
  width: 38px;
  border-radius: 50%;
  transition: background 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #FDF6F0;
  outline: 2px solid #5C91B7;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  padding: 12px 10px;
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 10px;
  color: #215642;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FDF6F0;
  color: #5C91B7;
}

@media (max-width: 1040px) {
  .main-nav {
    gap: 10px;
    font-size: 0.98rem;
  }
}

@media (max-width: 900px) {
  .logo-link img { height: 36px; }
  .main-nav a { padding: 6px 9px; font-size: 0.93rem; }
  .main-nav .cta-primary { padding: 8px 16px; font-size: 1rem; }
}

@media (max-width: 800px) {
  .main-nav {
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* HERO SECTION --------------------------------------------------- */
.hero {
  background: #FDF6F0;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  padding: 40px 0 30px 0;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 8px 32px 0 rgba(92, 145, 183, 0.11);
}
.hero h1 {
  color: #215642;
  font-size: 2.3rem;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
  font-weight: bold;
}
.hero p {
  font-size: 1.2rem;
  color: #215642d9;
  margin-bottom: 26px;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
}
@media (max-width: 768px) {
  .hero h1 { font-size: 1.5rem; }
  .hero { min-height: 240px; padding: 25px 0 13px 0; border-radius: 0 0 24px 24px; }
}

/* SECTION BASE --------------------------------------------------- */
.section, .features, .about, .testimonials, .contact, .about-philosophy, .team, .services-list, .guide-categories, .faqs, .pet-stories, .happy-encounters, .animal-categories, .about-animals, .privacy-policy, .cookie-policy, .gdpr, .terms, .thank-you, .contact-details, .about-location {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 18px 0 rgba(92,145,183,0.08);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (max-width: 600px) {
  .section, .features, .about, .testimonials, .contact, .about-philosophy, .team, .services-list, .guide-categories, .faqs, .pet-stories, .happy-encounters, .animal-categories, .about-animals, .privacy-policy, .cookie-policy, .gdpr, .terms, .thank-you, .contact-details, .about-location {
    padding: 24px 6px;
    border-radius: 14px;
    margin-bottom: 36px;
  }
}

/* FLEX LAYOUT PATTERNS --------------------------------- */
.card-container, .categories-grid, .content-grid, .feature-grid, .categories-list, .featured-articles-list, .service-list, .short-pet-stories, .highlights-list, .feel-good-highlights, .special-moments-list, .unique-characteristics, .inclusion-details, .contact-list, .operating-hours {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}

.feature-grid {
  gap: 20px;
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: #FDF6F0;
  padding: 28px 20px;
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(92,145,183,0.08);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-grid, .categories-grid {
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 18px; }
  .content-grid, .categories-grid { flex-direction: column; gap: 16px; }
}

.card-container {
  gap: 24px;
}
.card {
  flex: 1 1 320px;
  min-width: 260px;
  margin-bottom: 20px;
}

/* FEATURE ITEM (if used) ---------------------------------------------*/
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FDF6F0;
  border-radius: 22px;
  padding: 20px 18px;
  box-shadow: 0 1px 7px rgba(92,145,183,0.09);
}

/* TESTIMONIAL CARDS --------------------------------------------------*/
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fffefc;
  color: #215642;
  border-radius: 20px;
  box-shadow: 0 3px 24px rgba(92,145,183,0.11);
  padding: 20px 30px;
  margin-bottom: 20px;
  font-size: 1.13rem;
  transition: box-shadow 0.22s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(33,86,66,0.13), 0 1px 2px rgba(92,145,183,0.03);
}
.testimonial-card strong {
  font-size: 1.04rem;
  color: #5C91B7;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card p {
  margin-bottom: 0.5em;
  color: #215642;
}
.testimonial-card span {
  font-size: 0.95em;
  color: #5C91B7;
}

.ratings-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-weight: bold;
  color: #215642;
  font-size: 1.05rem;
}


/* BUTTONS & CTAS -----------------------------------------------------*/
.cta-primary,
button[type="submit"] {
  background: #215642;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 12px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  transition: background 0.22s, color 0.17s, transform 0.18s, box-shadow 0.15s;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(92,145,183,0.17);
  display: inline-block;
  margin-top: 14px;
}
.cta-primary:hover, .cta-primary:focus, button[type="submit"]:hover, button[type="submit"]:focus {
  background: #5C91B7;
  color: #fff;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 24px rgba(33,86,66,0.18);
  outline: none;
}

button[type="button"], .cookie-btn, .cookie-banner button, .cookie-modal button {
  background: #fff;
  color: #215642;
  border: 1.5px solid #21564222;
  border-radius: 16px;
  padding: 10px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.15s, color 0.18s, border-color 0.12s;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(92,145,183,0.07);
  margin-right: 12px;
  margin-bottom: 10px;
}
button[type="button"]:hover, button[type="button"]:focus, .cookie-btn:hover, .cookie-btn:focus, .cookie-modal button:hover {
  background: #FDF6F0;
  border-color: #5C91B7;
  color: #5C91B7;
  outline: none;
}

.cookie-btn.accept {
  background: #215642;
  color: #fff;
  border: none;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #5C91B7;
  color: #fff;
}

.cookie-btn.reject {
  background: #fff;
  color: #b15e35;
  border: 1px solid #b15e351e;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #fbd4be;
  border: 1px solid #b15e35;
  color: #b15e35;
}

/* SEARCH BAR (on Ratgeber) -------------------------------------------*/
.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.search-bar input[type="search"] {
  flex: 1 1 160px;
  padding: 10px 16px;
  border-radius: 16px;
  border: 1.5px solid #21564224;
  font-size: 1rem;
  background: #fff;
  color: #215642;
  font-family: 'Roboto', Arial, sans-serif;
  transition: border 0.19s;
}
.search-bar input[type="search"]:focus {
  border-color: #5C91B7;
  outline: none;
}
.search-bar button {
  background: #215642;
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 10px 22px;
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  box-shadow: 0 1px 7px rgba(92,145,183,0.09);
  transition: background 0.19s, transform 0.18s;
  cursor: pointer;
}
.search-bar button:hover, .search-bar button:focus {
  background: #5C91B7;
  color: #fff;
  transform: translateY(-1.5px) scale(1.04);
}

/* LISTS & ARTICLE CARDS ----------------------------------------------*/
.feature-grid li,
.service-list li,
.categories-list li,
.unique-characteristics li,
.inclusion-details li,
.short-pet-stories li,
.highlights-list li,
.special-moments-list li,
.feel-good-highlights li,
.operating-hours li,
.contact-list li,
.featured-articles-list li {
  background: #FDF6F0;
  border-radius: 12px;
  box-shadow: 0 2px 9px rgba(92,145,183,0.05);
  padding: 16px 12px 16px 48px;
  position: relative;
  margin-bottom: 8px;
  color: #215642cc;
  font-size: 1.03rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: background 0.17s;
  min-width: 180px;
  word-break: break-word;
}
.feature-grid li img,
.categories-list li img,
.service-list li img,
.contact-list li img,
.operating-hours li img {
  position: absolute;
  left: 14px;
  top: 16px;
  height: 26px;
  width: 26px;
  border-radius: 6px;
}
.categories-grid > div {
  background: #FDF6F0;
  border-radius: 16px;
  box-shadow: 0 1px 7px rgba(92,145,183,0.08);
  padding: 24px 10px;
  flex: 1 1 180px;
  min-width: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  font-size: 1.06rem;
  margin-bottom: 8px;
}
.categories-grid img {
  margin-bottom: 6px;
}
.featured-articles-list li a {
  color: #215642;
  background: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  text-decoration: underline;
  border-radius: 8px;
  transition: background 0.13s, color 0.17s;
  padding: 4px 6px;
}
.featured-articles-list li a:hover, .featured-articles-list li a:focus {
  background: #FDF6F0;
  color: #5C91B7;
}

/* TEAMS ---------------------------------------------------------------*/
.team-member-profile {
  background: #FDF6F0;
  border-radius: 14px;
  box-shadow: 0 1px 6px rgba(92,145,183,0.06);
  padding: 18px 16px 6px 16px;
  margin-bottom: 12px;
  color: #215642;
}
.team-member-profile h3 {
  margin-bottom: 0.4em;
  color: #5C91B7;
  font-size: 1.2rem;
}

/* FOOTERS ------------------------------------------------------------*/
footer {
  background: #fff;
  padding: 34px 0 20px 0;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -2px 18px rgba(92,145,183,0.08);
  margin-top: 80px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 8px;
  justify-content: center;
  align-items: center;
}
.footer-nav a {
  color: #215642a9;
  font-size: 1rem;
  background: #FDF6F0;
  border-radius: 8px;
  padding: 7px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: background 0.17s, color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #5C91B7;
  background: #fff;
}
.brand-footer {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  font-size: 1rem;
  color: #215642b0;
  margin-top: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.brand-footer img {
  height: 28px;
  width: auto;
}

/* COOKIE CONSENT BANNER & MODAL ---------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff6e9;
  color: #215642;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  justify-content: center;
  padding: 18px 14px 12px 14px;
  box-shadow: 0 -2px 24px rgba(212,150,105,0.13);
  border-radius: 24px 24px 0 0;
  z-index: 1500;
  font-size: 1.04rem;
  animation: cookieFadeIn 0.6s both;
}
@keyframes cookieFadeIn {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner-buttons {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(92,145,183,0.16);
  z-index: 1600;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.37s both;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #215642;
  border-radius: 20px;
  box-shadow: 0 6px 48px rgba(33,86,66,0.18);
  padding: 40px 32px;
  width: 95vw;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: slideModalUp 0.45s cubic-bezier(0.67,0.01,0.31,1) both;
}
@keyframes slideModalUp {
  from { opacity: 0; transform: translateY(70px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  color: #5C91B7;
  margin-bottom: 0.8em;
  text-align: center;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  justify-content: flex-start;
  font-size: 1rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: #5C91B7;
  width: 20px;
  height: 20px;
  border-radius: 6px;
}
.cookie-category label {
  font-size: 1rem;
  color: #215642;
  font-family: 'Roboto', Arial, sans-serif;
  margin-left: 3px;
}
.cookie-modal .essential {
  font-weight: 600;
  color: #215642;
  opacity: 0.9;
}

/* FAQ - ACCORDION STYLE FOR DL/DT/DD -------------------------------*/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-list dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #5C91B7;
  background: #FDF6F0;
  border-radius: 10px;
  padding: 13px 14px;
  cursor: pointer;
  font-size: 1.08em;
  margin-top: 8px;
}
.faq-list dd {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(92,145,183,0.07);
  padding: 13px 14px 13px 22px;
  margin-left: 0;
  margin-bottom: 3px;
  color: #215642cc;
  font-size: 1.01em;
  transition: max-height 0.22s, opacity 0.13s;
}

/* GENERAL RESPONSIVE TYPOGRAPHY AND SPACING ------------------------------*/
@media (max-width: 1040px) {
  .container { max-width: 950px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.55rem; }
}
@media (max-width: 900px) {
  .container { max-width: 780px; }
  .section, .features, .about, .testimonials, .contact, .about-philosophy, .team, .services-list, .guide-categories, .faqs, .pet-stories, .happy-encounters, .animal-categories, .about-animals, .privacy-policy, .cookie-policy, .gdpr, .terms, .thank-you, .contact-details, .about-location {
    margin-bottom: 40px;
    padding: 28px 8px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.08rem; }
  h3 { font-size: 1em; }
  .container { padding: 0 6px; }
  .footer-nav a { padding: 7px 7px; font-size: 0.98rem; }
}
@media (max-width: 420px) {
  h1 { font-size: 1.07rem; }
  .cta-primary, button { font-size: 1rem; padding: 10px 14px; }
  .section,
  .features,
  .about,
  .testimonials,
  .contact {
    padding: 10px 2px;
  }
}

/* MOBILE FLEX DIRECTIONS ------------------------------------------*/
@media (max-width: 700px) {
  .card-container, .categories-grid, .content-grid, .feature-grid, .categories-list, .featured-articles-list, .service-list, .short-pet-stories, .highlights-list, .feel-good-highlights, .special-moments-list, .unique-characteristics, .inclusion-details {
    flex-direction: column;
    gap: 14px;
  }
  .footer-nav { flex-direction: column; gap: 7px; }
  .brand-footer { flex-direction: column; gap: 5px; }
}

/* UTILITIES -------------------------------------------------------------*/
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.soft-shadow { box-shadow: 0 2px 14px rgba(92,145,183,0.08); }
.rounded { border-radius: 18px; }

/* MICRO-INTERACTIONS ---------------------------------------------------*/
.cta-primary, button, .footer-nav a, .main-nav a, .mobile-nav a {
  transition: background 0.18s, color 0.17s, transform 0.15s, box-shadow 0.16s;
}

.card:hover, .feature-item:hover, .categories-grid > div:hover {
  box-shadow: 0 8px 36px rgba(33,86,66,0.13), 0 2px 7px rgba(92,145,183,0.07);
  transform: translateY(-2px) scale(1.02);
  background: #fff;
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid #5C91B7;
}

/* SCROLLBAR STYLES -----------------------------------------------------*/
::-webkit-scrollbar {
  width: 10px;
  background: #FDF6F0;
}
::-webkit-scrollbar-thumb {
  background: #5C91B744;
  border-radius: 24px;
}
::-webkit-scrollbar-thumb:hover {
  background: #5C91B7a1;
}

/* ACCESSIBILITY FOCUS STATES ------------------------------------------*/
a:focus, button:focus, .cta-primary:focus {
  outline: 2px solid #5C91B7;
  outline-offset: 1px;
}

/* OVERRIDE UNWANTED POSITIONING --------------------------------------*/
.card, .card-content, .feature-item, .testimonial-card, .footer-nav a,
.section, .hero, .about, .testimonials, .contact, .pet-stories, .happy-encounters, .about-philosophy, .team, .services-list, .guide-categories, .faqs, .animal-categories, .about-animals, .privacy-policy, .cookie-policy, .gdpr, .terms, .thank-you, .contact-details, .about-location {
  position: relative;
}

/* Prevent unwanted overlapping */
.card, .testimonial-card {
  z-index: 1;
}
.cookie-banner, .cookie-modal-overlay, .mobile-menu {
  z-index: 1500;
}

/* END CSS */
