/* ==========================================================
   MASTHEAD / LOGO
========================================================== */
.masthead {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 25px;
    padding: 20px 30px;
    background-color: #1f2a44;
    color: white;
    border-bottom: 3px solid #c9a227;
}

/* crest */

.crest {
    height: 110px;
    width: auto;
}

/* title block */

.title-block {
    display: flex;
    flex-direction: column;
}

/* house name */

.house-name {
    font-family: "UnifrakturCook", "Old English Text MT", serif;
    font-size: 3rem;
    font-weight: bold;
}

.motto {
    font-size: 1rem;
    font-style: italic;
    margin-top: 5px;
    color: #d4c27c; /* antique gold */
}

/* ==========================================================
   BUTTONS
========================================================== */
.btn {
    padding: 8px 16px;
    border: 1px solid #0077cc;
    border-radius: 4px;
    background-color: #fff;
    color: #0077cc;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #0077cc;
    color: #fff;
}

/* ==========================================================
   CARDS / PANELS
========================================================== */
.card {
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* ==========================================================
   FOOTER
========================================================== */

.site-footer {
    background: #f8f8f8;
    border-top: 1px solid #ddd;
    padding: 15px 20px;
    font-size: 14px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    color: #990033;
    font-weight: bold;
}

.footer-links a {
    margin-left: 18px;
    text-decoration: none;
    color: #333;
}

.footer-links a:hover {
    text-decoration: underline;
    color: #b22222;
}

/* ==========================================================
   RESEND LINKS FOR EMAIL VERIFICATION
========================================================== */

.resend-link {
    margin-top: 6px;
    text-align: center;
}

.resend-link a {
    font-size: 13px;
    color: #1f2a44;
    text-decoration: underline;
}

.resend-link a:hover {
    color: #b22222;
}

/* ==========================================================
   CONSTRUCTION PAGE INCLUDE
========================================================== */
.construction {
    text-align: center;
    padding: 40px 20px;
    border: 1px dashed #c9a227;
    border-radius: 8px;
    color: #aaa;
}