/* ============================
   WHAT WE WANT YOU TO FEEL
   ============================ */

.about-feel {
    text-align: center;
}

/* Gold Algerian heading */
.about-feel-title {
    font-family: 'Algerian', var(--header-font, serif);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #c8a763;
    margin-bottom: 1.4rem;
    text-shadow:
        0 2px 4px rgba(0,0,0,0.45),
        0 4px 10px rgba(0,0,0,0.35);
}

/* Intro with gold lines, like other sections */
.about-feel-intro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 2.3rem;
}

.about-feel-line {
    flex: 1;
    max-width: 140px;
    height: 2px;
    background: linear-gradient(
        to right,
        rgba(200,167,99,0),
        rgba(200,167,99,0.9),
        rgba(200,167,99,0)
    );
    border-radius: 999px;
    opacity: 0.9;
}

.about-feel-text {
    max-width: 720px;
    margin: 0;
    font-size: 0.99rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* Layout for cards + tagline */
.about-feel-layout {
    max-width: 900px;
    margin: 0 auto;
}

/* ============================
   PROMISE CARDS
   ============================ */

.about-feel-list {
    list-style: none;
    margin: 0 0 1.8rem;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.about-feel-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    text-align: left;

    padding: 1.1rem 1.25rem;
    border-radius: 12px;
    background: radial-gradient(circle at top left, rgba(200,167,99,0.10), rgba(0,0,0,0.98));
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 7px 20px rgba(0,0,0,0.65);

    --feel-scale: 1;
    transform: translateY(0) scale(var(--feel-scale));
    transition:
        transform 0.2s ease-out,
        box-shadow 0.2s ease-out,
        border-color 0.2s ease-out,
        background 0.2s ease-out;
}

.about-feel-item:hover {
    --feel-scale: 1.02;
    box-shadow: 0 12px 26px rgba(0,0,0,0.8);
    border-color: rgba(200,167,99,0.7);
    background: radial-gradient(circle at top left, rgba(200,167,99,0.18), rgba(0,0,0,1));
}

/* Icon bubble */
.about-feel-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(200,167,99,0.85);
    background: radial-gradient(circle at top, rgba(200,167,99,0.9), rgba(200,167,99,0.25));
    box-shadow: 0 0 12px rgba(200,167,99,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #000;
}

/* Copy area */
.about-feel-copy h3 {
    margin: 0 0 0.25rem;
    font-family: sans-serif;   /* switch away from the ornate font */
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}


.about-feel-copy p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.6;
    opacity: 0.96;
}

/* Tagline */
.about-feel-tagline {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.7;
    font-style: italic;
    opacity: 0.95;
}

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 900px) {
    .about-feel-list {
        grid-template-columns: 1fr;
    }

    .about-feel-intro {
        flex-direction: column;
        gap: 0.75rem;
    }

    .about-feel-line {
        max-width: 120px;
    }
}