/* homepage ---------------------------------------------*/
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}
:root {
  --primary-color: rgb(255, 180, 58);
  --overlay-color: rgba(255, 205, 130, 0.85);
  --menu-speed: 0.75s;
}

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

body {
  font-family: "Playfair Display", serif;
  line-height: 1.4;
}

.container {
  max-width: 960px;
  margin: auto;
  overflow: hidden;
  padding: 0 3rem;
}


/* about page */
.showcase {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image:  url(img/aboutbg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0 2rem;
  animation: fadeSlideUp 1.2s ease-out forwards;
  opacity: 0;
  transform: translateY(40px);
}

.showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* dark overlay for contrast */
  z-index: 0;
}

.showcase-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  color: white;
}

.showcase-inner h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.showcase-inner h1 span {
  font-size: 1.2em;
}

.showcase-inner p {
  font-size: 1.25rem;
  font-family: 'Roboto', sans-serif;
  max-width: 600px;
  margin: 0 auto;
}

/* Animation keyframes */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* MENU STYLES */
.menu-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

.menu-wrap .toggler {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
  width: 50px;
  height: 50px;
  opacity: 0;
}

.menu-wrap .hamburger {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 60px;
  height: 60px;
  padding: 1rem;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger Line */
.menu-wrap .hamburger > div {
  position: relative;
  flex: none;
  width: 100%;
  height: 2px;
  background: #4b1010;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

/* Hamburger Lines - Top & Bottom */
.menu-wrap .hamburger > div::before,
.menu-wrap .hamburger > div::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: -10px;
  width: 100%;
  height: 2px;
  background: inherit;
}

/* Moves Line Down */
.menu-wrap .hamburger > div::after {
  top: 10px;
}

/* Toggler Animation */
.menu-wrap .toggler:checked + .hamburger > div {
  transform: rotate(135deg);
}

/* Turns Lines Into X */
.menu-wrap .toggler:checked + .hamburger > div:before,
.menu-wrap .toggler:checked + .hamburger > div:after {
  top: 0;
  transform: rotate(90deg);
}

/* Rotate On Hover When Checked */
.menu-wrap .toggler:checked:hover + .hamburger > div {
  transform: rotate(225deg);
}

/* Show Menu */
.menu-wrap .toggler:checked ~ .menu {
  visibility: visible;
}

.menu-wrap .toggler:checked ~ .menu > div {
  transform: scale(1);
  transition-duration: var(--menu-speed);
}

.menu-wrap .toggler:checked ~ .menu > div > div {
  opacity: 1;
  transition:  opacity 0.4s ease 0.4s;
}

.menu-wrap .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-wrap .menu > div {
  background: var(--overlay-color);
  border-radius: 50%;
  width: 200vw;
  height: 200vw;
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: all 0.4s ease;
}

.menu-wrap .menu > div > div {
  text-align: center;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.menu-wrap .menu > div > div > ul > li {
  list-style: none;
  color: #fff;
  font-size: 2rem;
  padding: 1rem;
}

.menu-wrap .menu > div > div > ul > li > a {
  color: inherit;
  text-decoration: none;
  transition: color 0.4s ease;
}
/* Hover effect for menu items */
.menu-wrap .menu > div > div > ul > li > a {
position: relative;
color: white;
text-decoration: none;
transition: color 0.3s ease-in-out;
}

.menu-wrap .menu > div > div > ul > li > a:hover {
color: rgb(186, 74, 0) /* Change text color on hover */
}

/* Underline effect */
.menu-wrap .menu > div > div > ul > li > a::after {
/* content: ""; */
position: absolute;
left: 50%;
bottom: -5px;
width: 0%;
height: 3px;
background-color: var(--primary-color);
transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

.menu-wrap .menu > div > div > ul > li > a:hover::after {
width: 100%;
left: 0;
}
/* Style for icons */
.menu-wrap .menu ul li a i {
margin-right: 10px; /* Space between icon and text */
font-size: 1.5rem;  /* Adjust icon size */
vertical-align: middle;
transition: color 0.3s ease-in-out;
}

/* Icon color changes on hover */
.menu-wrap .menu ul li a:hover i {
color: var(--primary-color);
}

/* homepage */
.home1 {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(img/bgpic1.png);
}

.home1 #text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -240%); 
  
  color: #B76B6B;
  font-size: 70px;
  text-align: center;
  line-height: 60px;
}
@media screen and (max-width: 768px) {
  .home1 #text {
    transform: translate(-50%, -120%); 
    font-size: 40px;               
    line-height: 48px;
  }
}


.home1 #btn {
  margin-top: 50px;
  text-decoration: none;
  display: inline-block;
  padding: 8px 30px;
  background: white;
  color: #B76B6B;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 2px;
  border-radius: 40px;
  transform: translateY(100px); /* Default start */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  will-change: transform; /* performance boost */
}



