/* ===== CSS VARIABLES ===== */
:root {
  /* Theme Colors */
  --primary-orange: #FF6B35;
  --secondary-orange: #F4A261;
  --accent-orange: #E76F51;
  --saffron: #F4C430;
  --deep-saffron: #FF9933;
  --bg-primary: #FFEFE2;
  --bg-secondary: #FFEFE6;
  --bg-white: #FFFFFF;
  --text-primary: #2D1B0E;
  --text-secondary: #8B4513;
  --text-light: #A0522D;
  --border-light: #F5DEB3;
  --border-medium: #DEB887;
  /* Common */
  --border-radius: 6px;
  --large-radius: 16px;
  --box-shadow-light: 0 2px 12px rgba(251, 191, 36, 0.2);
  --box-shadow-strong: 0 4px 32px rgba(251, 191, 36, 0.13);
}

/* ===== BASE STYLES ===== */
body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Serrif', serif;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  color: var(--text-primary);
  line-height: 1.6;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (max-width: 700px) {
  .container {
    width: 98%;
    height: auto !important;
    padding-left: 8px;
    padding-right: 8px;
    max-width: 100%;
    
  }
}

/* ===== HEADER TOP: Logo Centered, Contact & Social Right ===== */
header {
  background:#FFEFE2;
  padding: 0;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.08);
  width: 100%;
}

/* Top Row: Logo Center, Contact & Social Right */
.header-top {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 0 10px;
  position: relative;
}

.logo {
  flex: 1;
  display: flex;
  justify-content: center;
}

.logo img {
  width: 56px;
  height: 56px;
  max-width: 100%;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: block;
  object-fit: contain;
}

/* Contact & Social Icons right-aligned */
.header-contact-social {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 30px;
  align-items: center;
}

.header-contact {
  background: #f4e9df;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 500;
  color: #333;
  font-size: 1rem;
  margin-right: 18px;
}


.social-icons {
  color: #351828 !important ;
  font-size: 30px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap : 10px;
}
.social-icons a:hover {
  color: #b12a17;
}

@media (max-width: 700px) {
  .header-contact-social {
    position: static;
    transform: none;
    justify-content: flex-end;
    margin-top: 8px;
    gap: 8px;
  }
}


/* ===== NAVIGATION BAR: Horizontal, Dark Background ===== */
.navbar {
  background: #3c2331;
  width: 100%;
  margin :0 auto;
  box-shadow: 0 2px 10px rgba(60, 35, 49, 0.08);
  height: 500px;
  padding-top: 15px;    /* Add or increase this */
  padding-bottom: 3px;
  overflow: visible   ;
}

@media (max-width: 900px) {
  .navbar {
    height: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
  }
}


.navbar-bg {
  background: #3c2331;
  width: 90%;
  margin :0 auto;
  box-shadow: 0 2px 10px rgba(60, 35, 49, 0.08);
  height: 60px;
  padding-top: 20px;    /* Add or increase this */
  padding-bottom: 0px;
  overflow: visible   ;
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 2px;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0 8px;
}

.nav-menu li a {
  color: #c9a79c;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  background: transparent;
  border: none;
  box-shadow: none;
  margin: 0 3px;
}

.nav-menu li a.active,
.nav-menu li a:hover {
  color: #f3b008;
  background: #56344b;
}

