/*Styles for About page*/
/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

#normalContent.aboutpg {
    padding: 0 0 60px;
}

/* ============================================
   RELATED CONTENT SECTION
   ============================================ */
.related-content-section {
    padding-bottom: 60px;
}

.sw-container.related-content-container {
    max-width: 762px;
}

.related-content-section .section-title {
    font-family: "Subway Sans LCG-WebF Bold", sans-serif;
    font-size: 36px;
    line-height: 130.5%;
    color: #000000;
    margin-bottom: 40px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.related-content-wrapper {
    display: flex;
    gap: 0;
    align-items: stretch;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.10);
    min-height: 182px;
}

/* ============================================
   LEFT COLUMN - MEDIA WITH BACKGROUND IMAGE
   ============================================ */
.related-content-media {
    flex: 0 0 325px;
    min-height: 182px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.70) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.video-play-trigger {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}

.video-play-trigger:hover ~ .media-overlay,
.video-play-trigger:hover {
    background: rgba(0, 0, 0, 0.5);
}

.play-button {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.video-play-trigger:hover .play-button {
    transform: scale(1.1);
}

.play-button svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* ============================================
   RIGHT COLUMN - CONTENT
   ============================================ */
.related-content-text {
    flex: 1;
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.content-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.content-top {
    flex: 1;
}

.content-title {
    font-family: "Subway Sans LCG-WebF Bold", sans-serif;
    font-size: 22px;
    line-height: 136.36%;
    color: #000;
    margin: 0 0 10px 0;
}

.content-description {
    margin-bottom: 20px;
}

.content-description p {
    font-size: 16px;
    line-height: 162%;
    color: #000;
    margin: 0 0 12px 0;
    padding: 0;
}

.content-description p:last-child {
    margin-bottom: 0;
}

/* Link Icon - Always at Bottom Right */
.content-link-icon {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-top: auto;
    padding-top: 20px;
}

.content-link-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #000;
}

.content-link-icon a:hover {
    transform: translateY(-2px);
}

.content-link-icon a:hover path {
    fill: #008938;
}

/* ============================================
   VIDEO MODAL
   ============================================ */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    z-index: 10000;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 48px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    line-height: 1;
    padding: 0;
}

.video-modal-close:hover {
    transform: scale(1.2);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 5px;
}

#videoPlayer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#videoPlayer iframe,
#videoPlayer video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

body.modal-open {
    overflow: hidden;
}
/* ============================================
   FRESH FUTURE SECTION
   ============================================ */
.fresh-future-section {
    padding: 60px 0;
    background-color: #fff;
}

.fresh-future-wrapper {
    display: flex;
    gap: 0;
    align-items: stretch;
    background: #fff;
}

/* ============================================
   LEFT COLUMN - FEATURED IMAGE
   ============================================ */
.fresh-future-image {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
}

.fresh-future-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ============================================
   RIGHT COLUMN - CONTENT
   ============================================ */
.fresh-future-content {
    flex: 0 0 50%;
    background-color: #008938;
    padding: 40px 60px 40px 115px;
    display: flex;
    align-items: center;
}

.content-inner {
    width: 100%;
    max-width: 500px;
}

.fresh-future-title {
    font-family: "Subway Sans LCG-WebF Bold", sans-serif;
    font-size: 36px;
    line-height: 130%;
    color: #FFFFFF;
    margin: 0 0 20px 0;
    text-transform: capitalize;
    font-weight: 700;
}

.fresh-future-description {
    margin-bottom: 30px;
}

.fresh-future-description p {
    font-size: 18px;
    line-height: 161%;
    color: #FFFFFF;
    margin: 0 0 15px 0;
    padding: 0;
}

.fresh-future-description p:last-child {
    margin-bottom: 0;
}

.fresh-future-cta {
    margin-top: 30px;
}


.fresh-future-cta .cta-button {
    background-color: #fff;
    color: #000;
}
.fresh-future-cta .cta-button:hover {
    transform: translateY(-2px);
    background-color: #ecb130;
    color: #fff;
}


/**/





