﻿/* ===== Buttons ===== */
.btn-pill {
    border-radius: 999px;
}

.btn-orange {
    background: var(--orange);
    color: #fff;
    border: 3px solid var(--orange);
    border-radius: 999px;
    font-weight: 800;
    padding: .55rem 1.25rem;
    transition: all 0.2s ease-in-out;
}

    .btn-orange:hover,
    .btn-orange:focus {
        background: #d94d1f;
        border-color: #d94d1f;
        color: #fff;
        text-decoration: none;
    }

/* Outline Orange */
.btn-outline-orange {
    border: 3px solid var(--orange);
    color: var(--orange);
    border-radius: 999px;
    font-weight: 800;
    padding: .55rem 1.25rem;
    background: transparent;
    transition: all 0.2s ease-in-out;
}

    .btn-outline-orange:hover,
    .btn-outline-orange:focus {
        background: var(--orange);
        color: #fff;
        border-color: var(--orange);
    }

/* Outline White */
.btn-outline-white {
    border: 4px solid #fff;
    color: #fff;
    border-radius: 999px;
    padding: .6rem 1.4rem;
    font-weight: 800;
    transition: all 0.2s ease-in-out;
}

    .btn-outline-white:hover,
    .btn-outline-white:focus {
        background: #fff;
        color: var(--orange);
    }

/* ===== Image Frames & Stacks ===== */
.img-frame-orange {
    display: block;
    background: none !important;
    border-radius: 0 !important;
    margin: 1rem 0;
}

    .img-frame-orange > img {
        display: block;
        width: 100%;
        height: auto;
    }

.img-stack {
    display: flex;
    flex-direction: column;
    row-gap: 0.75rem;
}

    .img-stack .img-frame-orange {
        margin: 0;
    }

/* ===== Footer ===== */
.footer-modern {
    background: #fff;
    padding: 0 10%;
}

.social-link {
    color: #111;
    transition: color .2s;
}

    .social-link:hover {
        color: var(--orange);
    }
