:root {
  --primary-blue: #2F6FB7;
  --primary-gold: #FDDB12;
  --text-black: #1a1a1a;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-black);
  background: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.2;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo-container {
  display: flex;
  align-items: center;
  z-index: 1100;
}

.logo-container img {
  height: 60px;
  width: auto;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-black);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--primary-blue);
}

.donate-btn {
  background: var(--primary-blue);
  color: white !important;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.donate-btn::after {
  display: none;
}

.donate-btn:hover {
  background: var(--primary-gold);
  color: var(--text-black) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===== HAMBURGER BUTTON ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  gap: 5px;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.hamburger:hover {
  background: rgba(47, 111, 183, 0.08);
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text-black);
  border-radius: 3px;
  transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}

/* Hamburger → X animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
}

/* ===== HERO ===== */
.hero {
  margin-top: 90px;
  position: relative;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 4rem 4rem;
  background: linear-gradient(135deg, rgba(47, 111, 183, 0.95) 0%, rgba(26, 77, 143, 0.97) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(253, 219, 18, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(253, 219, 18, 0.1) 0%, transparent 40%);
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="1200" height="800" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  text-align: left;
  color: white;
  max-width: 650px;
  position: relative;
  z-index: 10;
  animation: fadeInUp 1s ease;
}

.hero-image-container {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInRight 1.2s ease;
}

.hero-image-wrapper {
  width: 100%;
  max-width: 550px;
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4); */
  /* border: 4px solid rgba(253, 219, 18, 0.3); */
  position: relative;
  /* background: linear-gradient(135deg, rgba(253, 219, 18, 0.2) 0%, rgba(47, 111, 183, 0.3) 100%); */
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.6;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary {
  padding: 1.1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: var(--primary-gold);
  color: var(--text-black);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(253, 219, 18, 0.5);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--primary-blue);
}

/* ===== SECTION BASE ===== */
section {
  padding: 5rem 2rem;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
  color: var(--text-black);
}

.section-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== DONATION ===== */
.donation-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #2F6FB7 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.donation-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(253, 219, 18, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.donation-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.donation-content .section-title {
  color: white;
}

.donation-content .section-description {
  color: rgba(255, 255, 255, 0.9);
}

.donation-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.donation-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2.5rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  text-align: center;
}

.donation-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.donation-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.donation-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.donation-card p {
  margin-bottom: 2rem;
  line-height: 1.6;
}

.donation-card .btn-primary {
  background: var(--primary-gold);
  color: var(--text-black);
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary-gold);
  font-family: "Cormorant Garamond", serif;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
  margin-top: 0.5rem;
}

/* ===== EVENT CALENDAR ===== */
.event-calendar {
  background: white;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.event-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border-left: 5px solid var(--primary-blue);
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.event-date {
  background: var(--primary-blue);
  color: white;
  padding: 1.5rem;
  text-align: center;
}

.event-day {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "Cormorant Garamond", serif;
}

.event-month {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-details {
  padding: 2rem;
}

.event-time {
  color: var(--primary-gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.event-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.event-description {
  color: #666;
  line-height: 1.6;
}

/* ===== BENEFITS ===== */
.benefits-section {
  padding: 80px 20px;
  background: #ffffff;
}

.benefits-section .container {
  max-width: 1140px;
  margin: 0 auto;
}

.benefits-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.benefits-section .section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #2F6FB7;
  margin-bottom: 12px;
}

.benefits-section .section-title {
  font-size: clamp(1.6rem, 3vw, 36px);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px;
  line-height: 1.2;
}

.benefits-section .section-description {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.benefits-section .benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.benefits-section .benefit-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 36px 24px 28px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.benefits-section .benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(47, 111, 183, 0.12);
  border-color: #2F6FB7;
}

.benefits-section .glass-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  background: #2F6FB7;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(47, 111, 183, 0.35);
}

.benefits-section .benefit-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px;
  line-height: 1.3;
}

.benefits-section .benefit-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.75;
  margin: 0;
}

/* ===== JOIN ===== */
.join-section {
  padding: 60px 40px !important;
  background: #f0f4fa !important;
  box-sizing: border-box !important;
}

.join-wrap {
  max-width: 1400px !important;
  width: 100% !important;
  margin: 0 auto !important;
  background: #ffffff !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  box-shadow: 0 12px 48px rgba(47, 111, 183, 0.15) !important;
  border: 1px solid #d0e2f4 !important;
  box-sizing: border-box !important;
}

