* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  background-color: #ffdaf9;
  overflow-x: hidden;
  height: 100%;
  font-family: "Jost", sans-serif;
}

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: #2d2d2d;
  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 {
  font-family: 'Poppins', sans-serif;
}

.contact-hero {
  min-height: 100vh;
  background: #f7f9fc;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 16px;
}

.hero-container {
  display: flex;
  flex-direction: row;
  margin-top: 3.5%;
  max-width: 900px;
  width: 100%;
  background: #fff;
  border-radius: 32px;
  padding: 2rem 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
  gap: 48px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 24px;
}

.hero-text .subheading {
  text-transform: uppercase;
  font-size: 0.95rem;
  color: #888;
  margin-bottom: 14px;
  font-weight: 500;
  letter-spacing: 1px;
}

.hero-text h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 18px;
  font-weight: 700;
}

.hero-text h1 strong {
  color: #222;
  font-weight: 800;
}

.hero-text .desc {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 32px;
  max-width: 420px;
}

.contact-info {
  margin-top: 18px;
}

.contact-info p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #222;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info i {
  color: #ff69b4;
  font-size: 1.2rem;
}

.contact-info span {
  color: #000;
  font-weight: 500;
}

.hero-form {
  background: #fff;
  padding: 36px 28px;
  border-radius: 20px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 280px;
  box-sizing: border-box;
  box-shadow: 0 2px 12px rgba(232, 90, 133, 0.07);
}

.hero-form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
  padding: 13px 15px;
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid #d3d3d3;
  background: #f7f9fc;
  transition: border-color 0.3s;
  width: 100%;
  min-width: 220px;
  max-width: 100%;
  box-sizing: border-box;
  display: block;
}

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
  border-color: #ff69b4;
  outline: none;
  background: #fff;
}

.hero-form button {
  background: #e85a85;
  color: white;
  border: none;
  padding: 13px;
  font-size: 1rem;
  border-radius: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: background 0.3s;
  box-shadow: 0 2px 8px rgba(0,122,255,0.10);
  width: 40%;
  min-width: 120px;
  max-width: 200px;
  justify-content: center;
  margin-top: 8px;
}

.hero-form button:hover {
  background: #ff69b4;
}

.hero-form button i {
  font-size: 1.2rem;
  background-color: #fff;
  color: #e85a85;
  padding: 0.5rem 0.65rem;
  border-radius: 50px;
}

.hero-form .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* Tablet */
@media (max-width: 900px) {
  .contact-hero {
    padding: 24px 8px;
  }
  .hero-container {
    flex-direction: column;
    gap: 32px;
    padding: 32px 12px;
    max-width: 98vw;
    margin-top: 6%;
  }
  .hero-text {
    min-width: 0;
    width: 100%;
    padding-right: 0;
    margin-bottom: 12px;
  }
  .hero-form {
    min-width: 0;
    width: 100%;
    padding: 28px 12px;
    margin-bottom: 0;
  }
  .hero-form input,
  .hero-form select,
  .hero-form textarea {
    min-width: 0;
    font-size: 0.98rem;
  }
  .hero-form button {
    width: 60%;
    min-width: 100px;
    max-width: 180px;
    font-size: 0.98rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .hero {
    background-color: #fff;
  }
  .contact-hero {
    padding: 8px 5%;
  }
  .hero-container {
    padding: 12px 2px;
    border-radius: 12px;
    gap: 18px;
    max-width: 100vw;
    margin-top: 5%;
    box-shadow: none;
  }
  .hero-text {
    padding-right: 0;
    margin-bottom: 8px;
  }
  .hero-form {
    padding: 12px 2px;
    border-radius: 10px;
  }
  .hero-text .subheading {
    font-size: .75rem;
  }
  .hero-text .h1 {
    font-size: 1.75rem;
  }
  .contact-info h4 {
    padding-bottom: 10px;
  }
  .hero-form input,
  .hero-form select,
  .hero-form textarea {
    font-size: 0.95rem;
    min-width: 0;
    padding: 10px 10px;
  }
  .hero-form button {
    width: 100%;
    min-width: 80px;
    max-width: 100%;
    font-size: 0.95rem;
    justify-content: center;
    padding-bottom: 20px;
  }
}

/* Extra small devices */
@media (max-width: 400px) {
  .hero-container {
    padding: 6px 0;
    border-radius: 8px;
    gap: 8px;
    margin-top: 18%;
  }
  .hero-form {
    padding: 6px 0;
    border-radius: 8px;
  }
  .hero-text h1 {
    font-size: 1rem;
  }
  .hero-text .desc {
    font-size: 0.9rem;
  }
  .hero-form input,
  .hero-form select,
  .hero-form textarea {
    font-size: 0.9rem;
    padding: 8px 6px;
  }
  .hero-form button {
    font-size: 0.9rem;
    padding: 10px;
  }
}


/** End of Hero 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 **/