/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}

body {
  background-color: #f4f4f4;
  color: #333;
  scroll-behavior: smooth;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #0441a4;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-left {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 80px; /* Increased logo size */
  width: auto;
  margin-right: 15px;
}

.trust-title {
  font-size: 1.6em;
  font-weight: bold;
  color: white;
}

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

.nav-right ul li {
  display: inline;
}

.nav-right ul li a {
  text-decoration: none;
  color: white;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.nav-right ul li a:hover {
  color: #ffcc00;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 60px;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 185%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  color: white;
  padding: 0 20px;
  animation: fadeIn 1.5s ease-in-out;
}

.hero h1 {
  font-size: 3em;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.hero .btn {
  background-color: #ffcc00;
  color: #333;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1.2em;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero .btn:hover {
  background-color: #ffd633;
  transform: scale(1.05);
}

/* Sections */
.mission,
.overview,
.help,
.contact {
  background-color: #fff;
  padding: 60px 0;
  text-align: center;
  scroll-margin-top: 80px;
}

.mission h2,
.overview h2,
.help h2,
.contact h2 {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.mission p,
.overview p,
.help p,
.contact p {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;

}

.mission ,  .overview{
  background: linear-gradient(135deg, #033080, #0441a4, #022060);
  color: white;
  padding: 80px 0;
  text-align: center;
  border-radius: 10px;
}

/* Updated Image Styling */
.mission-img {
  width: 85%; /* Increase the size */
  max-width: 300px; /* Limit max size */
  border-radius: 15px; /* Smooth corners */
  display: block;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
/* Hover Effects */
.mission-img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
  filter: brightness(1.1);
}

/* Updated Image Styling */
.overview-img {
  width: 80%; /* Made smaller */
  max-width: 371px; /* Added max width */
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

/* Hover Effects */
.overview-img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1);
}

/* Gallery Section */
.gallery {
  background: linear-gradient(135deg, #033080, #0441a4, #022060);
  color: white;
  padding: 60px 0;
}

.gallery h2 {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.gallery p {
  font-size: 1.2em;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 30px;
}

.gallery img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

/* DONATE SECTION */
.donate {
  background: linear-gradient(135deg, #033080, #0441a4, #022060);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.donate h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.donate p {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 30px;
}

.donate-btn {
  background-color: #ffcc00;
  color: #333;
  padding: 15px 30px;
  border: none;
  font-size: 1.2em;
  cursor: pointer;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.donate-btn:hover {
  background-color: #ffd633;
  transform: scale(1.05);
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, #033080, #0441a4, #022060);
  
  padding: 60px 0;
  text-align: center;
}

.contact h2 {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.contact ul {
  list-style-type: none;
  padding: 0;
}

.contact li {
  font-size: 1.3em;
  margin: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact a {
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.contact a:hover {
  color: #0056b3;
}

/* Contact Icons */
.contact-icon {
  width: 24px;  
  height: 24px;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.contact-icon:hover {
  transform: scale(1.2);
}

/* Scroll Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* FOOTER */
footer {
  background-color: #0441a4;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 1.1em;
}

footer a {
  text-decoration: none;
}

/* Smaller Facebook Icon */
.footer-icon {
  width: 18px;  /* Reduced from 24px */
  height: 18px;
  margin: 0 5px;
  transition: transform 0.3s ease;
}

.footer-icon:hover {
  transform: scale(1.2);
}



/* Responsive Design */
@media (max-width: 767px) {
  .nav-logo {
    height: 50px;
  }

  .trust-title {
    font-size: 1.3em;
  }

  .nav-right ul {
    flex-direction: column;
    gap: 10px;
    text-align: right;
  }

  .hero h1 {
    font-size: 2em;
  }

  .hero p {
    font-size: 1em;
  }

  .gallery img {
    max-width: 100%;
  }

  .donation-options {
    flex-direction: column;
  }
}
/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}

body {
  scroll-behavior: smooth;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #0441a4;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-left {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 80px;
  width: auto;
}

.nav-right {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-right li {
  display: inline;
}

.nav-right li a {
  text-decoration: none;
  color: white;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  background: white;
  height: 4px;
  width: 30px;
  margin: 5px 0;
}

@media (max-width: 768px) {
  .nav-right {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    background: #0441a4;
  }

  .nav-right.show {
    display: flex;
    flex-direction: column;
  }

  .hamburger {
    display: flex;
  }
}

/* Our Mission and Museum Overview */
.mission, .overview {
  background: linear-gradient(135deg, #033080, #0441a4, #022060);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.mission-img, .overview-img {
  width: 85%;
  max-width: 700px;
  border-radius: 15px;
}

.contact {
  background-color: #022060;
  color: white;
  padding: 50px 20px;
}

/* Footer */
footer {
  background-color: #033080;
  color: white;
  text-align: center;
  padding: 20px;
}

.footer-icon {
  width: 18px;
}

.hero-content.fade-in {
  color: #f0f71c; /* Dark text */
  /* Remove any text-shadow that might affect readability on a light background */
  text-shadow: none;
}

.footer-icon {
  width: 24px;
  height: 24px;
  margin: 0 5px;
  transition: transform 0.3s ease;
}

.footer-icon:hover {
  transform: scale(1.2);
}

/* Flex container for the contact section */
.contact-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px; /* Adjust gap between content and image */
}

/* Ensure contact content takes available space */
.contact-content {
  flex: 1;
}

/* Style for the side image container */
.contact-image {
  flex: 0 0 auto;
  /* Optional: set a max-width if needed */
  max-width: 300px;
}

/* Ensure the image scales responsively */
.contact-image img {
  width: 100%;
  height: auto;
}

/* Maintain your existing contact styles if any */
.contact h2 {
  margin-bottom: 20px;
}

.contact ul {
  list-style: none;
  padding: 0;
}

.contact li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.contact-icon:hover {
  transform: scale(1.2);
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  background: white;
  height: 4px;
  width: 30px;
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Container styling to use flex layout */
.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px; /* optional spacing between sections */
  flex-wrap: wrap; /* allow wrapping on smaller screens */
}

/* Left image section */
.contact-left-image {
  flex: 1; /* Adjusts the width relative to other sections */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Styling for the left image (if not already inline) */
.contact-left-image img {
  max-width: 80%; /* This makes it a bit smaller than the other images */
  height: auto;
}

/* Contact content styling */
.contact-content {
  flex: 2; /* Gives more space for the main content */
  text-align: center;
}

/* Right image section */
.contact-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Optional: Ensure images in the right section fit nicely */
.contact-image img {
  max-width: 100%;
  height: auto;
}

/* Responsive adjustments (if needed) */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}


/* Mobile View */
@media (max-width: 768px) {
  .nav-right {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    background: #0441a4;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }

  .nav-right.show {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero-img {
    width: 100%;   /* Fixed width */
    height: 100%;   /* Maintain aspect ratio */
  }

}
