/* Cat Search & Rescue – Stylesheet */
/* Kleuren: zwart #000, oranje #E8862A, wit #fff */

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a1a;
  background: #fafafa;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

a {
  color: #E8862A;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* ===== HEADER ===== */
header {
  background: #000;
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  background: #fff;
  border-radius: 6px;
  padding: 4px;
  display: inline-block;
}

.logo img {
  height: 36px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover,
nav a.active {
  color: #E8862A;
  text-decoration: none;
}

/* ===== TIJDELIJKE BESCHIKBAARHEIDSMELDING ===== */
body.modal-open {
  overflow: hidden;
}

.availability-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.availability-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.availability-modal__dialog {
  position: relative;
  width: min(100%, 560px);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.availability-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  border: 0;
  background: transparent;
  color: #555;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.availability-modal__icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(232, 134, 42, 0.18);
  color: #E8862A;
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
}

.availability-modal h2 {
  margin-bottom: 0.75rem;
  font-size: 1.6rem;
}

.availability-modal p {
  color: #555;
  margin-bottom: 1rem;
}

.availability-modal__urgent {
  padding: 0.85rem 1rem;
  border-left: 4px solid #E8862A;
  background: #fff7ef;
  text-align: left;
  font-size: 0.925rem;
}

.availability-modal__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  margin: 1rem 0 1.25rem;
}

.availability-modal__links a {
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===== TIPS PAGINA'S ===== */
.tips-page {
  max-width: 960px;
  padding-bottom: 4rem;
}

.tips-page .page-header p {
  font-size: 1.05rem;
}

.urgent-note,
.intro-note,
.pro-tip,
.legal-note,
.tips-cta {
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.urgent-note {
  background: #fff3e8;
  border-left: 5px solid #E8862A;
}

.intro-note {
  background: #111;
  color: #fff;
}

.intro-note p,
.tips-cta p {
  margin: 0;
}

.steps-list {
  list-style: none;
  counter-reset: tips-step;
  display: grid;
  gap: 1rem;
  margin: 0 0 1.5rem;
  padding: 0;
}

.steps-list--continue {
  counter-reset: tips-step 4;
}

.step-card {
  counter-increment: tips-step;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.step-card::before {
  content: counter(tips-step);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #E8862A;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.step-card h2 {
  color: #222;
  font-size: 1.2rem;
  margin: 0 0 0.6rem;
}

.step-card p,
.step-card li {
  color: #5f5f5f;
}

.step-card p:not(:last-child) {
  margin-bottom: 0.65rem;
}

.step-card ul {
  padding-left: 1.25rem;
}

.step-card li {
  margin-bottom: 0.4rem;
}

.pro-tip {
  background: #fff7ef;
  border: 2px solid rgba(232, 134, 42, 0.45);
}

.pro-tip__label {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: #E8862A;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pro-tip h2,
.legal-note h2,
.tips-cta h2 {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}

.pro-tip ol,
.pro-tip ul {
  padding-left: 1.25rem;
}

.pro-tip li {
  margin-bottom: 0.4rem;
}

.legal-note {
  background: #f1f1f1;
}

.legal-note p:not(:last-child) {
  margin-bottom: 0.65rem;
}

.tips-cta {
  background: #E8862A;
  color: #fff;
}

.tips-cta a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

.tips-cta .btn {
  margin-top: 1.25rem;
  text-decoration: none;
}

/* ===== HERO ===== */
.hero {
  background: #000;
  background-image: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.3) 100%), url('/images/hero.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 5rem 0;
}

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.2rem;
  }
}

.hero .subtitle {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 550px;
  margin-bottom: 2rem;
}

.text-orange {
  color: #E8862A;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  text-decoration: none;
  opacity: 0.9;
  transform: scale(0.98);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.btn-black {
  background: #000;
  color: #fff;
}

.btn-orange {
  background: #E8862A;
  color: #fff;
}

.btn-instagram {
  background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
  color: #fff;
}

/* ===== SECTIONS ===== */
section {
  padding: 4rem 0;
}

.section-title {
  font-size: 1.875rem;
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 3rem;
}

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(232, 134, 42, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.card p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.card-intro {
  font-weight: 500;
  color: #333 !important;
  font-size: 0.875rem !important;
  margin-bottom: 0.5rem !important;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.card ul li {
  font-size: 0.875rem;
  color: #666;
  padding: 0.25rem 0;
  padding-left: 1rem;
  position: relative;
}

.card ul li::before {
  content: "•";
  color: #E8862A;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.card-link {
  display: inline-block;
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.9rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .card-description {
    min-height: 9rem;
  }
}

@media (min-width: 1024px) {
  .card-description {
    min-height: 6rem;
  }
}

/* ===== ZO WERKT EEN MELDING ===== */
.home-process {
  margin-top: 4rem;
  padding: 2.5rem;
  background: #f7f7f7;
  border: 1px solid #e9e9e9;
  border-radius: 16px;
}

.home-process .section-title {
  margin-bottom: 0.5rem;
}

.home-process .section-subtitle {
  margin-bottom: 2rem;
}

.process-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  align-items: start;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 1.5rem;
}

.process-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #E8862A;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.process-step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.process-step p {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
}

.process-action {
  margin-top: 2rem;
  text-align: center;
}

@media (min-width: 900px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-step {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .home-process {
    margin-top: 3rem;
    padding: 1.5rem;
  }
}

/* ===== SOCIAL MEDIA SECTION ===== */
.bg-light {
  background: #f3f3f3;
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.social-grid > div {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
  min-width: 0;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .social-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.social-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.facebook-embed {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  position: relative;
  width: 100%;
  height: 500px;
  min-height: 500px;
  max-width: 100%;
}

.facebook-embed iframe,
.facebook-embed .fb-page,
.facebook-embed .fb-page span,
.facebook-embed .fb-page iframe {
  width: 100% !important;
  max-width: 100% !important;
}

.facebook-embed .fb-page,
.facebook-embed .fb-page > span {
  display: block !important;
  overflow: hidden;
}

.facebook-embed iframe {
  height: 500px;
  border: none;
  overflow: hidden;
}

@media (max-width: 500px) {
  .facebook-embed {
    height: 400px;
    min-height: 400px;
  }
  .facebook-embed iframe {
    height: 400px;
  }

}

.instagram-card {
  background: #fff;
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  width: 100%;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.instagram-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.instagram-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.instagram-card p {
  color: #666;
  margin-bottom: 1.5rem;
}

.instagram-card--embed {
  height: 500px;
  padding: 0.75rem;
  justify-content: flex-start;
  overflow: hidden;
}

.instagram-preview {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  overflow: auto;
  background: #fafafa;
  border-radius: 8px;
}

.instagram-preview iframe {
  display: block;
  width: 100%;
  height: 650px;
  border: 0;
}

.instagram-profile-link {
  flex: 0 0 auto;
  margin: 0.75rem auto 0;
}

@media (max-width: 500px) {
  .instagram-card {
    min-height: 400px;
  }

  .instagram-card--embed {
    height: 400px;
  }
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: #E8862A;
  color: #fff;
  text-align: center;
  padding: 4rem 0;
}

.cta-banner h2 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* ===== FOOTER ===== */
footer {
  background: #000;
  color: #fff;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.footer-logo {
  background: #fff;
  border-radius: 6px;
  padding: 4px;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.footer-logo img {
  height: 40px;
  width: auto;
  display: block;
}

footer h4 {
  color: #E8862A;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

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

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

footer ul li a,
footer .text-gray {
  color: #999;
  font-size: 0.875rem;
}

footer ul li a:hover {
  color: #E8862A;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  text-align: center;
  color: #666;
  font-size: 0.8rem;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* ===== TEAM SECTION ===== */
.team-section {
  padding: 4rem 0;
  background: #fff;
}

.team-photo-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  max-width: 900px;
  margin: 0 auto;
}

.team-photo {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== ANBI PAGE ===== */
.page-header {
  padding: 3rem 0 1rem;
}

.page-header h1 {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: #666;
}

.anbi-section {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.anbi-section h2 {
  color: #E8862A;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  text-align: left;
}

.anbi-section p {
  color: #666;
  margin-bottom: 0.75rem;
}

.anbi-section h3 {
  font-weight: 500;
  font-size: 1rem;
  color: #333;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.anbi-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: #666;
}

.anbi-section ul li {
  margin-bottom: 0.25rem;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
}

.info-row:last-child {
  border-bottom: none;
}

.info-row .label {
  font-weight: 500;
}

.info-row .value {
  color: #666;
}

/* ===== DONEREN PAGE ===== */
.donate-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .donate-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.donate-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 2rem 0.5rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid #eee;
}

.donate-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.donate-card p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.qr-desktop {
  margin-bottom: 1.5rem;
}

.qr-image {
  width: 180px;
  height: 180px;
  display: block;
  margin: 0 auto;
}

.qr-hint {
  font-size: 0.8rem;
  color: #999;
  margin-top: 0.5rem;
  text-align: center;
}

/* Hide QR on mobile, show copy button prominently */
@media (max-width: 600px) {
  .qr-desktop {
    display: none;
  }
}

.iban-box {
  background: #f3f3f3;
  border-radius: 8px;
  padding: 1rem;
}

.iban-box .iban-label {
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 0.25rem;
}

.iban-box .iban-number {
  font-family: 'Courier New', monospace;
  font-weight: 700;
  font-size: 1.1rem;
}

.iban-box .iban-note {
  font-size: 0.8rem;
  color: #999;
  margin-top: 0.25rem;
}

.card-bottom {
  padding-top: 0.75rem;
}

.copy-btn {
  font-size: 0.95rem;
}

.copy-feedback {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  min-height: 1.2em;
}

.structureel-uitleg {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 1.25rem;
  margin-top: 1rem;
  text-align: left;
}

.structureel-uitleg h4 {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  color: #333;
}

.structureel-uitleg ol {
  padding-left: 1.25rem;
  color: #666;
  font-size: 0.85rem;
}

.structureel-uitleg ol li {
  margin-bottom: 0.4rem;
}

.donate-info {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.donate-info h3 {
  color: #E8862A;
  margin-bottom: 1rem;
}

.donate-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .donate-list {
    grid-template-columns: 1fr 1fr;
  }
}

.donate-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #666;
  font-size: 0.9rem;
}

.donate-list-item::before {
  content: "•";
  color: #E8862A;
  font-weight: bold;
  flex-shrink: 0;
}

/* ===== BELASTINGVOORDEEL BLOK ===== */
.belasting-blok {
  background: #000;
  color: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.belasting-blok h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #fff;
}

.belasting-blok p {
  color: #d1d5db;
  font-size: 0.875rem;
  margin: 0;
}

/* ===== MOBILE NAV ===== */
@media (max-width: 600px) {
  header .container {
    flex-wrap: wrap;
    gap: 0.6rem;
  }
  nav {
    width: 100%;
    justify-content: space-between;
    gap: 0.5rem;
  }
  nav a {
    font-size: 0.75rem;
  }
  nav a:first-child {
    display: none;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .availability-modal__dialog {
    padding: 1.5rem 1.1rem;
  }
  .step-card {
    grid-template-columns: 38px 1fr;
    gap: 0.75rem;
    padding: 1.2rem 1rem;
  }
  .step-card::before {
    width: 36px;
    height: 36px;
  }
}
