/*********************************
 * RESET & GLOBAL STYLES
 *********************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  scroll-behavior: smooth;
  background-color: #f0fcfc;
  color: #1a1a1a;
  overflow-x: hidden;
}


section {
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1rem;
}

/*********************************
 * NAVBAR
 *********************************/

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(90deg, #45D1E1, #C8F3F7);
  display: flex;
  justify-content: center; /* Center logo */
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.nav-logo {
  font-size: 1.8rem;
  color: #1b2b55;
  font-weight: bold;
  text-align: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links li a {
  color: #1b2b55;
  text-decoration: none;
  padding: 0.5rem;
  font-weight: 600;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.nav-links li a:hover {
  color: #189eae;
  background-color: #ebfafb;
  border-radius: 5px;
}

/* Logo image styling */
.navbar-left {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  max-height: 120px;
  width: auto;
  margin-right: 1rem;
}


/* Title in the center */
.navbar-title {
  flex: 1;
  text-align: center;
  font-size: 1.5rem;
  color: #1b2b55; /* or whichever color you'd like */
  font-weight: bold;
  margin-left: 200px;
  @media only screen and (max-width: 600px)  {
    margin-left: 0px;
  }
    
  
}

/* Updated .nav-links to the right */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin-left: auto; /* pushes the nav links to the right */
}


/*********************************
 * NAVBAR (Desktop & Mobile)
 *********************************/


/* Hide the navigation links on smaller screens */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .navbar {
    justify-content: center; /* Ensures logo remains centered */
  }
}


/*********************************
 * HERO SECTION
 *********************************/
/*.hero-section {
  background: linear-gradient(180deg, #45D1E1, #C8F3F7);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #1b2b55;
  padding-top: 4rem;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #555;
}

.cta-btn {
  background: linear-gradient(90deg, #23d5ab, #03c8a8);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(35, 213, 171, 0.4);
}
*/

-----------------------------------------
/* Hero Section */

/* Hero Section */


.hero-section {
  background: linear-gradient(180deg, #45D1E1, #C8F3F7);
  min-height: 100vh; /* Ensures it covers full screen but not excessively */
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3rem;
  text-align: center;
  color: #1b2b55;
}

/* Centering Content */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  height: 940px;
  margin: 0 auto;
}

/* Hero Image */

.hero-image {
  
  

  
  align-items: center;
  max-width: 600px;
  
  object-fit: contain; /* Ensures the whole image is displayed */
  margin-bottom: 4rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


/* Title and Subtitle Styling */
.hero-title {
  font-size: 2rem;
  margin-bottom: 1rem; /* Adds spacing between title and subtitle */
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 1.5rem; /* Adds spacing before the quote */
  text-align: center;
}

/* Call-to-Action Button */
.cta-btn {
  background: linear-gradient(90deg, #23d5ab, #03c8a8);
  color: #fff;
  padding: 1.5rem 2.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
  background-color: #d4af37;
  box-shadow: 0 0 10px #d4af37;
}






/*********************************
 * SECTIONS STYLING
 *********************************/
.about-section, .importance-section, .objectives-section, 
.spirit-section, .misconceptions-section {
  background: #C8F3F7;
  color: #1a1a1a;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}

.section-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/*********************************
 * REMINDERS SECTION
 *********************************/
.reminders-section {
  background: linear-gradient(180deg, #C8F3F7, #45D1E1);
  color: #1b2b55;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.reminders-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.reminder-card {
  background-color: #ffffff;
  color: #5c4033;
  width: 250px;
  padding: 1rem;
  border-radius: 10px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.reminder-card:hover {
  cursor: pointer;
  box-shadow: 0 0 20px rgba(24, 158, 174, 0.2);
  transform: translateY(-5px);
}

.reminder-text {
  font-size: 1rem;
  color: #1a1a1a;
}

/*********************************
 * CHARITY SECTION
 *********************************/
.charity-section {
  background: linear-gradient(180deg, #45D1E1, #C8F3F7);
  color: #1a1a1a;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.charity-infographics {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.charity-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
}

.charity-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 0.5rem;
}

.charity-label {
  font-weight: 600;
}

.donate-btn {
  background: linear-gradient(90deg, #23d5ab, #03c8a8);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 30px;
  margin-top: 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.donate-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(35, 213, 171, 0.4);
}

/*********************************
 * CONTACT SECTION
 *********************************/
.contact-section {
  background: #1b2b55;
  color: #ebfafb;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #23d5ab;
  border-radius: 5px;
  background: #fff;
  color: #1a1a1a;
  font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #777;
}

.submit-btn {
  background: linear-gradient(90deg, #23d5ab, #03c8a8);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(35, 213, 171, 0.4);
}

/*********************************
 * FOOTER SECTION
 *********************************/
.footer-section {
  background-color: #1b2b55;
  color: #ebfafb;
  padding: 2rem 1rem;
  text-align: center;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer-lantern {
  width: 60px;
  margin-top: 1rem;
  cursor: pointer;
}

.hidden-prayer {
  display: none;
  margin-top: 1rem;
  color: #ffffff;
  font-style: italic;
}

/* Ramadan-themed blockquote styling */
blockquote {
  background: #f9f3e9; /* Soft beige for a warm feel */
  border-left: 6px solid #d4af37; /* Golden accent */
  padding: 20px;
  margin: 20px 0;
  font-style: italic;
  color: #5a4a32; /* Soft brown for readable, elegant text */
  position: relative;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

blockquote::before {
  content: "ﷺ";
  font-family: "Arial", sans-serif; /* You can replace with an icon font if available */
  font-size: 40px;
  color: #d4af37;
  position: absolute;
  top: -10px;
  left: 10px;
}

blockquote::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #d4af37;
  margin-top: 15px;
}



/*@media (max-width: 768px) {
  .navbar {
    display: none;
  }
  
}*/