a{
    color: pink
}

.name-header {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arrow {
    transition: transform 0.3s;
}

.collapse.show+.arrow,
.collapse.show~.arrow {
    transform: rotate(0deg);
}

.collapsed .arrow {
    transform: rotate(-90deg);
}

.list-group-item:hover {
    background-color: #333 !important;
    border-color: #ffc107 !important;
}

footer p {
    color: #ddd;
}

/* ===============================
   HEADER
================================ */
.name-header {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.header-details a {
    text-decoration: none;
    font-weight: 600;
}

.header-details a:hover {
    text-decoration: underline;
}

/* ===============================
   CV FORM CARD
================================ */
.cv-form {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 14px;
    padding: 1.75rem;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(6px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cv-form:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

/* ===============================
   INPUT & BUTTON
================================ */
.cv-input-wrapper {
    display: flex;
    gap: 10px;
    width: 100%;
}

.cv-input-wrapper input {
    flex: 1;
    width: 100%;
}

/* Mobile */
@media (max-width: 576px) {
    .cv-input-wrapper {
        flex-direction: column;
    }

    .cv-input-wrapper button {
        width: 100%;
    }
}


.cv-form .input-group {
    width: 100%;
    flex-wrap: wrap;
}

.cv-form .form-control {
    min-width: 0;
    border-radius: 10px;
    padding: 0.65rem 0.85rem;
}

.cv-form button {
    border-radius: 10px;
    padding: 0.65rem 1.1rem;
    font-weight: 600;
    white-space: nowrap;
}

/* MOBILE */
@media (max-width: 576px) {
    .cv-form .input-group {
        flex-direction: column;
    }

    .cv-form button {
        width: 100%;
    }
}


/* ===============================
   MOBILE TWEAKS
================================ */
@media (max-width: 576px) {
    .name-header {
        font-size: 2.2rem;
    }

    .cv-form {
        padding: 1.4rem;
    }

    .cv-form .input-group {
        flex-direction: column;
    }

    .cv-form button {
        width: 100%;
    }
}


#responseAlert {
    max-width: 480px;      /* matches your cv-form width */
    width: 100%;            /* responsive */
    text-align: center;     /* message centered */
    padding: 0.75rem 1rem;  /* slightly smaller padding */
    font-size: 0.95rem;     /* slightly smaller text */
}