.elementor-1333 .elementor-element.elementor-element-d74e050{--display:flex;}.elementor-1333 .elementor-element.elementor-element-cb657bd{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1333 .elementor-element.elementor-element-4ed4609{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1333 .elementor-element.elementor-element-28ae6ec{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1333 .elementor-element.elementor-element-dad51a5{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-274cb21 *//* Full Hero Section */
.community-hero {
  height: 100vh;
  background: url('https://slcphotocommunity.com/wp-content/uploads/2025/07/DSF7697-scaled.jpg') no-repeat center center / cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dark overlay with blur + glass card */
.hero-overlay {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  width: 100%;
  height: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Content Box */
.hero-content {
  background: rgba(255, 255, 255, 0.08);
  padding: 2rem 3rem;
  border-radius: 1.5rem;
  max-width: 700px;
  text-align: center;
  color: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Headline */
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

/* Subheading */
.hero-content p {
  font-size: 1.2rem;
  color: #ddd;
  line-height: 1.6;
}

/* Scroll Hint */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  font-size: 2rem;
  color: white;
  animation: bounce 2s infinite;
}

/* Bounce animation */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}
/* Fade-in effect */
.hero-content {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s ease forwards;
  animation-delay: 0.3s;
}

/* Keyframes for fade-up */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c6fc956 *//* Section */
.slc-events-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.slc-events-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1e1e1e;
}

/* Layout */
.event-card {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.event-card.reverse {
  flex-direction: row-reverse;
}

/* Carousel */
.event-carousel-wrapper {
  flex: 1 1 500px;
  max-width: 600px;
}
.event-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}
.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}
.carousel-track img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  flex-shrink: 0;
  background: #000;
  transition: transform 0.3s ease;
}
.event-carousel:hover img {
  transform: scale(1.02);
}

/* Dot Nav */
.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  transition: background 0.3s ease;
  cursor: pointer;
  padding: 0;  /* Important: remove default button padding */
}

.carousel-dots button.active {
  background: #fff;
}
.carousel-dots button:hover {
  background: rgba(255, 255, 255, 0.7);
}
/* Text Box */
.event-info {
  flex: 1 1 300px;
  max-width: 500px;
  background: #fefcf6;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.event-info:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
.event-info h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.event-info p {
  font-size: 1rem;
  line-height: 1.6;
}
.event-date {
  font-weight: bold;
  color: #888;
  font-size: 0.9rem;
  margin-top: 1rem;
  display: block;
}

/* Scroll Animation */
.event-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .event-card,
  .event-card.reverse {
    flex-direction: column;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-83e969a */<style>
  /* Section wrapper */
  .slc-gallery-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
  }

  .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #222;
  }

  /* Filter bar */
  .filter-bar {
    text-align: center;
    margin-bottom: 2rem;
  }

  .filter-btn {
    padding: 0.5rem 1.2rem;
    margin: 0 0.4rem;
    border: none;
    background: #eee;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease, color 0.3s ease;
  }

  .filter-btn.active,
  .filter-btn:hover {
    background: #111;
    color: #fff;
  }

  /* Gallery Grid */
  .gallery-grid {
    column-count: 3;
    column-gap: 1rem;
  }

  .gallery-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    display: none;
  }

  .gallery-item.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }

  .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    cursor: pointer;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .gallery-item img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  .caption {
    margin-top: 0.3rem;
    font-size: 0.85rem;
    color: #666;
  }

  /* Load More Button */
  .load-more {
    display: block;
    margin: 2rem auto;
    padding: 0.75rem 2rem;
    background: #222;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .load-more:hover {
    background: #000;
  }

  /* Modal */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
  }

  .modal-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  .modal-content img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
  }

  .modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
  }

  /* Scroll animation utility class */
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

  /* Responsive */
  @media (max-width: 1024px) {
    .gallery-grid {
      column-count: 2;
    }
  }

  @media (max-width: 768px) {
    .gallery-grid {
      column-count: 1;
    }

    .load-more {
      width: 100%;
    }
  }
</style>/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-39b0434 *//* === SECTION WRAPPER === */
.featured-members-section {
  padding: 4rem 1rem;
  background: #f9f9f9;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* === SECTION TITLE === */
.featured-members-section .section-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #222;
}

/* === SUBHEADER STYLING === */
.featured-members-section .section-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #555;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* === MEMBERS CONTAINER === */
/* Grid on Desktop, Horizontal Scroll on Mobile */
.members-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}

/* === MEMBER CARD === */
.member-card {
  background: linear-gradient(145deg, #0f172a, #1e293b);
  color: white;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  scroll-snap-align: start;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, border 0.3s ease;
  border: 2px solid transparent;
}

/* Hover accent border effect */
.member-card:hover {
  transform: translateY(-6px);
  border: 2px solid #94d2ff; /* Accent blue */
}

/* === MEMBER PHOTO === */
.member-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
   border: 4px solid #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.15);

}

/* === MEMBER NAME === */
.member-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* === MEMBER BIO === */
.member-bio {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.5;
}

/* === MOBILE STYLING: HORIZONTAL SCROLL === */
@media (max-width: 768px) {
  .members-container {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 1rem;
    padding-bottom: 1rem;
  }

  .member-card {
    flex: 0 0 80%;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-description {
    font-size: 1rem;
  }
}

/* === SCROLL ANIMATION STYLING === */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-db22f4b *//* ===================================== */
/* SECTION: Upcoming Events Calendar     */
/* Displays Google Calendar with padding */
/* and subtle animations                 */
/* ===================================== */
.events-section {
  padding: 5rem 1rem;
  background-color: #fff;
  text-align: center;
}

/* Section Title */
.events-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

/* Section Description */
.events-section .section-description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

/* Calendar Container (Google Calendar embed) */
.calendar-container {
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  overflow: hidden;
  background: white;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

/* Scroll Animation Class (triggered by Intersection Observer) */
.animate-on-scroll.show {
  opacity: 1 !important;
  transform: translateY(0) !important;
}/* End custom CSS */