/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media only screen and (max-width: 1600px) {
    .related-content-section .section-title { font-size: 32px; }
    .fresh-future-title {
        font-size: 32px;
    }
    
}
@media only screen and (max-width: 1440px) {
    .related-content-section .section-title { font-size: 30px; }
    .fresh-future-title {
        font-size: 30px;
    }
    .fresh-future-content { padding: 40px 60px 40px 60px; }
}
@media only screen and (max-width: 1200px) {
    .related-content-section .section-title { font-size: 28px; }
    .fresh-future-title {
        font-size: 28px;
    }
    
    .fresh-future-content {
        padding: 45px 40px;
    }
}
@media screen and (max-width: 1024px) {
    #normalContent.aboutpg {
        padding: 50px 0;
    }
    .sw-container.related-content-container {
        max-width: 92%;
    }

    .related-content-section {
        padding-bottom: 50px;
    }

    .related-content-section .section-title {
        margin-bottom: 35px;
    }

    .related-content-media {
        flex: 0 0 280px;
        min-height: 280px;
    }

    .related-content-text {
        padding: 25px;
    }

    .content-title {
        font-size: 20px;
    }

    .play-button svg {
        width: 70px;
        height: 70px;
    }
    .fresh-future-section {
        padding: 50px 0;
    }
    
    .fresh-future-content {
        padding: 40px 35px;
    }
    
    .fresh-future-title {
        font-size: 26px;
        margin-bottom: 18px;
    }
    
    .fresh-future-description {
        margin-bottom: 25px;
    }
    
    .fresh-future-description p {
        font-size: 15px;
    }
    
    .fresh-future-cta {
        margin-top: 25px;
    }
}

@media screen and (max-width: 768px) {
    #normalContent.aboutpg {
        padding: 40px 0;
    }
    .sw-container.related-content-container {
        max-width: 90%;
    }
    .related-content-section {
        padding-bottom: 40px;
    }

    .related-content-section .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .related-content-wrapper {
        flex-direction: column;
        min-height: auto;
    }

    /* Image on Top - Full Width */
    .related-content-media {
        flex: 0 0 auto;
        width: 100%;
        min-height: 250px;
        order: 1;
    }

    /* Content Below */
    .related-content-text {
        order: 2;
        padding: 25px 20px;
    }

    .content-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .content-description {
        margin-bottom: 15px;
    }

    .content-link-icon {
        padding-top: 15px;
    }

    .play-button svg {
        width: 60px;
        height: 60px;
    }

    .video-modal-content {
        width: 95%;
    }

    .video-modal-close {
        top: -45px;
        font-size: 40px;
        width: 45px;
        height: 45px;
    }
    .related-content-section .section-title { font-size: 24px; }

    .fresh-future-section {
        padding: 40px 0;
    }
    
    .fresh-future-wrapper {
        flex-direction: column;
    }
    
    /* Image on Top - Full Width */
    .fresh-future-image {
        flex: 0 0 auto;
        width: 100%;
        min-height: 300px;
        order: 1;
    }
    
    /* Content Below */
    .fresh-future-content {
        flex: 0 0 auto;
        order: 2;
        padding: 40px 30px;
    }
    
    .fresh-future-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .fresh-future-description {
        margin-bottom: 20px;
    }
    
    .fresh-future-description p {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .fresh-future-cta {
        margin-top: 20px;
    }


}


@media screen and (max-width: 480px) {
    .related-content-section {
        padding-bottom: 30px;
    }

    .related-content-section .section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .related-content-media {
        min-height: 220px;
    }

    .related-content-text {
        padding: 20px 18px;
    }

    .content-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .content-description {
        margin-bottom: 12px;
    }

    .content-link-icon {
        padding-top: 12px;
    }

    .play-button svg {
        width: 50px;
        height: 50px;
    }

    .video-modal-close {
        top: -40px;
        font-size: 36px;
        width: 40px;
        height: 40px;
    }

    .fresh-future-section {
        padding: 30px 0;
    }
    
    .fresh-future-image {
        min-height: 250px;
    }
    
    .fresh-future-content {
        padding: 35px 25px;
    }
    
    .fresh-future-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .fresh-future-description {
        margin-bottom: 18px;
    }
    
    .fresh-future-description p {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .fresh-future-cta {
        margin-top: 18px;
    }
    
    .fresh-future-cta .cta-button {
        font-size: 15px;
        padding: 11px 25px;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.video-play-trigger:focus {
    outline: 2px solid #008938;
    outline-offset: -2px;
}

.video-modal-close:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.content-link-icon a:focus {
    outline: 2px solid #008938;
    outline-offset: 2px;
}

/* Smooth Transitions */
* {
    -webkit-tap-highlight-color: transparent;
}

.video-modal-close,
.play-button,
.content-link-icon a {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.fresh-future-cta .cta-button:focus {
    outline: 2px solid #FFFFFF;
    outline-offset: 2px;
}

/* Smooth Transitions */
.fresh-future-cta .cta-button {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}