/* CSS for this specific page */

/* Hero */
.hero-section {
    position: relative;
    height: 87vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.4);
    padding: 2rem;
    padding: 15rem 0 !important;
}

.sustain-section-wrapper {
    background: #fff;
}

.sustain-dark-section {
    background-color: #1f1f1f;
    color: #ccc;
    padding-top: 7rem !important;
    min-height: 37rem;
    margin-bottom: 9rem;
}

.sustain-dark-section .section-title {
    color: #00a59c;
    font-weight: 500;
    font-size:3rem;
}

.sustain-dark-section p,
.sustain-dark-section li {
    color: #ccc;
    line-height: 1.6;
}

.sustain-dark-section ul {
    padding-left: 1.2rem;
}

.blocks-aprc-programs {
    padding: 3rem !important;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
    color: #00e5c3 !important;
}

.aprc-programs-title .section-title{
    font-size:3.5rem;
}

.aprc-programs-title p {
    font-size: 1.5rem;
    color:lightcyan;
}

.species {
    padding-left: 0rem;
}

.species-card h5{

    color:teal;
}

.species-card p{
    color:darkslategray!important;
}

.col-md-9 {
    padding-left: 15rem !important;
    /* keeps gap from title */
}

.learn-more-link {
    color: #0d6efd;
    transition: color 0.3s ease;
}

.learn-more-link:hover {
    color: #000 !important;
    cursor: pointer;
}

@media (max-width: 767px) {
    .sustain-dark-section {
        padding: 3rem 1rem !important;
        max-height: 100%;
    }

    .sustain-dark-section .section-title {
        text-align: center;
    }

    .sustain-dark-section .row {
        flex-direction: column;
    }

    .sustain-dark-section .col-md-6 {
        width: 100%;
        padding-left: 0.5rem !important;
    }

    .sustain-dark-section .col-md-6 p,
    h2 {
        padding-left: 0rem !important;
        text-align: left !important;
        margin-left: -2rem;
    }

    .sustain-dark-section img {
        margin-bottom: 2rem;
    }

    .container.mt-5 .row {
        flex-direction: column;
    }

    .container.mt-5 img {
        margin: 0 auto 2rem auto !important;
        display: block;
    }

    .container.mt-5 .col-md-8 {
        padding-left: 1rem !important;
    }

    .aprc-programs-title {
        margin-left: 5rem !important;
        padding: 0 !important;
        padding-bottom: 3rem !important;
        text-align: center;
    }

    .programs-block {
        text-align: center !important;
        padding-left: 1.4rem !important;
    }

    .featured-species .col-md-9 {
        width: 100%;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        text-align: center !important;
    }

    .featured-species-title {
        padding-bottom: 3rem;
        padding-left: 3rem !important;
    }

    .featured-species .species-card {
        text-align: left;
    }

    .cannabis-overlay {
        text-align: center !important;
        padding: 2rem 1rem !important;
    }

    .cannabis-overlay h3 {
        font-size: 2.5rem;
    }

    .featured-species .row.gy-2 {
        row-gap: 0rem !important;
    }
}

@media (max-width: 1234px) {
    .sustain-dark-section {
        max-height: 100%;
        margin-top: -4px !important;
    }

    .sustain-dark-section h2,
    p {
        padding-left: 2rem;
        margin-top: 0.5rem;
    }

    .featured-species .species-card {
        text-align: left;
        padding: 2rem !important;
        padding-top: 1rem !important;
    }

    .col-md-9 {
        padding-left: 5rem !important;
        /* keeps gap from title */
    }

    .sustain-dark-section .col-md-6:first-child {
        padding-left: 3rem;
    }
}
/* Section */
.featured-species {
    background-color: #fff;
    color: #000;
    margin: 4rem 0;
}

/* Title */
.featured-species-title {
    padding-top: 0.5rem;
    padding-left: 2rem;
}

/* Cards */
.species-wrapper {
    padding-left: 4rem;
}

.species-card {
    padding: 1.5rem;
    height: 100%;
    background: #fff;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
    position: relative;
}

.species-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.species-text {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.species-link {
    text-decoration: none;
    color: inherit;
}

/* Arrow animation */
.arrow-slide {
    display: inline-block;
    font-size: 5rem; /* slightly larger */
    letter-spacing: 0.3rem; /* makes arrow feel longer */
    text-align:end;
    color: #6c757d;
    transform: translateX(40px); /* move right */
    transition: transform 0.3s ease;
}

    .arrow-slide:hover {
        transform: translateX(60px); /* move further on hover */
    }
