.elementor-1329 .elementor-element.elementor-element-cf25c3c{--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-1329 .elementor-element.elementor-element-4a71259{--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-1329 .elementor-element.elementor-element-c01d8c5{--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-1329 .elementor-element.elementor-element-74a8c96{--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-a5d398e *//* === Hero Section Styling === */
.hero-landing {
  position: relative;
  height: 100vh;
  background: url('https://slcphotocommunity.com/wp-content/uploads/2025/07/DSC4620-1-scaled.jpg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* === Dark Overlay for Contrast === */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

/* === Content Box Styling === */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.0);
  border-radius: 1rem;
  backdrop-filter: blur(1px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-out both;
}

/* === Headline and Subtext === */
.hero-title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.hero-subtext {
  font-size: 1.2rem;
  color: #eee;
  line-height: 1.6;
}

/* === Responsive === */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtext {
    font-size: 1rem;
  }
}

/* === Fade In Animation === */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9f1c2bb *//* ========================================================== */
/* SECTION 2: Story Layout - Responsive two-column with image */
/* ========================================================== */

/* Main section wrapper with light ivory background and padding */
.story-section {
  padding: 4rem 1rem;
  background-color: #fefcf6; /* Soft off-white to distinguish section */
}

/* Flex container holding both the text box and image */
.story-content {
  display: flex;
  align-items: flex-start;          /* Align text/image to top */
  justify-content: space-between;  /* Push elements apart */
  max-width: 1100px;
  margin: 0 auto;
  gap: 2rem;
  flex-wrap: nowrap;               /* Prevent wrapping on large screens */
}

/* Text box styling with soft blue background, shadow, and rounded corners */
.story-text-box {
  background-color: rgba(0, 97, 157, 0.08); /* Light blue tint */
  padding: 2rem;
  border-radius: 1rem;
  flex: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  color: #1e1e1e;
  min-width: 300px;
  max-width: 550px;
}

/* Image container: limits max width and centers image */
.story-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 480px; /* ✨ Ensures the image section doesn't grow too large */
}

/* Image styling: scaled to better match the text box */
.story-image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
  max-width: 450px; /* ✨ Controls the actual image width */
}

/* Responsive layout for mobile and tablets */
@media (max-width: 768px) {
  .story-content {
    flex-direction: column;   /* Stack text and image vertically */
    align-items: center;
    text-align: center;
  }

  .story-text-box,
  .story-image {
    max-width: 100%;
  }

  .story-image img {
    max-width: 100%; /* Ensure full width on smaller screens */
  }
}

/* ========================================================== */
/* Typography adjustments for better readability              */
/* ========================================================== */
.story-text-box h2 {
  font-size: 3rem;            /* Large headline */
  margin-bottom: 1rem;
  color: #1e1e1e;
}

.story-text-box p {
  font-size: 2rem;            /* Larger body text */
  line-height: 1.7;           /* Improves vertical rhythm */
  color: #333;
}

/* ========================================================== */
/* Scroll-triggered Animation Utility Classes (Reusable)      */
/* ========================================================== */

/* Base animation class: items start hidden and offset */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Animation variant: fade in from left */
.fade-left {
  transform: translateX(-40px);
}

/* Animation variant: fade in from right */
.fade-right {
  transform: translateX(40px);
}

/* Once triggered: make element visible and reset transform */
.animate-on-scroll.animate-active {
  opacity: 1;
  transform: translateX(0);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b1a30c2 *//* ============================================= */
/* SECTION 3: Learn / Share / Grow - Image Grid  */
/* ============================================= */

/* Section background and padding */
.learn-share-grow-section {
  padding: 4rem 1rem;
  background-color: #ffffff;
  text-align: center;
}

/* Grid container for images */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto 2rem auto;
}

/* Wrapper for each image and overlay text */
.image-text-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

/* Zoom image slightly on hover */
.image-text-wrapper:hover {
  transform: scale(1.03);
}

/* Image fills the card and is responsive */
.image-text-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 1rem;
}

/* Supporting paragraph below the grid */
.section-description p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #444;
}

/* === Optional: Dark overlay behind text for contrast === */
.image-text-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3); /* Dark translucent layer */
  z-index: 1;
  border-radius: 1rem;
}

/* === Center the overlay text perfectly === */
.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  z-index: 2;
  margin: 0;
  text-align: center;
  pointer-events: none;
}

/* ========================================= */
/* Scroll Animations for Section 3 Elements */
/* ========================================= */

/* Initial state: fade up from below with opacity 0 */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* When scrolled into view, fade in and reset position */
.animate-

.calendar-link {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #444;
}
.calendar-link a {
  text-decoration: underline;
  color: #1a1a1a;
  transition: color 0.3s ease;
}
.calendar-link a:hover {
  color: #0077cc;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-28f9db7 *//* ================================================== */
/* SECTION 4: Photography for Everyone - Full Layout  */
/* ================================================== */

.photography-everyone-section {
  padding: 4rem 1rem;
  background-color: #f9f9f9;
  text-align: center;
}

/* Section title */
.photography-everyone-section .section-title {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  color: #1e1e1e;
}

/* Container for the main image */
.community-image-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Image styling */
.community-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 1rem;
}

/* Supporting subtext */
.section-subtext p {
  max-width: 700px;
  margin: 2rem auto 0 auto;
  font-size: 1.5rem;
  color: #444;
  line-height: 1.8;
}
/* ======================================== */
/* Fade-In Animation Styles */
/* ======================================== */

/* Animation keyframes */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Base class to apply fade-in */
.fade-in-up {
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

/* Optional delay classes for staggering effect */
.fade-delay-1 {
  animation-delay: 0.3s;
}

.fade-delay-2 {
  animation-delay: 0.6s;
}

.fade-delay-3 {
  animation-delay: 0.9s;
}

/* === Keyframes === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* === Base Animation Class === */
.animate-on-scroll {
  opacity: 0;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-play-state: paused;
}

/* === Specific Animation Types === */
.fade-up    { animation-name: fadeInUp; }
.fade-left  { animation-name: fadeInLeft; }
.zoom-in    { animation-name: zoomIn; }

/* === Optional Delay Classes === */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }/* End custom CSS */