/* DalTech theme overrides
 * OrchardCore-specific markup fixes that must win over main.css.
 * Loaded LAST via the "DalTech" style resource (depends on DalTech-style).
 */

/* OC renders a LandingPage's FlowPart inside <section class="flow">. DalTech's
 * CSS applies large section-padding to every <section>, which pushes the hero
 * down and breaks a transparent/overlay header. Zero it out for the FlowPart
 * wrapper. (See SolariaTheme/CLAUDE.md gotcha #6.) */
section.flow {
    padding: 0;
}

/* Header logo: the DalTech header (.header-section-1) is solid white in BOTH its
 * normal and sticky states (background-color: var(--white)), so always show the
 * DARK logo — matching the template's single dark logo.svg. The earlier white/dark
 * swap assumed a transparent-over-hero header this theme doesn't use, which left the
 * white logo (white-logo.svg is fill="white") rendering white-on-white and invisible. */
.header-1 .logo-white,
#header-sticky.sticky .logo-white { display: none; }
.header-1 .logo-dark,
#header-sticky.sticky .logo-dark { display: inline-block; }

/* M2+: add chrome fixes here (mobile meanmenu container, etc.). */
