:root {
    --primary-accent: #D84E86;
    --dark-text: #2B2B2B;
}

/* Give the container massive spacing to separate the stories */
.activity-row {
    margin-bottom: 0 !important;
}

/* Image scaling inside the alternating columns */
.showcase-img-wrapper {
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    background-color: #f8f9fa;
}

.showcase-img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

/* Subtle cinematic zoom */
.activity-row:hover .showcase-img {
    transform: scale(1.02);
}

.text-primary-accent {
    color: var(--primary-accent);
}

.activity-description {
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Buttons */
.btn-outline-primary-accent {
    color: var(--primary-accent);
    border: 2px solid var(--primary-accent);
    transition: all 0.3s ease;
}

.btn-outline-primary-accent:hover {
    background-color: var(--primary-accent);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(216, 78, 134, 0.2);
}


.thumbSwiper .swiper-wrapper {
    display: flex !important;
    flex-direction: row !important;
}


/* Individual Thumbnails */


/* Hover and Active States */


/* Blockquotes */
.article-content blockquote {
    border-left: 5px solid var(--primary-accent);
    padding: 1.5rem;
    margin: 2.5rem 0;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--dark-text);
    background-color: #F8F9FA;
    border-radius: 0 12px 12px 0;
}

/* Inner Page Hero */
.inner-page-hero {
    position: relative;
    height: 40vh;
    min-height: 420px;
    padding-top: 120px; /* Protects the text from overlapping the navbar */
    display: flex;
    align-items: flex-end;
    padding-bottom: 3rem;
    justify-content: center;
    background-image: url('../images/hero/backgrount_temp.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 3rem;
}

.inner-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.inner-page-hero .container {
    position: relative;
    z-index: 2;
}

/* Make sure the title is white to pop against the dark background */
.inner-page-hero h1, .inner-page-hero p {
    color: #FFFFFF;
}


.mainSwiper {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    max-height: 700px;
    border-radius: 1rem;
    overflow: hidden; /* Clips the image cleanly inside the rounded corners */
}

/* 2. Slide and Anchor constraints (Forces them to fill the container) */
.mainSwiper .swiper-slide,
.mainSwiper .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

/* 3. Main Image (Fills the anchor tag perfectly) */
.gallery-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
    transition: opacity 0.3s ease;
}

.gallery-main-img:hover {
    opacity: 0.9;
}

/* 4. Thumbnail Swiper (Clean, native sizing) */
.thumbSwiper {
    width: 100%;
    height: 120px;
    padding: 10px 0;
    box-sizing: border-box;
}

.thumbSwiper .swiper-slide {
    width: 140px; /* Swiper relies on this because slidesPerView is "auto" */
    height: 100%;
    opacity: 0.4;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.thumbSwiper .swiper-slide-thumb-active,
.thumbSwiper .swiper-slide:hover {
    opacity: 1;
}

.thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

