/* ===== ABOUT SECTION ===== */
.about {
    padding: 80px 0;
}

/* Layout */
.about-wrapper {
    display: flex;
    gap: 70px;
    align-items: center;
    flex-wrap: wrap;
}

/* TEXT */
.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text p {
    line-height: 1.8;
    color: #ccc;
}

.about-text .lead {
    font-size: 19px;
    color: #f0f0f0;
    font-weight: 300;
    margin-bottom: 20px;
}

.about-highlight {
    margin-top: 25px;
    background: linear-gradient(
        135deg,
        rgba(177, 18, 38, 0.15),
        rgba(177, 18, 38, 0.05)
    );
    border: 1px solid rgba(177, 18, 38, 0.25);
    padding: 14px 20px;
    border-radius: 10px;
    display: inline-block;
    backdrop-filter: blur(8px);
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* VISUAL */
.about-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    transition: transform 0.5s ease;
}

.about-wrapper:hover .about-visual {
    transform: translateY(-5px);
}

/* GLASS CARD */
.glass-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;

    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(12px);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(177, 18, 38, 0.15);
}

.glass-card img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.glass-card:hover img {
    transform: scale(1.08);
}

.glass-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 15px;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.08),
        transparent
    );

    opacity: 0;
    transition: 0.6s;
}

.glass-card:hover::before {
    opacity: 1;
}
