/* ================================
   ABOUT SECTION REDESIGN
================================ */

.about {
    background: linear-gradient(135deg, #0d161d, #14222b);
    padding: 6rem 1rem;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 900px) {
    .about-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 5rem;
    }
}

/* ================================
   ABOUT TEXT & BADGES
================================ */

.about-text h2 {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    color: #f5c98a; /* Premium Gold */
    margin-bottom: 1.25rem;
    text-align: left;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.05rem;
    color: #b0c4cf;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.highlight-badge {
    background: rgba(245, 201, 138, 0.08);
    color: #f5c98a;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(245, 201, 138, 0.2);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.highlight-badge:hover {
    background: rgba(245, 201, 138, 0.2);
    transform: translateY(-2px);
}

/* ================================
   ABOUT IMAGE & PLACEHOLDER
================================ */

.about-image {
    position: relative;
    width: 100%;
}

/* Decorative backdrop frame */
.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(245, 201, 138, 0.4);
    border-radius: 16px;
    z-index: 0;
}

.image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 4.5;
    background-color: #1a252f;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    position: relative;
}

/* Hide broken image icon when src is empty */
.image-wrapper img[src=""],
.image-wrapper img:not([src]) {
    opacity: 0; 
}

/* Text placeholder shown when NO image is rendered */
.image-placeholder {
    position: absolute;
    color: #667e8c;
    font-size: 1rem;
    font-weight: 500;
    z-index: 1;
    text-align: center;
    padding: 20px;
}
