:root {
  /* Base / Neutral */
  --bg: #fff4ec;           
  --card: #ffffff;        
  --muted: #6b5e4b;        
  --text: #f6ebdd;      
  --text2: #4b3b2a;       

  /* Primary Accent */
  --accent: #a9734b;     
  --accent-light: #d4a077; 

  /* Pink Highlights */
  --pink: #ff8b94;          
  --pink-light: #ffc4c8;   

  /* Gradients */
  --glow1: linear-gradient(90deg, #ff9c6b, #ffc4a3); 
  --glow2: linear-gradient(90deg, #ff8b94, #ffc4c8);  

  /* Modal & Sidebar */
  --modal-bg: #fff;          
  --modal-sidebar-bg: linear-gradient(135deg, #fff4ec, #ffd9cc); 
  --modal-input-border: #ffd9cc; 
  --modal-input-bg: #fff7f5; 
  --modal-input-focus-bg: #fff0f2;
  --modal-close-btn: #6b5e4b;
  --modal-scrollbar-track: #ffe6e9;
  --modal-scrollbar-thumb: #ff8b94;

  /* Buttons */
  --btn-save-bg: #ff8b94;
  --btn-save-hover-bg: #ffc4c8;
  --btn-cancel-bg: #ffd9cc;
  --btn-cancel-hover-bg: #ffc4b0;
  --btn-cancel-color: #a9734b;

  /* Tab Menu */
  --tab-menu-bg: #ffe6e9;
  --tab-menu-active-bg: #ff8b94;
  --tab-menu-active-color: #fff;
  --tab-menu-color: #6b5e4b;

  /* Photo Placeholder */
  --photo-placeholder-bg: #fff0f2;
  --photo-placeholder-border: #ffc4c8;
  --photo-placeholder-hover-bg: #ffc4c8;
  --photo-placeholder-hover-border: #ff8b94;
  --photo-placeholder-hover-color: #ff8b94;

  /* Shadows */
  --shadow-card: rgba(0,0,0,0.08);
  --shadow-card-hover: rgba(0,0,0,0.15);
  --shadow-btn-report: rgba(168,124,95,0.4);
  --shadow-btn-report-hover: rgba(168,124,95,0.5);
  --shadow-btn-details: rgba(168,124,95,0.3);
  --shadow-btn-details-hover: rgba(168,124,95,0.4);
  --shadow-tab-active: rgba(255,140,148,0.3);
  --shadow-modal: rgba(0,0,0,0.2);
}

.text-brown {
  color: #5a3e28;
}

.text-muted {
  color: #8b6f5e !important;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.about-hero {
  position: relative;
  background: url("../img/shelter2.png") center/cover no-repeat;
  padding: 6rem 2rem;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
}

.about-hero .container {
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  font-size: 3rem; 
  margin-bottom: 1rem;
  color: #ffedd5;
  font-weight: 700;
}

.about-hero p {
  font-size: 1.2rem; 
  max-width: 800px;
  margin: 0 auto 2rem;
  color: #fff9f3;
}

.nav-tabs .nav-link {
  border: none;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  color: #5a3e28;
  font-weight: 600;
}

.nav-tabs .nav-link:hover {
  border-bottom: 3px solid #a67853;
  color: #a67853;
}

.nav-tabs .nav-link.active {
  border-bottom: 3px solid #5a3e28;
  color: #5a3e28;
  background-color: transparent;
}
.tab-content .tab-pane {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.tab-content .tab-pane.show.active {
  opacity: 1;
  transform: translateY(0);
}
.col-lg-6 img {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.col-lg-6 img:hover {
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* STATS */
.stats-section {
  background-color: #6c5e53;
  color: white;
}
.stats-section h3 {
  font-size: 2rem;
}
.stats-section p {
  font-size: 1rem;
  margin-top: 5px;
}

/* ADVOCATES */
.advocates-section {
 /* background: #ffc4c8; */
  position: relative;
  overflow: hidden;
  padding: 40px 0;
 /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
}

.advocate-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
}

.advocate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.advocate-img {
  width: 160px;
  height: 160px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.advocate-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; 
  object-position: center; 
  transition: transform 0.3s ease;
}

.advocate-img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.advocate-img:hover img {
  transform: scale(1.1);
}

.advocates-section h2 {
  font-size: 2.5rem;
  color: #6c5e53 !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.advocates-section h5 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 8px;
}

.advocates-section p {
  font-size: 1rem;
  color: #6c757d !important;
}


/* PLATFORM OFFERS */
.platform-offers {
 /*  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--photo-placeholder-hover-bg) 10%,
    var(--photo-placeholder-hover-bg) 90%,
    transparent 100%
  );  */
  padding: 50px 0;
  margin-bottom: 40px;
}



.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #5a3e28; 
}

.offers-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.offer-card {
  background: #fff7f0; 
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(90, 62, 40, 0.2);
  padding: 30px 20px;
  flex: 1 1 220px;
  max-width: 250px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(90, 62, 40, 0.3);
}

.offer-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #a67853; 
}

/* Individual icon colors */
.offer-icon.bone { color: #c19a6b; }
.offer-icon.pin { color: #a67853; }
.offer-icon.doc { color: #8b6f5e; }
.offer-icon.heart { color: #b35c44; }

.offer-card h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #5a3e28;
}

.offer-card p {
  font-size: 0.95rem;
  color: #8b6f5e;
}


/* ANIMATIONS */
.fade-in-up.show,
.reveal-up.show {
  opacity: 1;
  transform: none;
}
.reveal-pop.show {
  opacity: 1;
  transform: scale(1);
}

.offer-card .offer-icon i {
    font-size: 30px; 
    color: var(--modal-close-btn); 
}

.advocate-img i {
    font-size: 1rem;
}

.how-system img {
    max-width: 70% !important; 
    height: auto !important;
}

.col-lg-6.d-flex.justify-content-center img {
    max-width: 60% !important; 
    height: auto !important;
}