/* Donate button highlighted */
.nav-menu li a.donate-btn {
  background: #ff7a2f;
  color: #fff !important;
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 26px;
  margin-left: 12px;
  transition: background 0.2s;
}
.nav-menu li a.donate-btn:hover {
  background: #e65c00;
  color: #fff !important;
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: flex !important;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  z-index: 2100;
}
.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: #3c2331;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== RESPONSIVE NAVIGATION ===== */
@media screen and (max-width: 900px) {
  .header-top {
    flex-direction: column;
    align-items: center;
    padding: 12px 0 8px 0;
  }
  .header-contact-social {
    position: static;
    transform: none;
    margin-top: 10px;
    justify-content: center;
  }
  .navbar {
    background: #3c2331;
  }
  .navbar-bg{
    height: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .nav-menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    background: #fff;
    text-align: center;
    box-sizing: border-box;
    transition: left 0.3s;
    box-shadow: 0 10px 27px rgba(0,0,0,0.05);
    z-index: 2000;
    padding-top: 100px !important;
    padding-bottom: 48px;
    gap: 0;
    display: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-menu li {
    margin: 18px 0;
    width: 100%;
  }
  .nav-menu li a {
    display: block;
    margin: 0 16px;
    padding: 14px 20px;
    width: calc(100% - 32px);
    box-sizing: border-box;
    font-size: 1.15rem;
    border-radius: 8px;
  }
  .hamburger {
    display: flex;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2100;
    background: #fff;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 2px 8px #fbbf2433;
  }
  .social-icons {
    display: none;
  }
  .nav-menu li:last-child {
    margin-bottom: 60px !important;
  }
  body.menu-open {
    overflow: hidden;
  }
}

@media screen and (max-width: 600px) {
  .logo img { width: 40px; height: 40px; }
  .hamburger .bar { width: 20px; height: 2px; }
}


/* Donate button variation */
.nav-menu li a.btn {
  background: var(--saffron);
  color: var(--text-primary) !important;
  border-color: var(--saffron);
  font-weight: 700;
  padding: 10px 28px;
}
.nav-menu li a.btn:hover {
  background: var(--deep-saffron);
  color: var(--bg-white) !important;
  border-color: var(--deep-saffron);
}
/* Social icons */
.social-icons a img {
  width: 26px;
  margin-left: 10px;
  vertical-align: middle;
}


/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 500px;
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--accent-orange) 50%, var(--deep-saffron) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0 0 var(--large-radius) var(--large-radius);
  margin-bottom: 40px;
}
.hero-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 400px;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}
.hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--bg-white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 0.3em;
  font-weight: 700;
  letter-spacing: 1px;
}
.hero-text h2 {
  font-size: 1.4rem;
  font-weight: 400;
}

/* ===== INTRO ===== */
.intro {
  background: #ffffff;
  padding: 24px 0;
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
  border-radius: 0 0 var(--large-radius) var(--large-radius);
  color: var(--text-primary);
}

/* ===== INFO SECTIONS ===== */
.info-sections {
  display: flex;
  gap: 24px;
  margin-bottom: 30px;
  justify-content: space-between;
}
.info-card {
  background: var(--bg-white);
  border-radius: var(--large-radius);
  box-shadow: var(--box-shadow-light);
  padding: 25px;
  flex: 1;
  min-width: 220px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
}
.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(255,107,53,0.25);
  border-color: var(--secondary-orange);
}
.info-card h3 {
  color: var(--primary-orange);
  font-size: 1.3rem;
  margin-bottom: 15px;
}
.info-card img {
  width: 100%;
  max-width: 180px;
  margin-top: 14px;
  border-radius: 8px;
}

/* ===== GALLERY ===== */
.gallery {
  margin-bottom: 30px;
}
.gallery h3 {
  margin-bottom: 8px;
}
.gallery-grid {
  display: flex;
  gap: 18px;
  margin-top: 12px;
}
.gallery-grid img {
  width: 180px; height: 120px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--primary-orange);
}

/* ===== TEAM ===== */
.team {
  margin-bottom: 30px;
}
.team h3 {
  margin-bottom: 8px;
}
.team-grid {
  display: flex;
  gap: 18px;
}
.team-member {
  text-align: center;
}
.team-member img {
  width: 90px; height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-orange);
  margin-bottom: 8px;
}

/* ===== CALENDAR ===== */
.calendar-section {
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--box-shadow-light);
  padding: 18px;
  margin-bottom: 30px;
}
.calendar-table {
  width: 100%; border-collapse: collapse;
  margin-bottom: 14px; font-size: 1rem;
}
.calendar-table th,
.calendar-table td {
  border: 1px solid var(--primary-orange);
  padding: 8px 12px;
  text-align: left;
}
.calendar-table th {
  background: var(--secondary-orange);
}

