/* Shared footer styles — used across all pages with the .site_footer block */
/* Loaded after style.css / page-specific CSS so it can override if needed.   */

.site_footer {
    background: #050608;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    padding: 50px 5% 32px;
    margin-top: 60px;
}
.footer_inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.footer_logo_link {
    display: inline-block;
    margin-bottom: 22px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}
.footer_logo_link:hover { opacity: 0.75; }
.footer_logo {
    display: block;
    max-width: 280px;
    width: 60vw;
    height: auto;
}
.footer_bottom {
    color: rgba(180, 180, 180, 0.5);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
}
.footer_bottom p { margin: 0; }

/* ─── Footer newsletter signup ──────────────────────────────────────── */

.footer_newsletter {
    margin: 4px 0 22px;
    text-align: center;
}
.footer_newsletter_label {
    font-size: 10px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}
.footer_newsletter_form {
    display: flex;
    gap: 8px;
    justify-content: center;
    max-width: 320px;
    margin: 0 auto;
}
.footer_newsletter_input {
    flex: 1;
    min-width: 0;
    background: #0d0d0d;
    border: 1px solid #252525;
    border-radius: 999px;
    color: #d0d0d0;
    padding: 8px 12px;
    font-family: monospace;
    font-size: 12px;
    transition: border-color 0.2s;
}
.footer_newsletter_input:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.5);
}
.footer_newsletter_btn {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 999px;
    color: #d4af37;
    font-family: monospace;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, border-color 0.2s;
}
.footer_newsletter_btn:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.65);
}
.footer_newsletter_msg {
    font-size: 11px;
    margin-top: 8px;
    display: none;
    color: #d4af37;
}

/* Left-align inside column-layout footer brand block */
.footer_brand .footer_newsletter { text-align: left; }
.footer_brand .footer_newsletter_form { justify-content: flex-start; margin: 0; }

/* ─── Mobile responsive ─────────────────────────────────────────────── */

@media (max-width: 600px) {
    .site_footer { padding: 36px 5% 24px; margin-top: 40px; }
    .footer_logo { width: 70vw; max-width: 240px; }
}
@media (max-width: 380px) {
    .footer_logo { width: 80vw; max-width: 200px; }
    .footer_bottom { font-size: 0.7rem; }
}