.join-top-bar {
  height: 6px !important;
  background: linear-gradient(90deg, #2F6FB7 0%, #85B7EB 100%) !important;
  width: 100% !important;
  display: block !important;
}

.join-body {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  align-items: stretch !important;
  min-height: 560px !important;
  width: 100% !important;
}

.join-text {
  padding: 56px 52px !important;
  box-sizing: border-box !important;
}

.join-tag {
  display: inline-block !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: #2F6FB7 !important;
  margin-bottom: 16px !important;
}

.join-title {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem) !important;
  font-weight: 800 !important;
  color: #1a1a1a !important;
  margin: 0 0 18px !important;
  line-height: 1.2 !important;
  font-family: "Cormorant Garamond", serif !important;
}

.join-para {
  font-size: 14px !important;
  color: #666666 !important;
  line-height: 1.85 !important;
  margin-bottom: 16px !important;
  font-family: "Plus Jakarta Sans", sans-serif !important;
}

.join-highlights {
  list-style: none !important;
  padding: 0 !important;
  margin: 24px 0 36px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.join-highlights li {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  font-size: 14px !important;
  color: #333333 !important;
  font-weight: 500 !important;
  padding: 0 !important;
  font-family: "Plus Jakarta Sans", sans-serif !important;
}

.join-highlights li::before {
  display: none !important;
}

.join-chk {
  width: 24px !important;
  height: 24px !important;
  border-radius: 6px !important;
  background: #EBF3FC !important;
  border: 1.5px solid #2F6FB7 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  color: #2F6FB7 !important;
}

.join-btn {
  display: inline-block !important;
  background: #2F6FB7 !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  padding: 15px 30px !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(47, 111, 183, 0.35) !important;
  transition: background 0.3s ease, transform 0.2s ease !important;
  border: none !important;
  font-family: "Plus Jakarta Sans", sans-serif !important;
}

.join-btn:hover {
  background: #1a4a8a !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
}

.join-image {
  position: relative !important;
  overflow: hidden !important;
  min-height: 560px !important;
}

.join-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  border-radius: 0 !important;
}

.join-info-card {
  position: absolute !important;
  bottom: 28px !important;
  right: 28px !important;
  background: #ffffff !important;
  border-radius: 16px !important;
  padding: 18px 24px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18) !important;
  border-left: 5px solid #2F6FB7 !important;
  min-width: 190px !important;
  z-index: 2 !important;
}

.join-ic-title {
  font-size: 12px !important;
  color: #888888 !important;
  margin-bottom: 5px !important;
  font-weight: 500 !important;
}

.join-ic-val {
  font-size: 18px !important;
  font-weight: 800 !important;
  color: #1a1a1a !important;
}

@media (max-width: 1024px) {
  .join-body {
    grid-template-columns: 1fr !important;
  }

  .join-image {
    min-height: 350px !important;
  }
}

@media (max-width: 768px) {
  .join-section {
    padding: 40px 20px !important;
  }

  .join-text {
    padding: 36px 28px !important;
  }

  .join-image {
    min-height: 280px !important;
  }
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 80px 20px;
  background: #f7f8fc;
}

.testimonials-section .container {
  max-width: 1140px;
  margin: 0 auto;
}

.testimonials-section .section-header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials-section .section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #2F6FB7;
  margin-bottom: 12px;
}

.testimonials-section .section-title {
  font-size: clamp(1.6rem, 3vw, 36px);
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 14px;
  line-height: 1.2;
}

.testimonials-section .section-description {
  font-size: 16px;
  color: #666;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid #ebebeb;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(47, 111, 183, 0.12);
  border-color: #2F6FB7;
}

.big-quote {
  font-size: 52px;
  font-weight: 900;
  color: #E6F1FB;
  line-height: 1;
  margin-bottom: 4px;
}

.testimonial-text {
  font-size: 14px;
  color: #444;
  line-height: 1.85;
  font-style: italic;
  flex: 1;
  margin-bottom: 24px;
}

.testimonial-divider {
  height: 1px;
  border: none;
  border-top: 1px dashed #e0e0e0;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2F6FB7 0%, #5a9fd4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(47, 111, 183, 0.3);
}

.author-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 3px;
}