/* ===== BUTTONS ===== */
.btn {
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--accent-orange) 100%);
  color: var(--bg-white);
  border: none;
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(255,107,53,0.3);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,53,0.4);
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--deep-saffron) 100%);
}

/* ===== TIMELINE ===== */
.timeline-wrapper {
  max-width: 420px;
  margin-left: 40px;
  background: #fcfcfc;
  border-radius: 0px;
  padding: 32px 18px;
}
.timeline-title {
  text-align: left;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: #3c2331;
  letter-spacing: 0.01em;
}
.timeline {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 28px;
  width: 4px;
  background: #ffe6c9;
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 38px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-marker {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #ffe6c9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #ff7a2f;
  box-shadow: 0 2px 8px #fbbf2433;
  margin-right: 18px;
}
.timeline-item.completed .timeline-marker {
  background: #30f44a;
  border-color: #ff7a2f;
  color: #fff;
}
.timeline-item.inprogress .timeline-marker {
  background: #f4a261;
  border-color: #e76f51;
  color: #fff;
}
.timeline-item.upcoming .timeline-marker {
  background: #fff;
  border-color: #ffe6c9;
  color: #ff7a2f;
}
.timeline-content {
  flex: 1;
  background: #fff;
  border-radius: 10px;
  padding: 12px 18px;
  box-shadow: 0 1px 6px #fbbf2433;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.timeline-label {
  font-size: 1.08rem;
  font-weight: 600;
  color: #3c2331;
  margin-bottom: 2px;
}
.timeline-status {
  font-size: 0.97rem;
  font-weight: 500;
  border-radius: 12px;
  padding: 2px 12px;
  display: inline-block;
  margin-top: 5px;
}
.timeline-status.completed {
  background: #30f44a;
  color: #3c2331;
}
.timeline-status.inprogress {
  background: #e76f51;
  color: #fff;
}
.timeline-status.upcoming {
  background: #ffe6c9;
  color: #a16207;
}
@media (max-width: 600px) {
  .timeline-wrapper { padding: 16px 4px; }
  .timeline-marker { width: 38px; height: 38px; min-width: 38px; font-size: 1.1rem; }
  .timeline-content { padding: 10px 10px; }
  .timeline-title { font-size: 1.08rem; }
}


/* ===== DONATION HERO ===== */
.donate-hero {
  position: relative;
  width: 100%;
  max-width: 950px;
  height: 500px;
  margin: 32px auto 0;
  border-radius: var(--large-radius);
  overflow: hidden;
  min-height: 340px;
  box-shadow: 0 2px 16px rgba(251,191,36,0.15);
  background: #1a0800;
  justify-content: center;
  align-items: flex-end;
}
.donate-hero-bg {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.92; z-index: 1;
}
.donate-hero-content {
  position: relative; z-index: 2;
  text-align: center; color: var(--bg-white);
  padding: 60px 20px 50px;
}
.donate-hero-content h1 {
  font-size: 2.6rem; font-weight: 700;
  margin-bottom: 18px; letter-spacing: 0.01em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
  margin-top: 200px;
}
.donate-hero-content p {
  font-size: 1.15rem; margin-bottom: 28px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.13);
}
.donate-hero-btn {
  background: var(--deep-saffron);
  color: var(--bg-white);
  padding: 14px 36px; border-radius: 8px;
  font-size: 1.18rem; font-weight: 600;
  box-shadow: 0 2px 12px rgba(251,191,36,0.2);
  transition: background 0.18s; text-decoration: none;
  display: inline-block;
}
.donate-hero-btn:hover {
  background: var(--accent-orange);
}

