/* SECTION */
.about-section {
    min-height: 100vh;
    background: hsl(var(--navy-color-hls));
}

/* BACKGROUND */
.about-bg img {
    filter: saturate(.7) brightness(.4);
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(14,19,27,.92) 0%,
        rgba(23,29,39,.88) 50%,
        rgba(19,24,32,.95) 100%
    );
}


/* GLASS CARD */
.glass-card {
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        rgba(34,44,58,.55) 0%,
        rgba(26,34,45,.45) 100%
    );

    backdrop-filter: blur(20px);

    border: 1px solid rgba(201,169,106,.15);

    box-shadow:
        0 25px 50px -12px rgba(0,0,0,.5),
        inset 0 1px 0 rgba(255,255,255,.08);
}

/* TOP GLOW */
.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 130px;
    height: 130px;
    border-radius: 24px 0 0 0;

    background: radial-gradient(
        ellipse at top left,
        rgba(201,169,106,.12) 0%,
        transparent 70%
    );
}

/* FEATURE CARDS */
.feature-card {
    padding: 1.25rem;
    border-radius: 18px;

    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);

    transition: .3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,.06);
}

/* ICON */
.feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: hsl(var(--bg-golden-beige-hls)/ .1);
    color: hsl(var(--text-golden-color-hls));
    font-size: 1.2rem;
}

/* TEAM */
.team-item {
    overflow: hidden;
    border-radius: 20px;
    border: 2px solid rgba(201,169,106,.25);

    transition: .4s ease;

    box-shadow: 0 8px 24px rgba(0,0,0,.35);
}

.team-item img {
    transition: .5s ease;
}

.team-item:hover img {
    transform: scale(1.05);
}

/* BUTTON */
.custom-btn {
    border: 2px solid rgba(201,169,106,.35);
    color: var(--accent);
}

.custom-btn:hover {
    background: rgba(201,169,106,.08);
    border-color: var(--accent);
    color: var(--accent);
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .display-6 {
        font-size: 2rem;
    }

}