/**
  font-family: "Quicksand", sans-serif;
  font-family: "Jost", sans-serif;
  font-family: "Comfortaa", sans-serif;
  font-family: "Baloo 2", sans-serif;
  font-family: "Poppins", sans-serif;
**/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Jost", sans-serif;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  background-color: #ffdaf9;
  overflow-x: hidden;
}

button {
  cursor: pointer;
  outline: none;
  border: none;
  background: none;
}

button,
input,
a {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

button:focus,
input:focus,
a:focus {
  outline: none;
}

/** Navbar Section **/

.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  padding: 1rem 0;
}

.navbar.transparent {
  background-color: transparent;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-links a {
  color: #2d2d2d;
}

.navbar.scrolled .nav-links a:hover {
  color: #e85a85;
}

#navbar .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: #e85a85;
}

.navbar .brand a {
  display: flex;
  align-items: center;
}

.navbar .brand h2 {
  margin-left: 0.5rem;
  font-size: 1.8rem;
  color: #e85a85;
  transition: color 0.3s;
}

.navbar .brand h2:hover {
  color: #ff69b4;
}

.navbar .brand img {
  height: 80px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.nav-links a {
  text-decoration: none;
  color: #fefae0;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  font-size: 1.3rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #e85a85;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
}

.nav-links a:hover {
  color: #e85a85;
}

.nav-links a:hover::after {
  left: 0;
  width: 50%;
}

.navbar .donate-btn {
  background-color: #e85a85;
  color: white !important;
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  height: 100%;
  transition: background-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 8px rgba(232, 90, 133, 0.12);
}

.navbar .donate-btn:hover {
  background-color: #ff69b4;
  box-shadow: 0 2px 8px rgba(232, 90, 133, 0.2);
}

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  color: #e85a85;
  padding: 0.5rem;
  transition: background 0.2s;
  border-radius: 50%;
}

/* Responsive */
@media (max-width: 992px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 24px rgba(232, 90, 133, 0.08);
    border-radius: 0 0 18px 18px;
    padding: 2rem 1rem 1.5rem 1rem;
    text-align: center;
    z-index: 998;
    animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 1.2rem;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
    color: #e85a85;
    padding: 0.7rem 0;
    border-radius: 12px;
    transition: background 0.2s, color 0.2s;
  }

  .nav-links a:hover {
    color: #e85a85;
  }

  .nav-links a:hover::after {
    left: 0;
    width: 100%;
  }

  .donate-btn {
    background: #e85a85;
    padding-left: 2rem;
    padding-right: 2rem;
    color: #fff !important;
    font-weight: bold;
    margin-top: 0.5rem;
    padding: 0.7rem 1.2rem;
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(232, 90, 133, 0.12);
  }

  .menu-toggle {
    display: block;
  }

  .navbar .brand img {
    height: 50px;
    width: auto;
  }

  .navbar .brand h2 {
    font-size: 1.2rem;
  }
}