.home1 #btn:hover {
  background: #fceaea;       
  color: #994a4a;               
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(95px);
}



.home1 img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  object-fit: cover;
}


.home2 {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  background-image: url("img/bgpic1.png");
  background-size: cover;
  background-position: center;
}


.home2-content {
  position: relative;
  width: 100%;
  max-width: 1200px;
  /* text-align: center; */
  z-index: 1; /* Ensure it's above the background */
}
#fact-heading {
  font-size: 3rem;
  color: #6a3b3b;
  text-align: left;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  
}

#fact-text {
  font-size: 1.5rem;
  color: #6a3b3b;
  text-align: left;
  max-width: 700px;
  margin-bottom: 2rem;

}



.home2-ground {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;

  margin-top: 100px;
  max-width: 900px;
  z-index: 1;
}


#fact-img {
  position: relative;
  z-index: 2;
  margin-top: -60px; /* Adjust so it "sits" on the ground image */
}

#fact-img img {
  width: 100%;
  max-width: 500px;
  display: block;
  margin: 0 auto;
  transition: transform 0.4s ease;
}
#fact-img img:hover {
  transform: scale(1.08); /* Slight zoom */
}

.home2 img {
  display: block;
  height: auto;
  max-width: 100%;
}

.next-btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: -10px;
}


#home2btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  background-color: #f8961e;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  pointer-events: auto;
  z-index: 5;
  position: relative;
}

#home2btn:hover {
  background-color: #b66a40;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
/* home3 */
.home3 {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  background-image: url("img/bgpic1.png");
  background-size: cover;
  background-position: center;
}

.home3-content {
  position: relative;
  width: 100%;
  max-width: 1200px;
  /* text-align: center; */
  z-index: 1; /* Ensure it's above the background */
}
#fact-heading {
  font-size: 3rem;
  color: #6a3b3b;
  text-align: left;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  
}

#fact-text {
  font-size: 1.5rem;
  color: #6a3b3b;
  text-align: left;
  max-width: 700px;
  margin-bottom: 2rem;

}


.home3-ground {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}

.home3-ground img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ⬅️ Forces the image to fill and crop */
  display: block;
}


#fact-img {
  position: relative;
  z-index: 2;
  margin-top: -60px; /* Adjust so it "sits" on the ground image */
}

#fact-img img {
  width: 100%;
  max-width: 500px;
  display: block;
  margin: 0 auto;
  transition: transform 0.4s ease;
}
#fact-img img:hover {
  transform: scale(1.08); 
}


.home3 img {
  display: block;
  height: auto;
  max-width: 100%;
}

.next-btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: -10px;
}


#home2btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  background-color: #f8961e;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  pointer-events: auto;
  z-index: 5;
  position: relative;
}

#home2btn:hover {
  background-color: #b66a40;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
.home3-ground {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
}

.home3-ground img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* section 4 */

.news-section {
  background-color: #f8f5da;
  padding: 4rem 2rem;
  text-align: center;
  font-family: "Playfair Display", serif;
  width: 100vw;
  height: 100vh;
}


.news-title {
  font-size: 2.5rem;
  color: #7c6455;
  margin-bottom: 3rem;
}

/* Slider Container */
.slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 400px;
  
  
}


.slide {
  display: none;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  box-sizing: border-box;
  align-items: center;
  gap: 2rem;
  flex-direction: row;
  transition: all 0.5s ease;
}


.slide.active {
  display: flex;
  opacity: 1;
  position: relative;
}


.slide-img {
  max-width: 50%;
  border-radius: 10px;
  object-fit: cover;
  height: auto;
}


.slide-content {
  max-width: 50%;
  text-align: left;
}

.slide-content h3 {
  font-size: 1.8rem;
  color: #824c1d;
  margin-bottom: 1rem;
}

