/*********************************
 * RESET & GLOBAL STYLES
 *********************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Georgia', 'Times New Roman', serif, -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: linear-gradient(135deg, #1a0d2e 0%, #2d1b4e 50%, #1a0d2e 100%);
  background-attachment: fixed;
  color: #f5f5f5;
  overflow-x: hidden;
  position: relative;
}

/* Ramadan-themed background pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}


section {
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1rem;
  position: relative;
}

section ul {
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
}

section ul li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  color: #e8e8e8;
  font-size: 1.1rem;
  line-height: 1.8;
}

section ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: #d4af37;
  font-size: 1.2rem;
}

/*********************************
 * NAVBAR
 *********************************/

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(135deg, rgba(26, 13, 46, 0.95) 0%, rgba(45, 27, 78, 0.95) 100%);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center; /* Center logo */
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3), 0 0 40px rgba(212, 175, 55, 0.1);
  z-index: 999;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.nav-logo {
  font-size: 1.8rem;
  color: #d4af37;
  font-weight: bold;
  text-align: center;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links li a {
  color: #f5f5f5;
  text-decoration: none;
  padding: 0.5rem 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 8px;
  position: relative;
}

.nav-links li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #f4d03f);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links li a:hover {
  color: #d4af37;
  background-color: rgba(212, 175, 55, 0.1);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.nav-links li a:hover::before {
  width: 80%;
}

/* 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: #d4af37;
  font-weight: bold;
  margin-left: 200px;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.6), 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

@media only screen and (max-width: 600px) {
  .navbar-title {
    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(135deg, #1a0d2e 0%, #2d1b4e 30%, #1a0d2e 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3rem;
  text-align: center;
  color: #f5f5f5;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-section::after {
  content: '✦';
  position: absolute;
  font-size: 2rem;
  color: rgba(212, 175, 55, 0.3);
  animation: twinkle 3s ease-in-out infinite;
  top: 10%;
  left: 10%;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* Centering Content */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  height: 940px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Hero Image */

.hero-image {
  
  

  
  align-items: center;
  max-width: 600px;
  object-fit: contain;
  margin-bottom: 4rem;
  border-radius: 15px;
  box-shadow: 
    0 10px 40px rgba(212, 175, 55, 0.4),
    0 0 60px rgba(212, 175, 55, 0.2),
    inset 0 0 30px rgba(212, 175, 55, 0.1);
  border: 3px solid rgba(212, 175, 55, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image:hover {
  transform: scale(1.02);
  box-shadow: 
    0 15px 50px rgba(212, 175, 55, 0.5),
    0 0 80px rgba(212, 175, 55, 0.3),
    inset 0 0 40px rgba(212, 175, 55, 0.15);
}


/* Title and Subtitle Styling */
.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #ff6b35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
  font-weight: bold;
  letter-spacing: 2px;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
  }
  to {
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
  }
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #e8e8e8;
  line-height: 1.8;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Call-to-Action Button */
.cta-btn {
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
  background-size: 200% 200%;
  color: #1a0d2e;
  padding: 1.5rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 
    0 5px 20px rgba(212, 175, 55, 0.4),
    0 0 30px rgba(212, 175, 55, 0.2);
  border: 2px solid rgba(212, 175, 55, 0.5);
  animation: gradient-shift 3s ease infinite;
  letter-spacing: 1px;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 10px 30px rgba(212, 175, 55, 0.6),
    0 0 50px rgba(212, 175, 55, 0.4);
  background-position: 100% 50%;
}






/*********************************
 * SECTIONS STYLING
 *********************************/
.about-section, .importance-section, .objectives-section, 
.spirit-section, .misconceptions-section {
  background: linear-gradient(135deg, rgba(26, 13, 46, 0.9) 0%, rgba(45, 27, 78, 0.9) 100%);
  color: #f5f5f5;
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.about-section::before, .importance-section::before, .objectives-section::before,
.spirit-section::before, .misconceptions-section::before {
  content: '✦';
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 1.5rem;
  color: rgba(212, 175, 55, 0.3);
  animation: twinkle 4s ease-in-out infinite;
}

.section-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
  position: relative;
  z-index: 1;
}

.section-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  font-weight: bold;
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.section-content p {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  color: #e8e8e8;
  text-align: justify;
}

.section-content h3 {
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #d4af37;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/*********************************
 * REMINDERS SECTION
 *********************************/
.reminders-section {
  background: linear-gradient(135deg, rgba(26, 13, 46, 0.95) 0%, rgba(45, 27, 78, 0.95) 100%);
  color: #f5f5f5;
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
}

.reminders-section::before {
  content: '✦';
  position: absolute;
  top: 3rem;
  left: 10%;
  font-size: 2rem;
  color: rgba(212, 175, 55, 0.3);
  animation: twinkle 3s ease-in-out infinite;
}

.reminders-section h2 {
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reminders-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.reminder-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(255, 107, 53, 0.15) 100%);
  backdrop-filter: blur(10px);
  color: #f5f5f5;
  width: 280px;
  padding: 2rem;
  border-radius: 15px;
  transition: all 0.4s ease;
  border: 2px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.reminder-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.reminder-card:hover::before {
  opacity: 1;
}

.reminder-card:hover {
  cursor: pointer;
  box-shadow: 
    0 10px 40px rgba(212, 175, 55, 0.5),
    0 0 60px rgba(212, 175, 55, 0.3);
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.6);
}

.reminder-text {
  font-size: 1.1rem;
  color: #f5f5f5;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

/*********************************
 * 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: linear-gradient(135deg, rgba(26, 13, 46, 0.95) 0%, rgba(45, 27, 78, 0.95) 100%);
  color: #f5f5f5;
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
}

.contact-section h2 {
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 10px;
  background: rgba(26, 13, 46, 0.5);
  color: #f5f5f5;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  background: rgba(26, 13, 46, 0.7);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(245, 245, 245, 0.6);
}

.submit-btn {
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
  background-size: 200% 200%;
  color: #1a0d2e;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  border: 2px solid rgba(212, 175, 55, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
  animation: gradient-shift 3s ease infinite;
  letter-spacing: 1px;
}

.submit-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
  background-position: 100% 50%;
}

/*********************************
 * FOOTER SECTION
 *********************************/
.footer-section {
  background: linear-gradient(135deg, rgba(26, 13, 46, 0.98) 0%, rgba(45, 27, 78, 0.98) 100%);
  color: #f5f5f5;
  padding: 3rem 1rem;
  text-align: center;
  border-top: 2px solid rgba(212, 175, 55, 0.3);
  position: relative;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-content p {
  color: #e8e8e8;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-lantern {
  width: 80px;
  margin-top: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.footer-lantern:hover {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
}

.hidden-prayer {
  display: none;
  margin-top: 1.5rem;
  color: #d4af37;
  font-style: italic;
  font-size: 1.1rem;
  padding: 1rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Ramadan-themed blockquote styling */
blockquote {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(255, 107, 53, 0.1) 100%);
  border-left: 6px solid #d4af37;
  border-right: 2px solid rgba(212, 175, 55, 0.3);
  padding: 25px 30px;
  margin: 30px 0;
  font-style: italic;
  color: #f5f5f5;
  position: relative;
  border-radius: 10px;
  box-shadow: 
    0 5px 20px rgba(212, 175, 55, 0.2),
    inset 0 0 20px rgba(212, 175, 55, 0.05);
  font-size: 1.15rem;
  line-height: 1.8;
}

blockquote::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 60px;
  color: #d4af37;
  position: absolute;
  top: -10px;
  left: 15px;
  opacity: 0.5;
  line-height: 1;
}

blockquote::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, transparent);
  margin-top: 20px;
  border-radius: 2px;
}



/* Additional Ramadan-themed enhancements */
.hero-title, .section-content h2 {
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

/* Smooth transitions for all interactive elements */
a, button {
  transition: all 0.3s ease;
}

/* Enhanced mobile responsiveness */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-content h2 {
    font-size: 2rem;
  }
  
  .reminder-card {
    width: 100%;
    max-width: 300px;
  }
  
  .navbar-title {
    font-size: 1.2rem;
  }
  
  .cta-btn {
    padding: 1.2rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-content {
    padding: 0.5rem;
  }
  
  .section-content h2 {
    font-size: 1.8rem;
  }
  
  .navbar {
    padding: 0.75rem 1rem;
  }
  
  .nav-logo-img {
    max-height: 80px;
  }
}