﻿/* ===== OUTER WRAPPER (Break Layout Width) ===== */
.futura-about-wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
}

/* ===== FULL SCREEN BACKGROUND ===== */
.futura-about {
    position: relative;
    width: 100%;
    height: 100%;
    background: url('/Content/Images/Aboutbg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', sans-serif;
}

    /* Dark overlay */
    .futura-about .futura-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.55);
    }

    /* Content Center */
    .futura-about .futura-about-inner {
        position: relative;
        text-align: center;
        max-width: 800px;
        padding: 20px;
        color: #fff;
        opacity: 0;
        transform: translateY(40px);
    }

    /* Small Title */
    .futura-about .futura-small-title {
        letter-spacing: 3px;
        font-size: 14px;
        color: #9cff00;
    }

    /* Main Title */
    .futura-about .futura-main-title {
        font-size: 56px;
        margin: 15px 0;
        font-weight: 700;
    }

    /* Description */
    .futura-about .futura-about-desc {
        font-size: 20px;
        line-height: 1.8;
    }

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width:768px) {
    .futura-about .futura-main-title {
        font-size: 34px;
    }

    .futura-about .futura-about-desc {
        font-size: 16px;
    }
}