.slide-content p {
  font-size: 1rem;
  color: #432121;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Button */
.learn-more-btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background-color: #ede6dd;
  color: #7c6455;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

.learn-more-btn:hover {
  background-color: #dbcaba;
  transform: translateY(-2px);
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 2.5rem;
  cursor: pointer;
  color: #7c6455;
  z-index: 10;
  padding: 0 1rem;
  transition: color 0.3s;
}

.arrow:hover {
  color: #b79c88;
}

.arrow.prev {
  left: 0;
}

.arrow.next {
  right: 0;
}

.dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

/* Dot appearance */
.dot {
  height: 12px;
  width: 12px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #7c6455;
}

/* Slide-in Animations */
.slide-in-right {
  animation: slideInRight 0.5s forwards;
}

.slide-in-left {
  animation: slideInLeft 0.5s forwards;
}
@media screen and (max-width: 768px) {
  .slider {
    height: auto; /* Let height adjust naturally */
    border-radius: 0;
  }

  .slide {
    flex-direction: column;
    padding: 1.5rem 1rem;
    text-align: center;
  }

  .slide-img {
    max-width: 100%;
    width: 100%;
    margin-bottom: 1rem;
  }

  .slide-content {
    max-width: 100%;
    text-align: center;
  }

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

  .slide-content p {
    font-size: 0.95rem;
  }

  .arrow {
    font-size: 2rem;
    padding: 0 0.5rem;
  }

  .dots {
    bottom: 10px;
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* map */
/* Location Section Layout */
.location-section {
  display: flex;
  flex-wrap: wrap;
  background: #f6f1e2;
  padding: 4rem 2rem;
  gap: 2rem;
}

/* Left Column */
.location-left {
  flex: 1 1 500px;
  padding-right: 2rem;
}

.location-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.location-heading img {
  width: 40px;
}

.location-text span {
  font-weight: bold;
  color: #c2985f;
  font-size: 1rem;
  text-transform: lowercase;
}

.location-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #3e2c1d;
  margin-top: 0.25rem;
}

/* Search bar */
.location-search input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  outline: none;
}

/* Map Image */
.location-map iframe {
  width: 100%;
  height: 360px; /* 📏 Adjust as needed to align with the input */
  border: 0;
  border-radius: 50px; /* 🟢 Match the search bar style */
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* Right Column - Cards */
.location-right {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: #c6b197;
  padding: 2rem;
  border-radius: 20px;
}

.location-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  position: relative;
}

.location-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #3e2c1d;
}

.location-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.location-card i {
  color: #b78b71;
}

/* Visit Button */
.visit-btn {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  background: #866e66;
  color: white;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 18px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.visit-btn:hover {
  background: #a98d7f;
}





/* shelter page */
/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #fef7ea;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  filter: brightness(0.95);
}

.hero-content {
  position: relative;
  z-index: 1;
  margin-left: 5%;
  color: #572e2e;
  font-family: 'Playfair Display', serif;
  text-align: left;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
}

/* Welcome Section */
.welcome {
  background-color: #f3e5c3;
  text-align: center;
  padding: 2.5rem 1rem;
}

.welcome h2 {
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  color: #5a3b2e;
  margin-bottom: 1rem;
}

.address {
  color: #8c5b5b;
  font-size: 1rem;
  line-height: 1.6;
}

/* Dog Cards */
.dog-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 2rem;
  background: #fff;
}

.card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  width: 280px;
  text-align: center;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 250px; 
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.4rem;
  color: #3e2c1d;
  margin-bottom: 0.5rem;
}

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

.card-btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #f2e6ce;
  color: #3e2c1d;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.card-btn:hover {
  background-color: #d3c3a3;
}

/* about page */
body {
  background-image: url(img/bgpic1.png);
font-family: "Playfair Display", serif;



width: auto;
}


.about-section {
  
height: 100vh; 
padding: 20px; 
display: flex;
justify-content: center; 
align-items: center; 
}
.about-header {
text-align: center;
font-size: 2em;
padding: 20px;
}

.about-content {

display: flex;
justify-content: center;
gap: 20px;
padding: 20px;
}
.card img{
width: 380px;
margin-top: 50px;

}
.card {
width: 450px;
padding: 20px;
border-radius: 10px;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
transition: all 0.3s ease;
margin: 10px; 
}

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