@media (max-width: 600px) {
  .donate-hero {
    height: auto;
    min-height: 165px;
    max-width: 100vw;
    margin: 10px 0 0 0;
    border-radius: 12px;
    
  }
  .donate-hero-content {
    padding: 24px 4vw 18px;
  }
  .donate-hero-content h1 {
    font-size: 1.15rem;
    margin-top: 36px;
    margin-bottom: 10px;
  }
  .donate-hero-content p {
    font-size: 0.99rem;
    margin-bottom: 18px;
  }
  .donate-hero-btn {
    font-size: 1rem;
    padding: 10px 22px;
  }
}

/* Progress bar */
.progress-bar-bg {
  width: 93%;
  height: 18px;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 8px;
  margin-left: 40px;
}
.progress-bar-fill {
  height: 100%;
  width: 30%; /* Set this to your progress percentage */
  background: #e6821e;
  transition: width 0.6s ease;
  border-radius: 10px 0 0 10px;
}
.progress-labels {
  display: flex;
  justify-content: space-between;
  width: 93%; /* or set to desired width */
  margin-left: 40px;
}
@media (max-width: 600px) {
  .progress-bar-bg,
  .progress-labels {
    width: 320px;          /* Use nearly full viewport */
    max-width: 100vw;
    font-size: 0.95rem;
    margin-left: 0;
  }
}

/* ===== Construction ===== */
.section-title {
  margin-left: 40px;
}
.support-title{
  margin-left: 40px;
}
.support-desc{
  margin-left: 40px;
}
.support-section img {
  width: 93%;         
  height: 500px;         
  display: block;       
  max-width: 100%;      
  border-radius: 12px;  
  margin-left: 40px;
}
@media (max-width: 700px) {
  .section-title,
  .support-title,
  .support-desc {
    margin-left: 0;
    padding-left: 8px;
    padding-right: 8px;
    box-sizing: border-box;
    text-align: left;   /* Or center, if you prefer */
  }
  .support-section img {
    width: 320px;               /* Almost full viewport width */

    height: auto;              /* Maintains image aspect ratio */
    margin-left: 0;
    margin-right: 0;
    display: block;
    border-radius: 10px;
  }
}




/* ===== DONATION METHODS ===== */
.donate-methods-section{
  margin-left: 40px;
  width: 925px;
}
.donate-section-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 18px; color: var(--text-primary); }
.donate-methods-grid { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 22px; }
.donate-method-card {
  flex: 1 1 220px; background: var(--bg-white);
  border: 1px solid var(--border-medium);
  border-radius: 10px; padding: 18px 16px;
  display: flex; gap: 12px; align-items: flex-start;
}
.donate-method-icon { font-size: 1.5rem; color: var(--accent-orange); }
.donate-method-detail { font-size: 0.98rem; color: var(--text-secondary); margin-top: 4px; }
.donate-receipt { margin: 14px 0 28px; font-size: 1rem; color: var(--text-secondary); display: flex; gap: 7px; }

/* ===== DONATION CONTRIBUTIONS ===== */
.donate-contribution-section { margin-top: 32px;
margin-left: 40px; width: 925px;}
.donate-contribution-grid { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 18px; }
.donate-contribution-card {
  flex: 1 1 220px; background: var(--bg-white);
  border: 1px solid var(--border-medium);
  border-radius: 10px; padding: 22px 16px 18px;
  display: flex; flex-direction: column; gap: 10px;
}
.donate-contribution-label { font-size: 1.04rem; font-weight: 600; color: var(--text-primary); }
.donate-contribution-amount { font-size: 2rem; font-weight: 700; color: var(--text-primary); }
.donate-contribution-btn {
  background: var(--bg-white); color: var(--text-secondary);
  border: none; border-radius: 8px; padding: 12px 0;
  font-size: 1.07rem; font-weight: 600;
  transition: background 0.18s, color 0.18s;
}
.donate-contribution-btn:hover {
  background: var(--primary-orange); color: var(--bg-white);
}
.donate-custom-input {
  width: 100%; padding: 10px 12px;
  font-size: 1.08rem; border: 2px solid var(--border-light);
  border-radius: 7px; outline: none;
  transition: border-color 0.2s;
}
.donate-custom-input:focus { border-color: var(--primary-orange); }


