﻿:root {
    --hg-burgundy: #7A1F2B;
    --hg-burgundy-dark: #57141D;
    --hg-gold: #C6A15B;
    --hg-gold-light: #E2CB9D;
    --hg-stone: #D8C8A8;
    --hg-cream: #FAF7F1;
    --hg-light: #F5F2ED;
    --hg-dark: #302A27;
    --hg-muted: #756D68;
}

html {
    min-height: 100%;
}

body {
    background-color: var(--hg-light);
    color: var(--hg-dark);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Main content */

.body-content {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
}

/* Form controls */

input,
select,
textarea {
    max-width: 280px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--hg-gold);
    box-shadow: 0 0 0 0.20rem rgba(198, 161, 91, 0.18);
}

/* Common colors */

.text-maroon,
.text-hg-burgundy {
    color: var(--hg-burgundy) !important;
}

.text-hg-gold {
    color: var(--hg-gold) !important;
}

.bg-hg-burgundy {
    background-color: var(--hg-burgundy) !important;
}

.bg-hg-cream {
    background-color: var(--hg-cream) !important;
}

/* Primary button */

.btn-hg-primary {
    background: linear-gradient( 135deg, var(--hg-burgundy), var(--hg-burgundy-dark) );
    border: none;
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    padding: 10px 20px;
}

    .btn-hg-primary:hover,
    .btn-hg-primary:focus {
        background: var(--hg-burgundy-dark);
        color: #fff;
    }

/* Cards */

.hg-card {
    border: 0;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(48, 42, 39, 0.08);
}

.hg-card-header {
    border-bottom: 1px solid #eee7dc;
    background: var(--hg-cream);
    color: var(--hg-burgundy);
    font-weight: 700;
}

/* Footer */

.footer-dark {
    background: linear-gradient( 135deg, var(--hg-burgundy-dark), var(--hg-burgundy) );
    color: rgba(255,255,255,.90);
    padding: 30px 0 20px;
}

    .footer-dark a {
        color: #fff;
    }

.footer-policy-row {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.18);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
}

    .footer-policy-row a {
        color: #fff;
        text-decoration: none;
        opacity: .90;
    }

        .footer-policy-row a:hover,
        .footer-policy-row a:focus {
            color: var(--hg-gold-light);
            text-decoration: underline;
            opacity: 1;
        }

.footer-policy-separator {
    color: rgba(255,255,255,.45);
}

/* Responsive */

@media screen and (min-width:768px) {

    .body-content {
        padding: 0;
    }
}

@media (max-width:576px) {

    .footer-policy-row {
        flex-direction: column;
        gap: 7px;
    }

    .footer-policy-separator {
        display: none;
    }
}
