@charset "utf-8";
/* CSS Document */

.site-body {
  min-height: 100vh;
  background-color: rgb(254, 253, 251);
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

 @font-face {
        font-family: Inter;
        font-weight: 600;
        src: url("de0f26b20c7d4078e8a2e759168409443818bfb2.woff2")
          format("woff2");
      }
 @font-face {
        font-family: Inter;
        font-weight: 500;
        src: url("6edadb43781cd767dad7a489f4419cda83713f8e.woff2")
          format("woff2");
      }

.site-header .navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  z-index: 50;
}

.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.navbar-brand {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem; 
}


.logo {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-image: linear-gradient(to bottom right, #d4a574, #8b4513);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo .icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-left: 0.50rem;
  color: #fff;
}


.site-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75rem;
  color: rgb(160, 50, 63);
  margin: 0;
}
.site-subtitle {
  font-size: 0.75rem;
  line-height: 1rem;
  color: rgb(75, 85, 99);
  margin: 0;
}


.navbar-links {
  display: none;
  gap: 2rem;
  align-items: center;
}
.navbar-links li {
  list-style: none;
}
.nav-link {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(55, 65, 81);
  text-decoration: none;
  transition: color 0.15s ease-in-out;
}
.nav-link:hover {
  color: rgb(194, 154, 58);
}
.nav-link.active {
  color: rgb(194, 154, 58);
  border-bottom: 2px solid rgb(194, 154, 58);
}


.navbar-toggle {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
}
.navbar-toggle .icon {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
  color: rgb(55, 65, 81);
}

@media (min-width: 768px) {
  .navbar-links { display: flex; }
  .navbar-toggle { display: none; }
}


.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.navbar-links.show {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  width: 200px;
  padding: 1rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}


*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero__slide--active {
  opacity: 1;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;

}

.hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 0 1rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  color: white;
  font-size: 0.875rem;
  font-weight: 300;
}

.hero__title {
  font-size: 50px;
  font-weight: 700;
  color: rgb(180, 13, 63);
  margin-top: 1.5em;
  margin-bottom: 20px;
  line-height: 1.15;
  text-shadow: 2px 2px 3px black;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 50px;
  }
}

@media (min-width: 568px) {
  .hero__badge { margin-top: 3rem; }
}

.hero__title .highlight {
  color: rgb(236, 203, 13);
}

.hero__subtitle {
  font-size: 1.5rem;
  line-height: 1.5rem;
  max-width: 50rem;
  margin: 10px auto 0.5rem;
  color: black;
  font-weight: 300;
}

@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 1.5rem;
    line-height: 1.4rem;
  }
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn2 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(to right, #f2d967, #d4a574);
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn--primary:hover {
  background: linear-gradient(to right, #d4a574, #c29a3a);
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
  backdrop-filter: blur(4px);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.05);
}


.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.hero__scroll-indicator button {
  color: rgba(255, 255, 255, 0.7);
  animation: bounce 1s infinite;
  transition: color 0.3s ease;
}

.hero__scroll-indicator button:hover {
  color: white;
}


.hero__pagination {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}
.hero__pagination .dot {
  border: none;
  outline: none;
  cursor: pointer;
}
.hero__pagination .dot:focus {
  outline: none;
  box-shadow: none;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.dot--active {
  background: rgb(248, 232, 150);
}


@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}


.icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
}

.icon1 {
  width: 1.25rem;
  height: 1.25rem;
  color: rgb(248 232 150);
}

.icon-chevron {
  width: 2rem;
  height: 2rem;
}
.btn {
  border: none;
  outline: none;
}

.btn:focus {
  outline: none;
  box-shadow: none;
}


.about-section {
  padding: 6rem 1rem;
  background: linear-gradient(to bottom right, #fdf2f8, #fff, #faf5ff);
}
.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}


.about-header {
  text-align: center;
  margin-bottom: 4rem;
}
.about-header .label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(to right, #fef9e7, #fce7f3);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  color: rgb(193, 60, 75);
  font-size: 0.875rem;
}
.about-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: rgb(160, 50, 63);
  margin: 2rem 0;
}
.about-header p {
  font-size: 1.25rem;
  color: rgb(55, 65, 81);
  line-height: 1.75rem;
  max-width: 56rem;
  margin: 0 auto;
}


