/* ABOUT HERO */
.about-hero {
    height: 95vh;
    background: url("pictures/pine-industry.jpeg") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(34, 53, 46, 0.4),
            rgba(7, 37, 27, 0.95));
}

.about-hero-content {
    position: relative;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    color: var(--primary);
}

.about-hero-content p {
    color: var(--text-muted);
    font-size: 1.5rem;
}

/* SPLIT SECTION */
.split {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.split-box {
    background: #0f1f17;
    padding: 40px;
    border-radius: 12px;
    max-width: 400px;
}

.split-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

/* CENTER TEXT */
.center {
    text-align: center;
}

/* IMPACT GRID */
.impact-grid {
    display: flex;
    justify-content: center;
    gap: 90px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.impact-grid h2 {
    color: var(--primary);
    font-size: 1.7rem;
}


.impact-grid p {
    font-size: 1.02rem;
}

/* CTA */
.cta {
    text-align: center;
    padding: 100px 10px;
    background: linear-gradient(to right, #081c15, #0b2e23);
}

.cta h2 {
    color: var(--primary);
    margin-bottom: 20px;
}

.cta p {
    margin-bottom: 30px;
}

.btn-primary {
    margin-top: 20px;
}

.inspiration {
    padding: 120px 10%;
    background: #0b2e23;
}

/* FLEX LAYOUT */
.inspiration-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* TEXT BLOCKS */
.inspiration-text {
    flex: 1;
    min-width: 300px;
}

/* FIXED TAG */
.section-tag {
    color: var(--primary);
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-top: -95px;
}

.inspiration h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.inspiration p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 10px;
}

.list {
    line-height: 1.8;
    align-items: flex-start;
}

.active-link {
    color: #d4af37 !important;
    position: relative;
}

/* GOLD UNDERLINE */

.active-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 100%;
    height: 2px;

    background: #d4af37;

    border-radius: 20px;
}