.donate-contribution-card {
  flex: 1 1 220px;
  background: var(--bg-white);
  border: 1px solid var(--border-medium);
  border-radius: 10px;
  padding: 22px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px; /* Ensures spacing between input and button */
}

.donate-custom-input {
  width: 100%;
  padding: 10px 12px;
  font-size: 1.08rem;
  border: 2px solid var(--border-light);
  border-radius: 7px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.donate-contribution-btn {
  background: var(--bg-white);
  color: var(--text-secondary);
  border: none;
  border-radius: 8px;
  padding: 12px 0;
  font-size: 1.07rem;
  font-weight: 600;
  transition: background 0.18s, color 0.18s;
  margin-top: 6px; /* Optional: extra space above button */
}

.donate-contribution-btn:hover {
  background: var(--primary-orange);
  color: var(--bg-white);
}


@media (max-width: 800px) {
  .donate-main-box{
    width: 95%;
  }
  .donate-methods-section,
  .donate-contribution-section {
    padding: 0 6px;
    max-width: 100%;
  }
  .donate-methods-grid,
  .donate-contribution-grid {
    flex-direction: column;
    gap: 14px;
  }
  .donate-method-card,
  .donate-contribution-card {
    min-width: 0;
    width: 85%;
    padding: 14px 10px;
  }
}

@media (max-width: 600px) {
  .donate-amount-row {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  .donate-contribution-btn {
    width: 100%;
  }
}


/* ===== TESTIMONIALS ===== */
.donor-testimonials {
  background: #ffffff; border-radius: 0px;
  padding: 32px 24px 24px; margin: 32px auto;
  max-width: 700px; font-family: inherit;
}
.donor-testimonials h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 24px; color: var(--text-primary); }
.testimonial { margin-bottom: 32px; border-bottom: 1px solid #f0e6d6; padding-bottom: 18px; }
.testimonial:last-child { border-bottom: none; margin-bottom: 0; }
.testimonial-header { display: flex; gap: 18px; align-items: center; margin-bottom: 4px; }
.testimonial-name { font-weight: 600; color: var(--text-primary); }
.testimonial-date { color: var(--text-secondary); font-size: 0.96rem; }
.testimonial-stars { color: var(--deep-saffron); font-size: 1.18rem; margin-bottom: 8px; }
.testimonial-comment { font-size: 1.07rem; color: var(--text-primary); margin-bottom: 12px; }
.testimonial-actions { display: flex; gap: 18px; color: var(--text-secondary); font-size: 1.07rem; }

/* ===== SIMPLE DONATION FORM ===== */
.simple-donation-form {
  background: #ffffff; border-radius: 10px;
  padding: 32px 24px 24px; margin: 32px auto; max-width: 500px;
}
.simple-donation-form h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 24px; color: var(--text-primary); }
.simple-donation-form form { display: flex; flex-direction: column; gap: 18px; }
.simple-donation-form label { font-size: 1.03rem; font-weight: 500; color: var(--text-primary); margin-bottom: 4px; }
.simple-donation-form input,
.simple-donation-form select,
.simple-donation-form textarea {
  background: var(--bg-primary); border: 2px solid var(--border-medium);
  border-radius: 7px; padding: 13px 14px;
  font-size: 1.05rem; color: var(--text-secondary);
}
.simple-donation-form input:focus,
.simple-donation-form select:focus,
.simple-donation-form textarea:focus {
  outline: none; box-shadow: 0 0 0 3px rgba(255,107,53,0.1); background: var(--bg-white);
}
.simple-donation-form textarea { resize: vertical; min-height: 80px; }
.donate-submit-btn {
  background: var(--deep-saffron); color: var(--bg-white);
  border: none; border-radius: 7px; padding: 12px 0;
  font-size: 1.08rem; font-weight: 600; transition: background 0.18s;
}
.donate-submit-btn:hover { background: var(--accent-orange); }
.donation-note { margin-top: 18px; font-size: 0.98rem; color: var(--text-secondary); text-align: center; }

/* ===== DONATION MAIN BOX ===== */
.donate-main-box {
  max-width: 1080px; margin: 1cm auto; background: var(--bg-white);
  border-radius: 0px; box-shadow: var(--box-shadow-strong);
  padding: 1cm; display: flex; flex-direction: column; gap: 35px;
  border: 0px solid var(--border-light); box-sizing: border-box;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #FFEFE2;
  color: #6d5c50;
  padding: 22px 0 10px 0;
  text-align: center;
  font-size: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 50px;        
  margin-bottom: 25px;
}

.footer-links a {
  color: #6d5c50;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.18s;
}

.footer-links a:hover {
  color: #2d1a0e;
  text-decoration: underline;
}

.footer-copyright {
  font-size: 0.98rem;
  margin-top: 6px;
}



/* ===== MEDIA QUERIES ===== */
@media screen and (max-width: 900px) {
  .header-flex { padding: 0 16px; }
  .nav-menu {
    position: fixed; left: -100%; top: 80px;
    flex-direction: column; width: 100%; text-align: center;
    padding: 20px 0; gap: 0; box-shadow: 0 10px 27px rgba(0,0,0,0.05);
  }
  .nav-menu.active { left: 0; }
  .nav-menu li { margin: 8px 0; }
  .nav-menu li a { width: calc(100% - 32px); margin: 8px 16px; padding: 12px 20px; }
  .hamburger { display: flex; }
  .social-icons { display: none; }
}
@media screen and (max-width: 700px) {
  .hero { height: 300px; }
  .hero-img { height: 300px; }
  .hero-text h1 { font-size: 2rem; }
  .donate-hero { min-height: 210px; max-width: 99vw; }
  .donate-hero-content { padding: 36px 8px 28px; }
}
@media screen and (max-width: 600px) {
  .timeline-marker { width: 30px; height: 30px; }
  .logo img { width: 45px; height: 45px; }
  .nav-menu { top: 70px; }
  .hamburger .bar { width: 20px; height: 2px; }
}

/* Hero carousel */
.hero-carousel, .carousel {
  position: relative;
  width: 1150px;
  height: 500px;
  min-height: 300px;
  overflow: visible;
  border: 4px #00000000;   
  border-radius: 0px; 
  margin: -450px auto 0 auto ;        /* Center the carousel */
  z-index: 20;
}

.carousel-images {
  width: 100%;
  height: 100%;
  position: relative;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  top: 0; left: 0;
  display: flex;
}

.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0 auto;
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  transition: opacity 0.7s;
  z-index: 1;
}

