/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Segoe UI', sans-serif;
  height: 100%;
  color: #333;
}

/* Navigation Bar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo img {
  height: 70px; /* Resize logo to 70px */
  width: auto;  /* Keep aspect ratio */
}

/* Navigation links */
.nav-links a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #e4002b;
}

/* Hero Section */
.hero {
  display: flex;
  padding: 1rem 10rem;
  background-color: #ff0000;
}

.overlay img {
  height: 500px;
  border-radius: 30px;
}

.overlay {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  background-color: #ff0000;
  color: #fff;
  font-family: "Segoe UI";
  padding: 5rem 5rem;
}

.hero-text h1 {
  font-size: 48px;

}

.hero-text p {
  font-size: 18px
}

.donate-btn {
  background-color: #dc0000;
  color: white;
  position:absolute;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 30px;
  transition: background 0.3s ease;
  place-content: right;
}

.donate-btn:hover {
  background-color: #a61f1f;
}

/* Content Section */
.hero-comment .content {
  padding: 30px;
  text-align: center;
  background-color: #fff;
}

.hero-comment .content h2 {
  font-size: 30px;
  color: #ff0000;
  margin-bottom: 1rem;
}

.hero-comment .content h3 {
  font-size: 25px;
  color: black;
  margin-bottom: 1rem;
}
.hero-comment .content p {
  font-size: 20px;
  text-align: left;
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background-color: #a81313;
  color: black;
  text-align: center;
  padding: 20px;
  margin-top: 20px;
}
.footer contact-container{
  background-color:#a81313;
  color:black;
}
.footer h2{
  text-align: center;
  padding: 20px;
  text-decoration-style: double;
}

.Contact-Container {
  background-color: #fcabab;
}

.Contact-Container a {
  text-decoration: none;
  display: inline-block;
  height: 50px;
  width: 50px;
  background-color: #ff0000;
  margin: 0 10px 10px 0;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  color: black;
  transition: all 0.3s ease;
}

.Contact-Container a:hover {
  background-color: #fd5656;
  color: #fff;
}