@media (max-width: 992px) {
  .navbar .brand img {
    height: 90px;
  }

  .navbar .brand h2 {
    font-size: 2.3rem;
  }

  .menu-toggle {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .navbar .brand img {
    height: 50px;
  }

  .navbar .brand h2 {
    font-size: 1.2rem;
  }

  .menu-toggle {
    font-size: 2rem;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/** End of Navbar Section **/


/** Hero Section **/

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 10%;
  background: linear-gradient(rgba(54, 19, 52, 0.7), rgba(54, 19, 52, 0.7)),
    url(./images/bg.png) center/cover no-repeat;
  gap: 2rem;
  height: 100vh;
  font-family: "Quicksand", sans-serif;
  text-align: center;
}

.hero-content {
  flex: none;
  min-width: 260px;
  max-width: 800px;
  width: 100%;
  padding: 0 1rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #ffdaf9;
  font-weight: 400;
  line-height: 1.1;
}

.hero-content h1 span {
  color: #e85a85;
  font-weight: 600;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #f7ede2;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero .btn {
  padding: 0.8rem 1.5rem;
  background-color: #e85a85;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s ease;
  font-size: 1.1rem;
}

.hero .btn:hover {
  transform: translateY(-5px);
  background-color: #ff69b4;
}

.hero .btn.secondary {
  background-color: #ffdaf9;
  color: #333;
}

.hero .btn.secondary:hover {
  transform: translateY(-5px);
  background-color: #ccc;
}

/* 
    Responsive styles for the hero section:

    @media (max-width: 992px)  - Targets tablets and small desktops.
    @media (max-width: 768px)  - Targets tablets and large mobile devices.
    @media (max-width: 480px)  - Targets small mobile devices and phones.
*/
/* Responsive styles */
@media (max-width: 992px) {
  .hero {
    padding: 30px 15%;
    height: 90vh;
  }

  .hero-content h1 {
    font-size: 3rem;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 1.2rem;
    padding: 0 1rem;
  }

  .hero-content {
    min-width: 0;
    padding: 0;
  }

  .hero-buttons {
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero .btn {
    font-size: 1.2rem;
    padding: 0.6rem 1rem;
    width: auto;
    min-width: 100px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 30px 15%;
    height: 90vh;
  }

  .hero-content h1 {
    font-size: 3rem;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 1.2rem;
    padding: 0 1rem;
  }

  .hero-content {
    min-width: 0;
    padding: 0;
  }

  .hero-buttons {
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero .btn {
    font-size: 1.2rem;
    padding: 0.6rem 1rem;
    width: auto;
    min-width: 100px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 30px 4%;
    height: 90vh;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 0.95rem;
    padding: 0 1rem;
  }

  .hero-content {
    min-width: 0;
    padding: 0;
  }

  .hero-buttons {
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero .btn {
    font-size: 0.95rem;
    padding: 0.6rem 1rem;
    width: auto;
    min-width: 100px;
  }
}

/** End of Hero Section **/

/** Work Section **/

.work {
  padding: 60px 10%;
  background-color: #fefae0;
  text-align: center;
}

.work h2 {
  font-size: 2.5rem;
  color: #e85a85;
  margin-bottom: 1.5rem;
}

.work p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 4rem;
}

.work .work-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.work .work-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  width: calc(33.333% - 1.5rem);
}

.work .work-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.work .work-item h3 {
  font-size: 1.5rem;
  color: #e85a85;
  margin-top: 1.3rem;
}

.work .work-item p {
  font-size: 1rem;
  color: #666;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 992px) {
  .work .work-item {
    width: calc(50% - 1.5rem);
  }
}

@media (max-width: 768px) {
  .work .work-item {
    width: calc(100% - 1.5rem);
  }
}

/** End of Work Section **/



/** Empower Section **/

.empower {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem;
  gap: 3rem;
}

.empower .content {
  flex: 1 1 0;
  min-width: 260px;
}

.empower .content h2 {
  font-size: 3.5rem;
}

.empower .content p {
  font-size: 1.1rem;
  max-width: 70%;
  margin: 10px 0;
  color: #333;
  font-family: "Poppins", sans-serif;
}

.empower .content .links {
  padding-top: 25px;
}

.empower .content a {
  background-color: #e85a85;
  padding: 15px 20px;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  color: #ffdaf9;
  display: inline-block;
  transition: background 0.2s;
}

.empower .content a:hover {
  background-color: #ff69b4;
}

.empower img {
  width: 50%;
  height: auto;
  border-radius: 10px;
  flex: 1 1 0;
  min-width: 200px;
  max-width: 500px;
}

/* Responsive styles */
@media (max-width: 992px) {
  .empower {
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2rem;
    text-align: center;
  }

  .empower img {
    width: 80%;
    max-width: 350px;
    margin: 0 auto;
  }

  .empower .content h2 {
    font-size: 2.5rem;
  }

  .empower .content p {
    max-width: 100%;
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .empower {
    padding: 5rem 1rem;
    gap: 1.5rem;
  }

  .empower .content h2 {
    font-size: 1.75rem;
  }

  .empower .content p {
    font-size: 0.75rem;
  }

  .empower img {
    width: 100%;
    max-width: 250px;
  }

  .empower .content a {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
}

/** End of Empower Section **/



/** Contact Section **/

.contact-section {
  background-color: #ffdaf9;
  color: #000;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.contact-left {
  flex: 1;
  min-width: 280px;
}

.contact-left h4 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.contact-left h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.contact-left p {
  font-size: 1rem;
  max-width: 500px;
  line-height: 1.6;
}

.contact-right {
  flex: 1;
  min-width: 280px;
}

.contact-right ul {
  list-style: none;
  padding: 0;
}

.contact-right li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-right i {
  font-size: 1.25rem;
  margin-right: 15px;
  margin-top: 5px;
  color: #000;
}

.contact-right h4 {
  margin: 0;
  font-weight: 500;
}

.contact-right a,
.contact-right p {
  font-size: 0.95rem;
  color: #444;
  text-decoration: none;
  margin-top: 5px;
  display: block;
}

/* Tablet */

@media (max-width: 992px) {
  .contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 10px;
  }
  .contact-wrapper {
    gap: 24px;
  }
  .contact-left h2 {
    font-size: 2rem;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    text-align: left;
    gap: 32px;
  }
  .contact-left,
  .contact-right {
    min-width: 0;
    width: 100%;
  }
  .contact-left h2 {
    font-size: 1.5rem;
  }
  .contact-left p,
  .contact-right a,
  .contact-right p {
    font-size: 0.95rem;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .contact-section {
    padding: 40px 10vw;
  }
  .contact-left h2 {
    font-size: 1.5rem;
  }
  .contact-left p,
  .contact-right a,
  .contact-right p {
    font-size: 1rem;
  }
  .contact-right i {
    font-size: 1rem;
    margin-right: 10px;
  }
  .contact-right li {
    margin-bottom: 18px;
  }
}

/** End of Contact Section **/



/** Footer Section **/

.site-footer {
  background-color: #000;
  color: white;
  padding: 60px 20px 30px;
  font-family: 'Poppins', sans-serif;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left {
  flex: 1;
  min-width: 250px;
}

.logo {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  margin-bottom: 20px;
}

.footer-nav {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-nav li a {
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav li a:hover {
  color: #fb6f92;
}

.footer-right {
  flex: 1;
  min-width: 250px;
}

.footer-right h4 {
  margin-bottom: 10px;
  font-weight: 600;
}

.subscribe-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.subscribe-form input {
  padding: 10px 15px;
  border: 2px solid #212529;
  border-radius: 10px;
  background-color: #212529;
  color: white;
  flex: 1;
  min-width: 200px;
  transition: 0.3s;
}

.subscribe-form input:focus {
  outline: none;
  border: 2px solid #fb6f92;
}

.subscribe-form button {
  padding: 10px 20px;
  background-color: white;
  color: black;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.subscribe-form button:hover {
  background-color: #fb6f92;
  color: white;
}

.privacy-note {
  margin-top: 10px;
  font-size: 13px;
  color: #ccc;
}

.privacy-note a {
  color: #fff;
  text-decoration: underline;
}

hr {
  margin: 40px 0 20px;
  border-color: #333;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
  font-size: 14px;
}

.footer-links a {
  margin-right: 20px;
  text-decoration: none;
  color: white;
  font-weight: 400;
}

.footer-links a:hover {
  color: #fb6f92;
}

footer .copyright {
  color: #ccc;
}

footer .copyright a {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-top, .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .subscribe-form {
    justify-content: center;
  }
}

/** End of Footer Section **/