.carousel-img.active {
  opacity: 1;
  z-index: 2;
}

.carousel-text {
  position: absolute;
  left: 50%;
  bottom: 7%;
  transform: translateX(-50%);
  background: none;            /* No background */
  padding: 0;                  /* Remove padding */
  border-radius: 0;            /* Remove border radius */
  text-align: center;
  z-index: 10;
  box-shadow: none;            /* No shadow */
  width: 100%;                 /* Optional: ensures text is centered across the carousel */
  text-shadow: 0 2px 8px rgba(0,0,0,0.45); /* For readability */
}

.carousel-text h1,
.carousel-text h2 {
  margin: 0;
  color: #fff;                 /* White text */
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 700;
  text-shadow:
    2px 0 0 #ff7a2f,
    -2px 0 0 #ff7a2f,
    0 2px 0 #ff7a2f,
    0 -2px 0 #ff7a2f,
    1.5px 1.5px 0 #ff7a2f,
    -1.5px -1.5px 0 #ff7a2f,
    1.5px -1.5px 0 #ff7a2f,
    -1.5px 1.5px 0 #ff7a2f,
    0 2px 8px rgba(0,0,0,0.45);
}

.carousel-text h4 {
  font-family: 'Oleo Script Swash Caps', cursive;
  color: #fff;
  font-weight: 700; /* or 400 for normal */
  letter-spacing: 1px;
}


