html, body {
    height: 100%;
}

.height-100 {
    height: 100%;
}
.width-100 {
    width: 100%;
}

.vh-10 {
    min-height: 10vh !important;
}

.vh-14 {
    min-height: 14% !important;
    min-height: 14vh !important;
}

.vh-75 {
    min-height: 75% !important;
    min-height: 75vh !important;
}

.vh-90 {
    min-height: 90% !important;
    min-height: 90vh !important;
}

.center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-container {
    display: flex;
}

.flex-child {
    flex: 1;
}

.flex-child:first-child {
    margin-right: 20px;
}

footer {
    margin-top: auto;
}

.backgroundImg {
    background-image: url('../images/logo.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.bg-color-lgray {
    --bs-bg-opacity: 1;
    background-color: rgba(243,243,243,255) !important;
}

.bg-color-gray {
    --bs-bg-opacity: 1;
    background-color: rgba(118,113,110,255);
}

.bg-color-beige {
    --bs-bg-opacity: 1;
    background-color: #f2c97f;
}

.btn-beige {
    --bs-btn-color: #000;
    --bs-btn-bg: rgba(242,201,127,255);
    --bs-btn-border-color: #f2c97f;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #ecba5d;
    --bs-btn-hover-border-color: #ecba5d;
    --bs-btn-focus-shadow-rgb: 217, 164, 6;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #ecba5d;
    --bs-btn-active-border-color: #ecba5d;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #f1ce8e;
    --bs-btn-disabled-border-color: #f1ce8e;
}

.text-beige {
    --bs-text-opacity: 1;
    color: #f2c97f;
}

.nav-link-beige {
    font-weight:600;
    color: #f2c97f;
}

.nav-link-beige:hover, .nav-link:focus {
    color: #ecba5d;
}

.nav-link-beige.disabled {
    color: #f1ce8e;
}

/*input field glow*/
.form-control:focus {
    border-color: #f2c97f;
    box-shadow: 0 0 0 0.2rem #f2c97f;
}

.validation-summary .li {
    color: orangered;
}

/* =========================================
   Homepage upgrades — append to site.css
   ========================================= */

/* Hero section */
.hero-section {
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.55);
    pointer-events: none;
}

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-content h1 {
    color: #1a1a1a;
    line-height: 1.15;
}

/* Pricing cards */
.pricing-card {
    border: 1px solid #dee2e6;
    border-radius: 0.75rem;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

    .pricing-card:hover {
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
        transform: translateY(-2px);
    }

.pricing-card--featured {
    border: 2px solid #f2c97f;
}

.pricing-card .bi-x {
    opacity: 0.35;
}

/* Testimonial cards */
.testimonial-card {
    border: 1px solid #dee2e6;
    border-radius: 0.75rem;
    transition: box-shadow 0.2s ease;
}

    .testimonial-card:hover {
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
    }

.testimonial-quote {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

.testimonial-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
    color: #333;
}

/* Section backgrounds */
.bg-light {
    background-color: #fafaf8 !important;
}