.yellow { background: #ffeb99; }
.cream { background: #fffacd; }
.white { background: white; }
.card h2 {
  font-size: 1.8rem;
  color: #5f4129;
  margin-bottom: 1rem;
 
}

.card p {
  font-size: 1rem;
  color: #5a4a3f;
  line-height: 1.6;

  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .about-section {
    height: auto; 
    padding: 2rem 1rem;
    flex-direction: column;
  }

  .about-content {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .card {
    width: 90%;
    margin: 1rem 0;
    padding: 1.5rem;
  }

  .card img {
    width: 100%;
    margin-top: 1rem;
  }

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

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



/* Donate Page -----------------------------------------------*/
/* ======================
   SECTION 1: Support Content
====================== */
.support-section {
  font-family: 'Playfair Display', serif;
  color: #3e2c1d;
  background-color: #fff;
  padding: 4rem 2rem;
  margin-top: 60px;
}

.support-header h2 {
  font-size: 4.5rem;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 1rem;
}

.support-header h2 span {
  color: #e88b3c;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.author-info img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.support-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap; 
}

.support-content.reverse {
  flex-direction: row-reverse;
}

.support-image-left,
.support-image-right,
.support-text-right,
.support-text-left {
  flex: 1 1 45%;
  min-width: 300px;
}

.support-image-left img,
.support-image-right img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.support-text-right p,
.support-text-left p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  line-height: 2.5;
  max-width: 100%;
}


/* ======================
   SECTION 2: Donation Progress
====================== */
.donation-section {
  background-color: #fff;
  padding: 4rem 2rem;
}

.how-help-section {
  background-color: #f3d4a0;
  text-align: center;
  padding: 3rem 2rem;
  margin-bottom: 3.5rem;
  position: relative;
}

.how-help-section h3 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #3e2c1d;
}

.how-help-section p {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #3e2c1d;
}

.donation-progress {
  text-align: center;
  padding: 3rem 1rem;
  background-color: #fff;
}

.donation-progress .raised {
  color: #d08c32;
  font-weight: bold;
  font-size: 1.5rem;
}

.donation-progress .goal {
  color: #c25757;
  font-weight: bold;
}

.donation-progress label {
  display: block;
  font-weight: bold;
  color: #b44b4b;
  margin: 1rem 0 0.5rem;
}

.progress-bar {
  width: 80%;
  max-width: 700px;
  height: 10px;
  background-color: #ddd;
  margin: 0 auto;
  border-radius: 5px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background-color: #d88b8b;
}

.donation-progress .percent {
  margin-top: 1rem;
  font-weight: bold;
  color: #b44b4b;
}
.donation-progress .goal-line {
  font-size: 2rem; 
  font-weight: bold;
  margin-bottom: 1rem;
  color: #3e2c1d; 
}

.donation-progress .raised,
.donation-progress .goal {
  font-size: inherit;      
  color: #d08c32;       
  font-weight: bold;
}
.donate-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.8rem 2rem;
  border: 2px solid #7c6455;
  color: #7c6455;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
}

.donate-btn:hover {
  background-color: #7c6455;
  color: white;
}


/* donatenow page */

.donate-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 4rem 2rem;
  background: #fff7e6;
  font-family: 'Playfair Display', serif;
  gap: 2rem;
  min-height: 100vh;   
}


.donate-left {
  margin-top: 50px;
  flex: 1 1 45%;
}

.donate-left h2 {
  font-size: 3rem;
  color: #7c6455;
  margin-bottom: 0.5rem;
}

.donate-left p {
  font-size: 1.2rem;
  color: #a88975;
  margin-bottom: 2rem;
}


.donate-message-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.donate-message-card h3 {
  font-size: 1.8rem;
  color: #7c6455;
  margin-bottom: 1.5rem;
  text-align: center;
}

.donate-message-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #7c6455;
  text-align: left;
}

.donate-message-content img {
  width: 300px;
  height: auto;
}



.donate-right {
  flex: 1 1 45%;
  margin-top: 50px;
}

.donate-right h2 {
  font-size: 2.5rem;
  color: #7c6455;
  margin-bottom: 1rem;
}


.amount-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  margin-top:30px;
}

.amount-options button {
  background: #fcece2;
  border: none;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  font-size: 2rem;
  color: #7c6455;
  font-weight: bold;
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.amount-options button:hover {
  background-color: #f4d3bc;
}


.donation-type {
  display: flex;
  gap: 2rem;
  margin: 1rem 0;
  font-size: 1.1rem;
  color: #7c6455;
  margin-top: 30px;
}


.payment-form {
  background: #deac90;
  padding: 1.5rem;
  border-radius: 16px;
  margin-top: 3rem;
}

.payment-form label {
  display: block;
  margin: 1rem 0 0.3rem;
  color: #3e2c1d;
  font-size: 1rem;
}

.payment-form input {
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
}


.donate-btn {
  margin-top: 2rem;
  background: #fff;
  border: none;
  color: #3e2c1d;
  padding: 0.8rem 2rem;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease; 
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.1);
}

