/* ============================
   Lion Digital — Main Styles
   ============================ */

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: white;
    border-bottom: 1px solid #eee;
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-title-group a {
    color: var(--color-black);
    text-decoration: none;
}

.header-site-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.2;
}

.header-site-desc {
    font-size: 0.75rem;
    opacity: 0.7;
}

.header-nav {
    display: flex;
}

.header-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.header-nav a {
    padding: 0.5rem 0.75rem;
    color: var(--color-text);
    font-size: 0.9rem;
    border-radius: 0.5rem;
    transition: background 0.2s;
}

.header-nav a:hover {
    background: var(--color-brand-light);
    color: var(--color-blue);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-search-icon {
    color: var(--color-text);
    display: flex;
    padding: 0.5rem;
}

.header-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--color-text);
}

/* Footer */
.site-footer {
    background: var(--color-brand-light);
    margin-top: 4rem;
}

.footer-cta {
    background: linear-gradient(135deg, var(--color-blue), #001a3d);
    color: white;
    padding: 4rem 0;
}

.footer-cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.footer-cta h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-cta p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-cta-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
}

.footer-main {
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.footer-about h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-about p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-brand-light);
    color: var(--color-blue);
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--color-blue);
    color: white;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text);
}

/* Utility */
@media (max-width: 768px) {
    .header-nav { display: none; }
    .header-menu-toggle { display: flex; }
    .footer-cta-inner { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .header-actions .btn-accent { display: none; }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .header-nav a { font-size: 0.8rem; padding: 0.4rem 0.5rem; }
}