/* =============================================================================
   HOME-BASE.CSS — ENIBUSINESS Homepage: Variables, Reset & Layout Utilities
   Scope   : home page only (/index.html)
   Version : 1
   ============================================================================= */


/* =============================================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================================= */

:root {
  /* Colors */
  --color-bg:             #000;
  --color-text:           #fff;
  --color-text-secondary: rgba(255, 255, 255, 0.7);
  --color-border:         #353535;
  --color-accent:         #245AF6;
  --color-accent-dark:    #00217f;
  --color-surface:        #121212;

  /* Layout */
  --section-padding:       6rem 0;
  --section-max-width:     min(1180px, 92%);
  --section-narrow-width:  min(900px, 92%);
}


/* =============================================================================
   2. RESET & BASE
   ============================================================================= */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  transition: background-color 0.3s ease, color 0.3s ease;
}


/* =============================================================================
   3. SHARED LAYOUT UTILITIES
   ============================================================================= */

/* Constrained inner wrapper, used inside every section */
.section-inner {
  width: 50%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section-inner {
    width: 92%;
  }
}

/* Shared section title */
.section-h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

/* Inline emphasis override (used inside .section-body-text) */
.text-highlight {
  color: var(--color-text);
}

/* Responsive line-break helpers */
.desktop-br {
  display: none;
}

@media (min-width: 768px) {
  .desktop-br {
    display: inline;
  }
}

.mob-br {
  display: none;
}

@media (max-width: 768px) {
  .mob-br {
    display: block;
  }
}