.donate-btn:hover {
  background: #3e2c1d;
  color: white;
}



/* animation tree comes in */ 
.tree-left, .tree-right {
position: fixed;
margin-top: 400px;
top: 0;
width: 100%; /* Adjust size */
 height: auto;
transition: transform 1s ease-in;
z-index: 20; 
}  

.tree-left {
left: -700px; 
}

.tree-right {
right: -1000px; 
}
.about-section {
padding: 40px;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
background-image: url("bgpic1.png");
}

.card {
width: 300px;
padding: 20px;
border-radius: 10px;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
text-align: center;
}

.card img {
width: 100%;
border-radius: 10px;
margin-top: 10px;
}

.help-section, .contact-section {
text-align: center;
padding: 40px;
background: #f9f9f9;
}

.help-section img {
width: 100%;
max-width: 600px;
margin-top: 20px;
}

.contact-section p {
margin: 10px 0;
}


@keyframes fadeSlideUp {
from {
    opacity: 0;
    transform: translateY(50px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
/* Header Styling */
.main_h {

position:fixed;
width: 100%;
top: 0;
left: 0;
background: rgba(255, 212, 170, 0.9);
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
padding: 15px 30px;
display: flex;
justify-content: center;
align-items: center;
transition: all 0.3s ease-in-out;
z-index: 1000;

}

.main_h.sticky {
background: rgb(238, 214, 171);
box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
padding: 10px 30px;

}

.logo a {
color: #544115;
font-size: 22px;
font-weight: bold;
text-decoration: none;
}

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

.navigation ul li a {
text-decoration: none;
color: #333;
font-weight: 600;
transition: color 0.3s;
}

.navigation ul li a:hover {
color: #ff7b00;
}

/* Mobile Menu */
.mobile-toggle {
display: none;
font-size: 24px;
cursor: pointer;
}

@media screen and (max-width: 768px) {
.navigation {
    display: none;
}
.mobile-toggle {
    display: block;
}
.main_h.open-nav .navigation {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
}
}

.learn-more-btn {
display: inline-block;
margin-top: 15px;
padding: 10px 20px;
background-color: #f2f2cf;
color: #333;
font-size: 16px;
font-weight: bold;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
background-color: #866e36;
}


.footer-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #d2bea4;
  padding: 3rem 2rem;
  color: #5f4b3d;
  font-family: 'Playfair Display', serif;
}

.footer-left {
  flex: 1 1 40%;
  padding-right: 2rem;
}

.footer-left h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}


.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center; /* centers all child elements horizontally */
}

/* Inputs and Textarea */
.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 350px; /* ✅ limits width so it doesn’t stretch too far */
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 10px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
}

/* Textarea specific */
.contact-form textarea {
  height: 100px;
  resize: none;
}

/* Centered Button */
.contact-form button {
  background: #fdf2df;
  border: none;
  border-radius: 10px;
  padding: 0.7rem 2rem;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}


.contact-form button:hover {
  background: #e2d3b5;
}

/* Right Side */
.footer-right {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #f5ebd8;
  padding: 2rem;
  border-radius: 20px;
}

.footer-socials h4 {
  
  margin-bottom: 1rem;
  color: #7a6758;    
  font-size: 1.8rem;     
  margin-bottom: 1rem;

  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  text-align: center;  
}

.social-icons {
  justify-content: center;
  display: flex;
  gap: 1rem;
}

.social-icons a {
  align-items: center;               /* Vertically center icon */
  justify-content: center;  
  display: flex;
  width: 60px;
  height: 60px;
  border: 1px solid #a6978b;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  color: #7b685e;
  font-size: 1.8rem;
  transition: background 0.3s;
}

.social-icons a:hover {
  background: #e1d0ba;
}

.footer-info {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
  gap: 2rem;
  font-size: 1rem;
  justify-content: center;  /* ✅ Center the whole group */
  text-align: center;  
 
}

.info-block h4 {
 
  font-weight: bold;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #7a6758;
  align-items: center;  
}

.mobile-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #544115;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 1001; /* stays above header background */
}

@media screen and (max-width: 768px) {
  .footer-section {
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .footer-left,
  .footer-right {
    width: 100%;
    padding: 1.5rem;
    border-radius: 20px; /* Optional: full roundness on mobile */
  }

  .footer-right {
    margin-top: 2rem;
  }

  .footer-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .info-block {
    width: 100%;
  }

  .contact-form input,
  .contact-form textarea {
    max-width: 100%;
  }

  .social-icons {
    justify-content: center;
  }
}
