/* =====================================================================
   STATIC INFO PAGES — about / rules / keeping / send / 404.
   Loaded after base.css.

   These five pages each used to carry their own <style> block in
   <head>, and three of them (about, rules, send) had near or fully
   IDENTICAL copies of .info-page / .page-hero / .steps / .info-card
   pasted in by hand (rules.html and send.html were byte-for-byte
   identical — see the audit report). Consolidating them here means a
   future style tweak happens once, not three-to-five times.
   ===================================================================== */
body{
    background-color: var(--bg-pages);
}
.info-page {
    max-width: 680px;
    margin: 0 auto;
    padding: 2rem 1.2rem 4rem;
}

.page-hero {
    text-align: center;
    padding: 3rem 1rem 2rem;
}

.page-hero h1 {
    font-weight: 400;
    letter-spacing: 5px;
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: .5rem;
}

.page-hero p {
    font-size: .85rem;
    opacity: .6;
    letter-spacing: 2px;
}

.section-title {
    text-align: center;
    font-weight: 400;
    letter-spacing: 3px;
    font-size: .95rem;
    color: #555;
    margin: 2rem 0 1.2rem;
}

/* -------- About page -------- */
.profile-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.profile-box img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(201, 162, 77, .4);
    box-shadow: var(--shadow-sm);
}

.profile-box .name {
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: var(--gold);
}

.info-card {
    background: rgba(255, 255, 255, .7);
    border-radius: 20px;
    padding: 1.8rem 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .07);
    border: 1px solid rgba(201, 162, 77, .2);
    margin-bottom: 1.2rem;
    line-height: 2;
    font-size: .95rem;
    color: #333;
}

.info-card strong {
    color: var(--gold);
}

/* .info-card is reused (more compactly) on the rules page as an icon + text row */
.rules .info-card {
    padding: 1.5rem 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.rule-icon {
    font-size: 1.6rem;
    min-width: 2.2rem;
    text-align: center;
}

.rule-body h4 {
    font-size: .95rem;
    color: var(--gold);
    margin: 0 0 .4rem;
}

.rule-body p {
    font-size: .88rem;
    line-height: 1.9;
    color: #444;
    margin: 0;
}

.charity-box {
    background: linear-gradient(135deg, rgba(201, 162, 77, .15), rgba(201, 162, 77, .05));
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(201, 162, 77, .3);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: .95rem;
    line-height: 2;
}

.charity-box .paw {
    font-size: 2rem;
    margin-bottom: .5rem;
}

.contact-section {
    text-align: center;
    margin-top: 2rem;
}

.contact-section h3 {
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .8rem 1.6rem;
    border-radius: var(--radius-round);
    background: linear-gradient(135deg, var(--gold), #e8d9a8);
    color: var(--black);
    font-weight: 700;
    font-size: .9rem;
    transition: .3s;
    box-shadow: 0 4px 15px rgba(201, 162, 77, .3);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 162, 77, .4);
}

/* -------- Numbered steps (rules / send) -------- */
.steps {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
    padding: 0;
    list-style: none;
    position: relative;
}

.step {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    position: relative;
    padding-bottom: 1.5rem;
}

.step:last-child {
    padding-bottom: 0;
}

.step-num {
    min-width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #e8d9a8);
    color: var(--black);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(201, 162, 77, .35);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.step-line {
    position: absolute;
    right: 20px;
    top: 42px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgba(201, 162, 77, .4), transparent);
}

.step:last-child .step-line {
    display: none;
}

.step-body {
    background: rgba(255, 255, 255, .7);
    border-radius: 16px;
    padding: 1.1rem 1.3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
    border: 1px solid rgba(201, 162, 77, .15);
    flex: 1;
}

.step-body h4 {
    font-size: .95rem;
    color: var(--gold);
    margin: 0 0 .3rem;
}

.step-body p {
    font-size: .88rem;
    line-height: 1.9;
    color: #444;
    margin: 0;
}

/* -------- Keeping (care tips) page -------- */
.tip-card {
    background: rgba(255, 255, 255, .7);
    border-radius: 20px;
    padding: 1.5rem 1.8rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .07);
    border: 1px solid rgba(201, 162, 77, .2);
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.tip-icon {
    font-size: 1.6rem;
    min-width: 2.2rem;
    text-align: center;
}

.tip-body h4 {
    font-size: .95rem;
    color: var(--gold);
    margin: 0 0 .4rem;
    letter-spacing: 1px;
}

.tip-body p {
    font-size: .88rem;
    line-height: 1.9;
    color: #444;
    margin: 0;
}

.warning-box {
    background: linear-gradient(135deg, rgba(201, 162, 77, .12), rgba(201, 162, 77, .04));
    border-radius: 20px;
    padding: 1.4rem 1.6rem;
    border: 1px solid rgba(201, 162, 77, .3);
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

/* -------- 404 page -------- */
.not-found {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1.5rem;
}

.not-found-icon {
    font-size: 3rem;
    margin-bottom: .5rem;
    animation: notFoundSwing 2.5s ease-in-out infinite;
}

@keyframes notFoundSwing {
    0%, 100% { transform: rotate(-8deg); }
    50%      { transform: rotate(8deg); }
}

.not-found-number {
    font-size: clamp(6rem, 20vw, 10rem);
    font-weight: 300;
    letter-spacing: 12px;
    color: var(--gold);
    line-height: 1;
    opacity: .85;
    animation: notFoundFloat 3s ease-in-out infinite;
}

@keyframes notFoundFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

.not-found-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 1.2rem auto;
}

.not-found h2 {
    font-weight: 400;
    letter-spacing: 4px;
    font-size: 1.2rem;
    color: #333;
    margin: 0 0 .8rem;
}

.not-found p {
    font-size: .9rem;
    color: #666;
    max-width: 320px;
    line-height: 1.9;
    margin: 0 auto 2rem;
}

.not-found-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-home,
.btn-cats {
    padding: .85rem 2rem;
    border-radius: var(--radius-round);
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: 1px;
    transition: .3s;
    font-family: inherit;
}

.btn-home {
    background: linear-gradient(135deg, var(--gold), #e8d9a8);
    color: var(--black);
    box-shadow: 0 6px 20px rgba(201, 162, 77, .3);
}

.btn-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(201, 162, 77, .4);
}

.btn-cats {
    background: rgba(255, 255, 255, .7);
    color: #333;
    font-weight: 600;
    border: 1px solid rgba(201, 162, 77, .4);
}

.btn-cats:hover {
    background: rgba(201, 162, 77, .15);
    transform: translateY(-3px);
}

.quick-links {
    margin-top: 3rem;
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.quick-link {
    background: rgba(255, 255, 255, .65);
    border-radius: 14px;
    padding: .7rem 1.2rem;
    font-size: .85rem;
    color: #444;
    border: 1px solid rgba(201, 162, 77, .2);
    transition: .3s;
}

.quick-link:hover {
    background: rgba(201, 162, 77, .15);
    color: var(--black);
    transform: translateY(-2px);
}
