/* ================================
   AOG Investigations Division
   AndersonInvestigations.net
   Unified Professional CSS
   ================================ */

/* ---- Global Page Background ---- */
body {
    margin: 0;
    padding: 0;
    background-image: url('images/marble.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    font-family: Arial, Helvetica, sans-serif;
    color: #e8e8e8;
    text-align: center;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
}

/* ---- Homepage Logo Spacing ---- */
.logo-placeholder {
    margin-top: 10px;      /* spacing below red status banner */
    margin-bottom: 2.5px;   /* spacing before page title */
    text-align: center;
}

/* Unified seal styling */
.seal {
    display: block;
    margin: 20px auto 10px auto; /* tightened spacing */
    max-width: 300px;            /* smaller, consistent size */
    width: 90%;
    height: auto;
}

/* ---- No Overlay ---- */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: transparent;
    pointer-events: none;
    z-index: -1;
}

/* ---- Main Container ---- */
.container {
    max-width: 800px;
    margin: auto;
    padding: 40px 20px;
    background: transparent;
    border-radius: 12px;
}

/* ---- Title ---- */
h1 {
    font-size: 48px;
    margin-top: 5px;      /* tightened spacing */
    margin-bottom: 10px;
    color: #ffffff;
    letter-spacing: 2px;
}

/* ---- Subtitle ---- */
h2 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 30px;
    color: #4a8f4f;
}

/* ---- Paragraphs ---- */
p {
    font-size: 18px;
    line-height: 1.6;
    color: #e8e8e8;
}

/* ---- Links ---- */
a {
    color: #4a8f4f;
    text-decoration: none;
}

a:hover {
    color: #6fbf73;
    text-decoration: underline;
}

/* ---- Footer ---- */
footer {
    margin-top: 40px;
    font-size: 14px;
    color: #ffffff;
    opacity: 0.85;
}

/* ================================
   Legacy Seal Caption (not used)
   ================================ */

.seal-caption {
    font-size: 18px;
    font-weight: bold;
    color: #ff3333;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 1px;
    text-transform: uppercase;

    backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0.25);
    padding: 8px 12px;
    border-radius: 6px;

    margin-bottom: 12px;
}

/* ================================
   Contact Page – Updated Structure
   ================================ */

.contact-block {
    margin-bottom: 32px;
    text-align: left;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-icon {
    font-size: 1.4rem;
    line-height: 1;
}

.contact-email {
    font-weight: 600;
    color: #4a8f4f;
}

.contact-email:hover {
    color: #6fbf73;
    text-decoration: underline;
}

.contact-title {
    font-weight: 700;
    color: #ffffff;
}

.contact-description {
    margin-left: 34px;
    margin-top: 6px;
    line-height: 1.5;
    color: #e8e8e8;
}

/* Remove legacy contact-entry system */
.contact-entries,
.contact-entry,
.entry-icon,
.entry-desc {
    all: unset;
}

/* ================================
   404 Page
   ================================ */

.error-container {
    max-width: 600px;
    margin: 80px auto;
    padding: 40px 20px;
    text-align: center;
}

.error-container h1 {
    font-size: 42px;
    color: #ffffff;
}

.error-container p {
    font-size: 18px;
    color: #e8e8e8;
}

.home-link {
    display: inline-block;
    margin-top: 20px;
    font-size: 20px;
    color: #4a8f4f;
}

.home-link:hover {
    color: #6fbf73;
}
/* ---- Homepage Seal Spacing Override ---- */
.logo-placeholder .seal {
    margin-top: 5px !important;
    margin-bottom:2.5px !important;
}

