/*
===============================================================
  ⌁ Synectx Partner Portal — File Version Info
===============================================================
  File       : styles.css
  Type       : CSS
  Version    : 1.1.0
  Created    : 6/26/2025
  Updated    : 6/27/2025
  Author     : Jared A. Lui | Synectx.com
---------------------------------------------------------------
  Description:
    Custom CSS used exclusively for the root splash/login page
    of the Synectx Partner Portal (index.php). Includes styling
    for logo, entry button, tagline, and the custom login modal.

    This sheet is SaaS CMS-ready with variable-driven branding,
    scoped class naming, and layout consistency for theming.

  Change Log:
    - 6/26/2025 v1.0.0 • Initial version.
    - 6/27/2025 v1.1.0 • Added CMS theming, CSS vars, scoped classes,
                         and cleaner structure for long-term reuse.
===============================================================
  © 2025 Synectx. All rights reserved.
  https://synectx.com • Build smarter systems.
===============================================================
*/

/* 🌐 BRANDING VARIABLES (override via CMS or <style> injection) */
:root {
  --brand-bg: #ffffff;
  --brand-text: #000000;
  --brand-accent: #d9534f;
  --brand-accent-hover: #c9302c;
  --brand-muted: #666666;
  --brand-font: 'Arial', sans-serif;
}

/* 🔲 MAIN PAGE WRAPPER */
.synectx-login-wrapper {
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--brand-bg);
  font-family: var(--brand-font);
  color: var(--brand-text);
  text-align: center;
}

/* 🖼 LOGO */
.synectx-login-wrapper .logo {
  max-width: 200px;
  width: 40%;
  height: auto;
}

/* 🔘 ENTER SITE BUTTON */
.enter-link {
  margin-top: 20px;
  text-decoration: none;
  color: #fff;
  background-color: var(--brand-accent);
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  transition: background-color 0.3s ease;
  cursor: pointer;
  border: none;
}

.enter-link:hover {
  background-color: var(--brand-accent-hover);
}

/* ✍️ TAGLINE BELOW LOGO */
.tagline {
  font-size: 1.2rem;
  color: var(--brand-muted);
  margin-top: 12px;
  font-style: italic;
}

/* 🔒 MODAL OVERLAY (DARK BACKDROP) */
.login-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8); /* stronger backdrop */
  z-index: 1050;
}

/* 📦 LOGIN MODAL BOX WRAPPER */
.login-modal-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1051;
  width: 100%;
  max-width: 400px;
}

/* 📋 LOGIN CARD STYLING (Bootstrap-based) */
.login-modal-box .card {
  border-radius: 12px;
  background-color: var(--brand-bg);
  color: var(--brand-text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35); /* sharper shadow */
}