.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}
.about-content figure {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}
.about-content figure img {
  width: 100%;
  height: 350px;
  border-radius: 1.5rem;
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
  border: 4px solid #fff;
}
.about-content h3 {
  display: flex;
  align-items: center;
  font-size: 1.875rem;
  font-weight: 700;
  color: rgb(160, 50, 63);
  margin-bottom: 2rem;
}
.about-content p {
  color: rgb(55, 65, 81);
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 1.5rem;
}


.about-values {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .about-content { grid-template-columns: 1fr 1fr; }
  .about-values { grid-template-columns: repeat(3, 1fr); }
}

.card {
  text-align: center;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
  background: #fff;
}


.card.gold {
  background: linear-gradient(to bottom right, rgb(254, 252, 247), #fdf2f8 );
}


.card.green {
  background: linear-gradient(to bottom right, rgb(236, 253, 246), rgb(240, 253, 250));
}


.card.burgundy {
  background: linear-gradient(to bottom right,rgb(251, 245, 254), rgb(252, 241, 248));
}

.card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgb(160, 50, 63);
  margin-bottom: 1.5rem;
}
.card p {
  color: rgb(55, 65, 81);
  line-height: 1.625;
}


.icons { width: 1rem; height: 1rem; }
.icon-g { width: 2rem; height: 2rem;  margin-right: 0.75rem; color: rgb(212 165 116); }
.icon-w { width: 1rem; height: 1rem; color: rgb(255 255 255); }
.icon-w2 { width: 3rem; height: 3rem; color: rgb(255 255 255); }
.icon-s { width: 1.25rem; height: 1.25rem; margin-right: 0.5rem; }
.icon-lg { width: 2rem; height: 2rem; margin-right: 0.75rem; color: rgb(212 165 116); }
.icon-lg2 { width: 2rem; height: 2rem; color:  rgb(255 255 255); }
.icon-circle {
  width: 5rem; height: 5rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  box-shadow: 0 8px 12px rgba(0,0,0,0.1);
}
.icon-circle.gold { background: linear-gradient(to bottom right, #f2d967, #d4a574); }
.icon-circle.green { background: linear-gradient(to bottom right, #10b981, #2d5a3d); }
.icon-circle.burgundy { background: linear-gradient(to bottom right, #e2727a, #8b4513); }
.icon-circle svg { color: #fff; }

.community-section {
  padding: 6rem 1rem;
  background: linear-gradient(to bottom right, #fff1f2, #fdf2f8, #fefdf6);
}

.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.community-header {
  text-align: center;
  margin-bottom: 4rem;
}

.community-header .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(to right, #fce7f3, #fef9e7);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  color: rgb(193, 60, 75);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.community-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: rgb(160, 50, 63);
  margin-bottom: 2rem;
}

.community-header p {
  font-size: 1.25rem;
  color: rgb(55, 65, 81);
  max-width: 56rem;
  margin: 0 auto;
  line-height: 1.625;
  font-weight: 300;
}

.community-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .community-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.community-benefits h3 {
  display: flex;
  align-items: center;
  font-size: 1.875rem;
  font-weight: 700;
  color: rgb(160, 50, 63);
  margin-bottom: 2rem;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefits-list .icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  margin-top: 0.25rem;
}

.icon.gold { background: linear-gradient(to bottom right, #f2d967, #d4a574); }
.icon.green { background: linear-gradient(to bottom right, #34d399, #10b981); }
.icon.burgundy { background: linear-gradient(to bottom right, #c13c4b, #a0323f); }

.benefits-list h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: rgb(160, 50, 63);
  margin-bottom: 0.75rem;
}

.benefits-list p {
  color: rgb(75, 85, 99);
  line-height: 1.625;
}

.community-cta {
  background: linear-gradient(to bottom right, #fff, #fdf2f8);
  border: 1px solid #fce7f3;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  text-align: center;
}

.community-cta .cta-icon {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #f2d967, #f472b6);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.community-cta h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: rgb(160, 50, 63);
  margin-bottom: 1.5rem;
}

.community-cta p {
  color: rgb(75, 85, 99);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.625;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
  background: linear-gradient(to right, #f2d967, #f472b6);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  width: 90%;

}


.cta-button:hover {
  transform: scale(1.03);
}

.community-cta small {
  display: block;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgb(107, 114, 128);
}


.mentorship-section {
  padding: 6rem 1rem;
  background: linear-gradient(to bottom right, #faf5ff, #fff, #fdf2f8);
}

.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}


.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(to right, #f3e8ff, #fce7f3);
  color: #c13c4b;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #a0323f;
  margin-bottom: 2rem;
}

.section-header p {
  max-width: 56rem;
  margin: 0 auto;
  font-size: 1.25rem;
  color: #374151;
  line-height: 1.6;
  font-weight: 300;
}


.mentorship-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .mentorship-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mentorship-card {
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}


.mentorship-card.gold {
  background: linear-gradient(to bottom right, #fefdf6, #fdf2f8);
  border: 1px solid #fef9e7;
}

.mentorship-card.emerald {
  background: linear-gradient(to bottom right, #ecfdf5, #f0fdfa);
  border: 1px solid #d1fae5;
}

.mentorship-card.burgundy {
  background: linear-gradient(to bottom right, #faf5ff, #fdf2f8);
  border: 1px solid #ede9fe;
}

.mentorship-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #a0323f;
  margin-bottom: 1.5rem;
}

.mentorship-card p {
  color: #374151;
  line-height: 1.6;
  font-size: 1.125rem;
}


.icon-wrapper {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.gold .icon-wrapper {
  background: linear-gradient(to bottom right, #f2d967, #d4a574);
}

.emerald .icon-wrapper {
  background: linear-gradient(to bottom right, #10b981, #2d5a3d);
}

.burgundy .icon-wrapper {
  background: linear-gradient(to bottom right, #e2727a, #8b4513);
}

.icon-lgg {
  width: 2rem;
  height: 2rem;
  color: #fff;
}


.mentorship-cta {
  background: linear-gradient(to right, #8b4513, #db2777, #C3943E);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  color: #fff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  .mentorship-cta {
    padding: 4rem;
  }
}

.cta2-icon {
  margin-bottom: 1.5rem;
}

.icon-xl {
  width: 4rem;
  height: 4rem;
  opacity: 0.9;
  margin: 0 auto;
}

.icon-hp {
  width: 5.4rem;
  height: 5.4rem;
  opacity: 0.9;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}


.mentorship-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.mentorship-cta p {
  max-width: 56rem;
  margin: 0 auto 2.5rem;
  font-size: 1.25rem;
  line-height: 1.6;
  opacity: 0.95;
}

.cta2-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta2-buttons {
    flex-direction: row;
  }
}

.btn2-primary,
.btn2-secondary {
  padding: 1rem 2.5rem;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn2-primary {
  background: #fff;
  color: #a0323f;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  border: none;
  outline: none;
}

.btn2-primary:hover {
  background: #fefdf6;
  transform: scale(1.05);
}

.btn2-secondary {
  border: 2px solid #fff;
  background: #DB4975;
  color: #fff;
}

.btn2-secondary:hover {
  background: rgba(255,255,255,0.15);
  transform: scale(1.05);
}


.events-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom right, #eef2ff, #faf5ff, #fdf2f8);
}

.container2 {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.sec-header {
  text-align: center;
  margin-bottom: 4rem;
}

.sec-header .badge2 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(to right, #e0e7ff, #f3e8ff);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  color: #c13c4b;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.sec-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #a0323f;
  margin-bottom: 2rem;
}

.sec-header p {
  font-size: 1.25rem;
  color: #374151;
  line-height: 1.625;
  font-weight: 300;
  max-width: 56rem;
  margin: 0 auto;
}

.events-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.event-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
              0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border-left: 6px solid transparent;
  transition: box-shadow 0.3s ease;
}

.event-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
              0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.event-card header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.event-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #a0323f;
}

.events-grid h3 {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #a0323f;
}

.tag {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  background: #f9fafb;
}

.gold-tag { background: linear-gradient(to right, #fef9e7, #fcf2c4); color: #b58900; }
.emerald-tag { background: linear-gradient(to right, #d1fae5, #a7f3d0); color: #047857; }
.burgundy-tag { background: linear-gradient(to right, #fdeeee, #fcd5d5); color: #c13c4b; }

.event-card p {
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.625;
}

.event-date {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #6b7280;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
  margin-right: 0.25rem;
}

.category-grid {
  display: grid;
  gap: 1rem;
}

.category-card {
  padding: 2rem;
  border-radius: 1rem;
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
              0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.category-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
              0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.gold-gradient { background: linear-gradient(to right, #EED168, #D4A773); }
.emerald-gradient { background: linear-gradient(to right, #34d399, #10b981); }
.burgundy-gradient { background: linear-gradient(to right, #EC979C, #E2747C); }
.purple-gradient { background: linear-gradient(to right, #c084fc, #ec4899); }

.category-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.category-card p {
  opacity: 0.95;
  line-height: 1.625;
}


.view {
  margin-top: 2rem;
  text-align: center;
}

.calendar-btn {
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  background: linear-gradient(to right, #F2C46E, #F475AF);
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: none;
  outline: none;
}

.calendar-btn:hover {
  background: linear-gradient(to right, #d4a574 , #ec4899);
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}


.icon-bg {
  width: 1rem;
  height: 1rem;
}

.icon-ev {
  width: 2rem;
  height: 2rem;
  margin-right: 0.25rem;
  color: #d4a574;
}

.events-grid h3 {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.events-grid .event-card {
  margin-bottom: 1.75rem;
}
.events-grid .event-card:last-child {
  margin-bottom: 0;
}

.contact-section {
  padding: 6rem 1rem;
  background: linear-gradient(to bottom right, #c13c4b, #be185d, #a47d31);
  color: #fff;
}

.con-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.sec-header {
  text-align: center;
  margin-bottom: 4rem;
}

.badge3 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.titlez {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.subtitlez {
  font-size: 1.25rem;
  opacity: 0.95;
  max-width: 56rem;
  margin: 0 auto;
  line-height: 1.625;
  font-weight: 300;
}

.grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.con-subtitlez {
	display: flex;
	align-items: center;
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
	}

.options-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.option-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.con-box {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.option-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.option-text {
  font-size: 1.125rem;
  opacity: 0.95;
}

.support-box {
  margin-top: 3rem;
}

.support-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.support-text {
  opacity: 0.95;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.con-button {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-don,
.btn-part {
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: 0.3s ease;
  cursor: pointer;
}

.btn-don {
  background: #fff;
  color: #a0323f;
  border: none;
}

.btn-don:hover {
  background: #fefdf6;
  transform: scale(1.05);
}

.btn-part {
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
}

.btn-part:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.sub-button {
  padding: 1rem 2rem;
  background-color: rgb(255 255 255);
  border-radius: 9999px;
  color: rgb(160 50 63);
  font-weight: 600;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  width: 100%;
  border: none;
}
	
.sub-button:hover {
  background-color: rgb(254 253 246);
  transform: scale(1.05);
}

.submit-text {
	display: flex;
	align-items: center;
	justify-content: center;
	}

.contact-form {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.form-group input,
textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  backdrop-filter: blur(4px);
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

textarea {
  resize: none;
}

.con-icon {
  width: 1rem;
  height: 1rem;
}

.con-icon2 {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
}

.con-icon3 {
  width: 2rem;
  height: 2rem;
}

.con-icon4 {
  width: 2rem;
  height: 2rem;
  margin-right: 0.75rem;
}

.footer {
  background-image: linear-gradient(to right, #872C39, #97303C, #72502B);
  color: #fff;
  padding: 4rem 1rem;
}

.footer__container {
  max-width: 72rem;
  margin: 0 auto;
  text-align: center;
}

.footer__logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer__logo-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(to bottom right, #f2d967, #ec4899);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1),
              0 4px 6px -4px rgba(0,0,0,0.1);
}
.footer__logo-icon .icon {
  width: 3.5rem;
  height: 3.5rem;
  margin-left: 0.50rem;
  color: #fff;
}

.footer__title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-right: 10rem;
}

.footer__subtitle {
  font-size: 0.875rem;
  opacity: 0.9;
  margin: 0;
}

.footer__tagline p {
  font-size: 1.25rem;
  font-weight: 300;
  opacity: 0.95;
  max-width: 48rem;
  margin: 0 auto 2rem;
}

.footer__legal p {
  font-size: 1.125rem;
  opacity: 0.8;
  margin: 0;
}

/* About Us Page */

.about-container {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .about-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .about-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.about-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.about-section-hero {
  color: #fff;
  text-align: center;
  background-image: linear-gradient(to right, #8b4513, #db2777, #c29a3a);
}

.about-section-light {
  background-image: linear-gradient(to bottom right, #fefdfb, #fdf2f8, #faf5ff);
  color: #374151;
}


.about-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 500;
  font-size: 0.875rem;
}

.about-hero__title {
  font-weight: 700;
  margin: 1.25rem 0 2rem;
  font-size: 3rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .about-hero__title {
    font-size: 3.75rem;
  }
}

.hero__lead {
  font-size: 1.25rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 300;
  line-height: 1.625;
}

.lead-highlight {
  color: #f8e896;
}

.story__header {
  text-align: center;
  margin-bottom: 4rem;
}

.story__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.875rem;
  background-image: linear-gradient(to right, #fef9e7, #fce7f3);
  color: #c13c4b;
}

.story__title {
  font-weight: 700;
  font-size: 2.25rem;
  margin-top: 1rem;
  color: #a0323f;
}

.story__content {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem;
  line-height: 1.75;
  color: #374151;
}

.story__content p + p {
  margin-top: 2rem;
}


.about-icon {
  width: 1.25rem;
  height: 1.25rem;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


.mission-section {
  padding: 6rem 1rem;
  background: linear-gradient(to bottom right, #fff1f2, #fdf2f8, #fefdf6);
}

@media (min-width: 640px) {
  .mission-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .mission-section {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.mission-container {
  max-width: 72rem;
  margin: 0 auto;
}

.mission-header {
  text-align: center;
  margin-bottom: 4rem;
}

.mission-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(to right, #ffe4e6, #fef9e7);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  color: rgb(193, 60, 75);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.mission-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: rgb(160, 50, 63);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .mission-title {
    font-size: 3rem;
    line-height: 1;
  }
}

.mission-description {
  font-size: 1.35rem;
  font-weight: 300;
  color: #374151;
  line-height: 1.625;
  max-width: 56rem;
  margin: 0 auto;
}

.mission-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .mission-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mission-card {
  background: white;
  border-radius: 1.5rem;
  border: 1px solid rgb(252, 231, 243);
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
              0 4px 6px -4px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.2s ease;
  transform: scale(1);
}

.mission-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
              0 8px 10px -6px rgba(0, 0, 0, 0.1);
}


.mission-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.mission-icon .m-icon { width: 2rem; height: 2rem;  color: rgb(255 255 255); }

.mcon-gold {
  background: linear-gradient(to bottom right, #f2d967, #d4a574);
}
.mcon-emerald {
  background: linear-gradient(to bottom right, #34d399, #10b981);
}
.mcon-pink {
  background: linear-gradient(to bottom right, #f472b6, #ec4899);
}
.mcon-burgundy {
  background: linear-gradient(to bottom right, #ed9ca0, #e2727a);
}
.mcon-purple {
  background: linear-gradient(to bottom right, #c084fc, #a855f7);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: rgb(160, 50, 63);
  margin-bottom: 1rem;
}

.card-text {
  color: #374151;
  line-height: 1.625;
  font-size: 1.09rem;
}

.card-wide {
  grid-column: span 2;
}

@media (min-width: 1024px) {
  .card-wide {
    grid-column: span 1;
  }
}


/* Sign Up - Sign in Page */

.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #fef9e7, #fdf2f8);
    padding: 2rem;
}

.auth-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px #0000001a;
    max-width: 480px;
    width: 100%;
    text-align: center;
    margin-top: 6rem;
    margin-bottom: 4rem;
}

.auth-logo{
    margin-bottom: 1.5rem;
}

.logo-circle{
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(to bottom right, #f2d967, #d4a574);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 10px 15px -3px #0000001a;
}


.auth-card h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #a0323f;
    margin-bottom: 1rem;
}

.auth-card p {
    color: #4b5563;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    font-size: .875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: .5rem;
}

.form-group input {
    padding: .75rem 1rem;
    border-radius: .5rem;
    border: 1px solid #d1d5db;
    font-size: 1rem;
    width: 100%;
    transition: border-color .15s ease-in-out;
    color: #333;
}

.form-group input:focus {
    outline: none;
    border-color: #d4a574;
    box-shadow: 0 0 0 2px #d4a5744d;
}

.btn-auth {
    background: linear-gradient(to right, #f2d967, #d4a574);
    color: #fff;
    font-weight: 600;
    border: none;
    padding: .75rem 1rem;
    border-radius: .5rem;
    cursor: pointer;
    transition: all .3s ease;
    font-size: 1rem;
}

.btn-auth:hover {
    background: linear-gradient(to right, #d4a574, #c29a3a);
    transform: translateY(-1px);
}

.toggle-auth {
    margin-top: 1rem;
    font-size: .875rem;
}

.toggle-auth a {
    color: #a0323f;
    text-decoration: none;
    font-weight: 600;
}

.toggle-auth a:hover {
    text-decoration: underline;
}

.form-options{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.auth-form select {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #fff;
  color: #333;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='gray'%3E%3Cpath d='M4 6l4 4 4-4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}

.auth-form select:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2);
}


.checkbox-container{
    display: flex;
    align-items: center;
    font-size: .875rem;
    color: #4b5563;
    cursor: pointer;
}

.checkbox-container input{
    margin-right: .5rem;
    width: auto;
}

.forgot-password{
    font-size: .875rem;
    color: #a0323f;
    text-decoration: none;
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
}

.divider{
    position: relative;
    text-align: center;
    margin: 2rem 0;
}

.divider:before {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.divider span{
    background: #fff;
    padding: 0 1rem;
    color: #6b7280;
    font-size: .875rem;
}

.social-login{
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-bottom: 2rem;
}

.btn-social{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    padding: .75rem 1rem;
    border-radius: .5rem;
    font-weight: 500;
    transition: all .2s ease;
    cursor: pointer;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #374151;
}

.btn-social:hover {
    background: #f9fafb;
    transform: translateY(-1px);
}

.btn-google:hover {
    border-color: #0078d4;
}

.btn-microsoft:hover {
    border-color: #0078d4;
}

.btn-facbook:hover {
    border-color: #0078d4;
}



/* OUR TEAM PAGE */

.team-section {
      padding: 6rem 1rem;
      background: linear-gradient(to bottom right, #fef9f3, #fdf2f8);
    }

    .team-icon {
  width: 1.50rem;
  height: 1.50rem;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 1rem;
  background-image: linear-gradient(to right, #fef9e7, #fce7f3);
  color: #c13c4b;
}

.team__title {
  font-weight: 700;
  font-size: 2.40rem;
  margin-top: 1.5rem;
  color: #a0323f;
  margin-bottom: 0.70em;
}

    .team-intro {
  max-width: 700px;
  margin: 0 auto 5rem auto;
  font-size: 1.1rem;
  color: #444;
  text-align: center;
  line-height: 1.6;
}

    .team-grid {
      display: grid;
      gap: 2rem;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .team-card {
      background: white;
      padding: 2rem;
      border-radius: 1.5rem;
      text-align: center;
      box-shadow: 0 10px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
      position: relative;
    }

    .team-card:hover {
      transform: scale(1.03);
    }

    .team-avatar {
      position: relative;
      width: 100px;
      height: 100px;
      margin: 0 auto 1.70em;
    }

    .team-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      border: 4px solid #f2d967;
    }

    .team-avatar i {
      position: absolute;
      bottom: -8px;
      right: -8px;
      background: #d4a574;
      color: white;
      padding: 4px;
      border-radius: 50%;
      width: 24px;
      height: 24px;
    }

    .team-name {
      font-size: 1.25rem;
      font-weight: 700;
      color: #a0323f;
      margin-bottom: 0.5rem;
    }

    .team-role {
      font-size: 1rem;
      color: #6b7280;
      margin-bottom: 1rem;
    }

    .view-more-btn {
      background: #a0323f;
      color: white;
      border: none;
      padding: 0.5rem 1rem;
      border-radius: 9999px;
      cursor: pointer;
      font-weight: 600;
      transition: background 0.3s;
    }

    .view-more-btn:hover {
      background: #861f2f;
    }

    .profile-overlay {
      position: fixed;
      inset: 0;
      background: white;
      z-index: 9999;
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      overflow-y: auto;
    }

    .profile-overlay.active {
      display: flex;
    }

    .profile-close {
      position: absolute;
      top: 1.5rem;
      right: 2rem;
      font-size: 1.5rem;
      background: none;
      border: none;
      color: #a0323f;
      cursor: pointer;
    }

    .profile-content {
      max-width: 600px;
      text-align: center;
    }

    .profile-content h2 {
      font-size: 2rem;
      color: #a0323f;
      margin-bottom: 1rem;
    }

    .profile-content p {
      color: #4b5563;
      line-height: 1.6;
    }

    .profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 5px solid #f2d967;
}

.team-quote {
  font-style: italic;
  color: #6b7280;
  margin: 1.5rem 0;
}

.socials {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.social-link {
  color: #a0323f;
  font-size: 1.25rem;
  transition: color 0.3s;
}

.social-link:hover {
  color: #861f2f;
}
@media (max-width: 600px) {
  .team-name {
    font-size: 1.1rem;
  }

  .team-role {
    font-size: 0.95rem;
  }

  .team-card {
    padding: 1.5rem;
  }

  .profile-avatar {
    width: 90px;
    height: 90px;
  }
}