.author-info span {
  font-size: 12px;
  color: #2F6FB7;
  font-weight: 600;
  letter-spacing: 0.3px;
}
/* ===== TORAH STUDY ===== */
.torah-section {
  padding: 80px 40px !important;
  background: #ffffff !important;
  box-sizing: border-box !important;
}

.torah-inner {
  max-width: 1400px !important;
  width: 100% !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
}

.torah-header {
  text-align: center !important;
  margin-bottom: 52px !important;
  width: 100% !important;
  display: block !important;
}

.torah-tag {
  display: inline-block !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: #2F6FB7 !important;
  margin-bottom: 12px !important;
  font-family: "Plus Jakarta Sans", sans-serif !important;
}

.torah-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem) !important;
  font-weight: 800 !important;
  color: #1a1a1a !important;
  margin: 0 0 14px !important;
  line-height: 1.2 !important;
  font-family: "Cormorant Garamond", serif !important;
  display: block !important;
}

.torah-desc {
  font-size: 15px !important;
  color: #888888 !important;
  max-width: 520px !important;
  margin: 0 auto !important;
  line-height: 1.75 !important;
  font-family: "Plus Jakarta Sans", sans-serif !important;
  display: block !important;
}

/* KEY FIX — using flexbox instead of grid */
.torah-flex {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 56px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.torah-img-wrap {
  position: relative !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  height: 500px !important;
  min-width: 0 !important;
  flex: 1 1 50% !important;
  box-shadow: 0 12px 40px rgba(47, 111, 183, 0.15) !important;
}

.torah-img-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

.torah-img-badge {
  position: absolute !important;
  top: 20px !important;
  left: 20px !important;
  background: #2F6FB7 !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
  border-radius: 20px !important;
  z-index: 2 !important;
  font-family: "Plus Jakarta Sans", sans-serif !important;
}

.torah-content {
  flex: 1 1 50% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

.torah-content-title {
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #1a1a1a !important;
  margin: 0 0 16px !important;
  line-height: 1.3 !important;
  font-family: "Cormorant Garamond", serif !important;
  display: block !important;
}

.torah-content-para {
  font-size: 14px !important;
  color: #666666 !important;
  line-height: 1.85 !important;
  margin-bottom: 14px !important;
  font-family: "Plus Jakarta Sans", sans-serif !important;
  display: block !important;
}

.torah-schedule {
  margin-top: 24px !important;
  margin-bottom: 28px !important;
  width: 100% !important;
  display: block !important;
}

.torah-schedule-title {
  font-size: 13px !important;
  font-weight: 800 !important;
  color: #1a1a1a !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin-bottom: 14px !important;
  font-family: "Plus Jakarta Sans", sans-serif !important;
  display: block !important;
}

.torah-pills {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  width: 100% !important;
}

.torah-pill {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  background: #f7f8fc !important;
  border: 1px solid #e8e8e8 !important;
  border-radius: 10px !important;
  padding: 12px 18px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.torah-pill:hover {
  border-color: #2F6FB7 !important;
  box-shadow: 0 4px 12px rgba(47, 111, 183, 0.1) !important;
}

.torah-day {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #2F6FB7 !important;
  font-family: "Plus Jakarta Sans", sans-serif !important;
}

.torah-time {
  font-size: 12px !important;
  color: #666666 !important;
  font-family: "Plus Jakarta Sans", sans-serif !important;
}

.torah-btn {
  display: inline-block !important;
  background: #2F6FB7 !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  padding: 14px 28px !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(47, 111, 183, 0.35) !important;
  transition: background 0.3s ease, transform 0.2s ease !important;
  font-family: "Plus Jakarta Sans", sans-serif !important;
  border: none !important;
  margin-top: 4px !important;
}

.torah-btn:hover {
  background: #1a4a8a !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
}

@media (max-width: 1024px) {
  .torah-flex {
    flex-direction: column !important;
    gap: 36px !important;
  }

  .torah-img-wrap {
    height: 360px !important;
    flex: none !important;
    width: 100% !important;
  }

  .torah-content {
    flex: none !important;
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  .torah-section {
    padding: 60px 20px !important;
  }

  .torah-img-wrap {
    height: 280px !important;
  }

  .torah-pill {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
  }
}

/* ===== SPECIAL EVENTS ===== */
.special-events {
  background: white;
}

.events-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* .event-showcase-card {
  background: var(--bg-light);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
} */

/* .event-showcase-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
} */

.event-image {
  height: 220px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-gold) 100%);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
}



.event-tag {
  display: inline-block;
  background: var(--primary-gold);
  color: var(--text-black);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.event-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.event-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ===== BLOG ===== */
.blog-section {
  background: var(--bg-light);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-image {
  height: 220px;
  background: linear-gradient(135deg, rgba(47, 111, 183, 0.8) 0%, rgba(253, 219, 18, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  background-size: cover;
  background-repeat: no-repeat;

}

.blog-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #666;
  flex-wrap: wrap;
}

.blog-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.read-more {
  color: var(--primary-blue);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.read-more:hover {
  gap: 1rem;
}

/* ===== FOOTER ===== */
footer {
  background: var(--text-black);
  color: white;
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.newsletter-section {
  text-align: center;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 3rem;
}

.newsletter-section h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.newsletter-section p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 1rem;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: white;
  font-size: 1rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  padding: 1rem 2rem;
  background: var(--primary-gold);
  color: var(--text-black);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-column h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-gold);
}

.footer-copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablet */
@media (max-width: 1024px) {
  .nav-links {
    gap: 1.5rem;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 2rem;
    min-height: auto;
    text-align: center;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-image-container {
    margin-top: 2rem;
  }

  .hero-image-wrapper {
    max-width: 450px;
    height: 480px;
    margin: 0 auto;
  }

  .join-content,
  .torah-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .join-section {
    background: var(--bg-white);
  }

  .join-image {
    height: 350px;
  }

  .benefits-section .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.desktop-img img,
.mobile-img img {
  width: 100%;
}

.mobile-img {
  display: none;
}

.love-compassion .row {
  display: flex;
  justify-content: space-between;
}

.love-compassion .col-md-4 {
  width: 30%;
}

.love-compassion .col-md-8 {
  width: 69%;
}

.love-compassion .section-title::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -20px;
  background-color: #0370d1;
  width: 140px;
  height: 4px;

}
.quote-icon{display: none;}
/* Mobile */
@media (max-width: 768px) {
  .desktop-img {
    display: none;
  }
  .love-compassion .col-md-4,
  .love-compassion .col-md-8{
    width: 100%;
  }

  .mobile-img,
  .love-compassion .row  {
    display: block;
  }

  /* Show hamburger, hide desktop nav */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 100px 2rem 2rem;
    gap: 0;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1050;
    overflow-y: auto;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    width: 100%;
  }

  .nav-links a::after {
    display: none;
  }

  .donate-btn {
    margin-top: 1.5rem;
    display: inline-block;
    text-align: center;
    border-radius: 50px;
  }

  /* Mobile overlay */
  .mobile-overlay {
    display: block;
    pointer-events: none;
  }

  .mobile-overlay.active {
    pointer-events: all;
  }

  /* Hero */
  .hero {
    padding: 2rem 1.5rem;
    margin-top: 82px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .hero-image-wrapper {
    height: 380px;
  }

  /* Sections */
  section {
    padding: 3.5rem 1.25rem;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .section-description {
    font-size: 1rem;
  }

  /* Donation */
  .donation-cards {
    grid-template-columns: 1fr;
  }

  .impact-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Calendar */
  .calendar-grid {
    grid-template-columns: 1fr;
  }

  /* Benefits */
  .benefits-section .benefits-grid {
    grid-template-columns: 1fr;
  }

  /* Join */
  .join-section {
    background: var(--bg-white);
  }

  .join-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .join-image {
    height: 280px;
  }

  .join-text h2 {
    font-size: 2rem;
  }

  /* Testimonials */
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  /* Torah */
  .torah-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .torah-image {
    height: 280px;
  }

  /* Events */
  .events-showcase {
    grid-template-columns: 1fr;
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: 1fr;
  }

  /* Schedule */
  .schedule-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .schedule-day {
    min-width: unset;
  }

  /* Footer */
  .footer-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .nav-container {
    padding: 0.85rem 1.25rem;
  }

  .logo-container img {
    height: 48px;
  }

  .hero {
    padding: 1.5rem 1rem;
  }

  .hero-image-wrapper {
    height: 300px;
  }

  .impact-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.9rem 1.75rem;
    font-size: 0.95rem;
  }

  .event-image {
    height: 180px;
    font-size: 3rem;
  }

  .blog-image {
    height: 180px;
  }

  .testimonial-card {
    padding: 1.75rem;
  }
}