.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #efedff;
  color: #a16207;
  border: none;
  padding: 12px 18px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  z-index: 20;
  box-shadow: 0 2px 8px #fbbf2433;
}

.carousel-btn.prev { left: 32px; }
.carousel-btn.next { right: 32px; }

@media (max-width: 900px) {
  .hero-carousel, .carousel {
    width: 99vw;
    max-width: 100vw;
    height: 52vw;
    max-height: 320px;
    min-height: 120px;
    margin-top: 12px;
  }
  .carousel-text{font-size: 0.1rem;}
    
  
}




/*Alignment (All)*/
.centered-text {
  text-align: center;
}

h3 {
  font-size: 2.0rem;   /* Increase this value as needed */
  font-weight: 600;
  margin: 28px 0 10px 0;
}

/*Learn Ayyappa Section*/
.learn-ayyappa-section {
  background: #FFEFE2;
  padding: 32px 0;
  margin-bottom: 75px;
  margin-top: 100px;
}
@media (max-width: 900px) {
  .learn-ayyappa-section{
    background: #ffffff;
  }
}

.about-container {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 16px;
  background: #ffffff;
}

.ayyappa-card {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px #fbbf2433;
  padding: 18px 20px 18px 18px;
  margin-bottom: 16px;
}

.ayyappa-card img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 16px;
  background: #ffe6c9;
}

.ayyappa-card .card-title {
  font-weight: 600;
  font-size: 1.08rem;
  margin-bottom: 4px;
}

.ayyappa-card .card-desc {
  color: #d97706;
  font-size: 0.97rem;
  margin-bottom: 0;
}

.ayyappa-card .read-more-btn {
  margin-left: 18px;
  background: #fff6ed;
  color: #a16207;
  border: 1px solid #fbbf24;
  border-radius: 6px;
  padding: 7px 16px;
  font-size: 0.98rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s;
}

.ayyappa-card .read-more-btn:hover {
  background: #ffe6c9;
}

.sabarimala-card {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px #fbbf2433;
  padding: 18px 20px 18px 18px;
  margin-bottom: 22px;
}

.sabarimala-card img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 16px;
  background: #ffe6c9;
}

.sabarimala-card .card-title {
  font-weight: 600;
  font-size: 1.08rem;
  margin-bottom: 4px;
}
.sabarimala-card .card-desc {
  color: #444;
  font-size: 0.97rem;
  margin-bottom: 0;
}

