footer{
    
    height: auto;
    width: 100vw;
    padding-top: 40px;
    color: #fff;
}


.footer-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.footer-bottom{
    background:rgb(33, 37, 41);
    width: 100vw;
    padding: 20px 0;
    text-align: center;
}
.footer-bottom p{
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
}

.navbar-nav .nav-item a:hover {
    color: white !important;
    background-color: #b8962e;
  }

.card {
    background-color: var(--card);
    border: none;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: all 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

:root {
    --bg: #f4f1ec;          /* warm background */
    --card: #ffffff;        /* clean card */
    --text: #1f2a37;        /* dark navy text */
    --muted: #6b7280;       /* secondary text */
    --primary: #212529;     /* deep navy */
    --accent: #b8962e;      /* soft gold */
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

.site-footer {
    background-color: #0e1c35 !important;
    color: #e5e7eb;
    margin-top: auto;
    width: 100%;
}

.site-footer p {
    margin: 0;
    font-size: 14px;
    opacity: 0.85;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

.site-navbar {
    /*background-color: var(--primary) !important;*/
    background-color: #0e1c35 !important;
}

.reveal { opacity:0; transform:translateY(22px); transition:opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity:1; transform:none; }



.btn-submit {
    background-color: #0e1c35;
    color: #fff;
    border: none;
    padding: .85rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .05em;
    border-radius: 4px;
    width: 100%;
    transition: background-color .2s, transform .2s, box-shadow .2s;
}

.btn-submit:hover {
    background-color: #b8962e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 150, 46, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
    box-shadow: none;
}

