/*
Theme Name: FMI Fullscreen Child
Template: twentytwentyfive
Author: Velocity Ascent Dev Team
Version: 1.1.8
Description: Child theme of Twenty Twenty-Five with ASV Masonry integration, avatar modal, SVG logo, pure fade, static header, and full white background.
*/

/* ===========================================================
   GLOBAL WHITE BACKGROUND OVERRIDE
   =========================================================== */
:root,
body,
html,
main,
.site,
.wp-site-blocks,
header,
footer,
.wp-block-group,
.wp-block-template-part,
.site-header,
.site-footer {
  background: #ffffff !important;
  background-color: #ffffff !important;
  color-scheme: light !important;
}

body {
  background: #ffffff !important;
}

body::before {
  background: none !important;
}

/* ===========================================================
   LOGO FADE-IN (pure fade, slower)
   =========================================================== */
@keyframes fmLogoFadeIn {
  0%   { opacity: 0.01; }
  100% { opacity: 1; }
}

.asv-header-center {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.fm-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.fm-logo {
  display: block;
  margin: 0 auto;
  height: auto;
  width: auto;
  max-width: 320px;
  min-height: 40px;
  opacity: 0.01;
  animation: fmLogoFadeIn 1.6s ease-in forwards;
}

/* ===========================================================
   HEADER (non-sticky)
   =========================================================== */
.asv-header {
  background: #ffffff;
  padding: 12px 16px;
}

@media (max-width:782px) {
  .asv-header{padding:8px 6px;}
  .fm-logo { max-width: 240px; min-height: 36px; }
}