.vratham-steps {
  display: flex;
  gap: 18px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.vratham-step {
  flex: 1 1 200px;
  background: #fff;
  border: 1.5px solid #ffe6c9;
  border-radius: 10px;
  padding: 16px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.vratham-step span {
  font-size: 1.3rem;
  color: #d97706;
  margin-bottom: 7px;
}
.vratham-step .step-title {
  font-weight: 600;
  margin-bottom: 4px;
}
.vratham-step .step-desc {
  font-size: 0.97rem;
  color: #444;
}

.journey-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px #fbbf2433;
  padding: 18px 20px 18px 18px;
  margin-bottom: 14px;
}
.journey-card img {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  object-fit: cover;
  margin-right: 18px;
  background: #ffe6c9;
}
.journey-card .card-title {
  font-weight: 600;
  font-size: 1.08rem;
  margin-bottom: 4px;
}
.journey-card .card-desc {
  font-size: 0.97rem;
  color: #444;
}

.ayyappa-quote {
  margin: 18px 0 0 0;
  text-align: center;
  font-size: 1.06rem;
  color: #a16207;
}

.ayyappa-btn-wrap {
  margin-top: 18px;
  text-align: center;
}
.ayyappa-btn {
  background: #ff7847;
  color: #fff;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 1.08rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 2px 12px #fbbf2433;
  transition: background 0.15s;
}
.ayyappa-btn:hover {
  background: #d97706;
}

.full-section-container {
  background: #ffffff; 
  border: 2px solid #ffffff; /* Orange border */
  border-radius: 20px;        /* Rounded corners */
  box-shadow: 0 4px 24px rgba(255, 122, 47, 0.10); /* Subtle shadow */
  padding: 40px 24px;         /* Inner spacing */
  margin: 40px auto;          /* Space around the container */
  max-width: 1100px;          /* Limit width for readability */
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .learn-ayyappa-section {
    padding: 24px 0;
    margin-bottom: 40px;
    margin-top: 60px;
    background: #fff; /* Already present, just for clarity */
  }

  .about-container,
  .full-section-container {
    max-width: 100%;
    padding: 0 8px;
  }

  .vratham-steps {
    gap: 10px;
    margin-bottom: 18px;
  }

  .ayyappa-card,
  .sabarimala-card,
  .journey-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 12px;
  }

  .ayyappa-card img,
  .sabarimala-card img,
  .journey-card img {
    margin: 0 0 12px 0;
  }
}

@media (max-width: 600px) {
  .learn-ayyappa-section {
    padding: 16px 0;
    margin-top: 32px;
    margin-bottom: 24px;
  }

  .about-container,
  .full-section-container {
    padding: 0 2px;
    border-radius: 12px;
    margin: 12px auto;
  }

  .vratham-steps {
    flex-direction: column;
    gap: 6px;
  }

  .vratham-step {
    min-width: 0;
    width: 80%;
    padding: 12px 10px;
    border-radius: 7px;
  }

  .ayyappa-card,
  .sabarimala-card,
  .journey-card {
    flex-direction: column;
    align-items: stretch;
    padding: 10px 8px;
    margin-bottom: 10px;
    border-radius: 9px;
  }

  .ayyappa-card img,
  .sabarimala-card img {
    width: 30px;
    height: 30px;
    margin: 0 0 10px 0;
    border-radius: 50%;
  }

  .journey-card img {
    width: 34px;
    height: 34px;
    margin: 0 0 10px 0;
    border-radius: 7px;
  }

  .ayyappa-card .read-more-btn,
  .ayyappa-btn {
    font-size: 0.95rem;
    padding: 9px 16px;
  }

  .ayyappa-quote {
    font-size: 0.97rem;
    margin-top: 10px;
  }
}

  
/* Footer */
footer {
  background: #fff7ef;
  border-top: 2px solid #ffffff;
  padding: 18px 0;
  text-align: center;
  color: #a16207;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

/*Gallery Container*/
.gallery-card-container {
  background: #fff;
  border: 2px solid #ffffff;
  border-radius: 0px;
  box-shadow: 0 4px 24px rgba(255, 122, 47, 0.10);
  padding: 0px 24px;
  height: 650px;
  margin: 1.2cm auto;
  max-width: 1100px;      
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  width: 100%;
  box-sizing: border-box;
}
.gallery-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0px;
  box-shadow: 0 2px 10px #e2c7b1a8;
  background: #eee;
  display: block;
  border: 0;
}


.gallery-card-container:hover {
  box-shadow: 0 8px 32px rgba(255, 122, 47, 0.16);
}

.gallery-title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 24px;
  color: #000000;
  letter-spacing: 0.01em;
}
/* Gallery Responsive*/
@media (max-width: 700px ) {
  .gallery-card-container {
    padding: 16px 4px;
    max-width: 95%;
    overflow-y: auto;
  }
  .gallery-title {
    font-size: 1.1rem;
  }
}

/*Map*/
@media (max-width: 600px) {
  .map-container {
    max-width: 50%;        
    max-height: 50%;
    margin: 24px auto 0;
    border-radius: 8px;     
    padding-bottom: 66%;    
  }
}


