/* --- ABOUT SECTION STYLING --- */

.about-hero {
    padding: 120px 8%;
    background-color: #000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}


/* Image Wrapper & Experience Badge */

.about-image-wrapper {
    position: relative;
    z-index: 2;
}

.main-img-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.main-img-card img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(15%);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.main-img-card:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.experience-badge {
    position: absolute;
    bottom: -25px;
    right: -20px;
    background: #ff5722;
    /* Signature Orange */
    padding: 20px 30px;
    border-radius: 12px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(255, 87, 34, 0.3);
}

.experience-badge .years {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.3;
}


/* Content Styling */

.badge {
    color: #ff5722;
    letter-spacing: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    display: block;
    margin-bottom: 20px;
}

.serif-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.1;
    color: #fff;
    margin-bottom: 30px;
}

.accent-text {
    color: #ff5722;
    font-style: italic;
    font-weight: 400;
}

.lead-text {
    font-size: 1.15rem;
    color: #ddd;
    line-height: 1.7;
    margin-bottom: 35px;
    border-left: 3px solid #ff5722;
    padding-left: 20px;
}

.story-details p {
    color: #888;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}


/* Service Highlights (Tech Stack Section) */

.tech-stack {
    margin-top: 45px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stack-title {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: #555;
    font-weight: 700;
    margin-bottom: 20px;
}

.stack-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.stack-icons span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #bbb;
    transition: 0.3s;
}

.stack-icons span:hover {
    background: #ff5722;
    color: #fff;
    border-color: #ff5722;
}


/* About mobile Responsive */


/* =========================
   ABOUT SECTION - MOBILE FIX
========================= */

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-hero {
        padding: 100px 6%;
    }
    .serif-title {
        font-size: 2.8rem;
    }
}


/* -------------------------
   TABLETS
-------------------------- */

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 5%;
        text-align: center;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image-wrapper {
        display: flex;
        justify-content: center;
    }
    .main-img-card {
        width: 90%;
        border-radius: 16px;
    }
    .experience-badge {
        position: absolute;
        bottom: -15px;
        right: 10px;
        padding: 15px 20px;
        gap: 10px;
    }
    .experience-badge .years {
        font-size: 2.2rem;
    }
    .experience-badge .text {
        font-size: 0.65rem;
    }
    .serif-title {
        font-size: 2.3rem;
    }
    .lead-text {
        font-size: 1rem;
        padding-left: 15px;
    }
    .story-details p {
        font-size: 0.95rem;
    }
    .stack-icons {
        justify-content: center;
    }
}


/* -------------------------
   MOBILE PHONES
-------------------------- */

@media (max-width: 480px) {
    .about-hero {
        padding: 70px 20px;
    }
    .serif-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    .badge {
        font-size: 0.7rem;
        letter-spacing: 3px;
    }
    .lead-text {
        font-size: 0.95rem;
        border-left: none;
        padding-left: 0;
    }
    .story-details p {
        font-size: 0.9rem;
    }
    .main-img-card {
        width: 100%;
    }
    .experience-badge {
        position: static;
        margin-top: 15px;
        justify-content: center;
        width: fit-content;
    }
    .tech-stack {
        text-align: center;
    }
    .stack-icons span {
        font-size: 0.8rem;
        padding: 6px 14px;
    }
}