/* =============================================================
   BrayAutoTech – Global Stylesheet
   Client  : BrayAutoTech
   Agency  : ByteFLASH
   Version : 1.0 – Holding Page
   ============================================================= */

/* ── Brand Tokens ─────────────────────────────────────────── */
:root {
    --bat-purple:       #482683;
    --bat-purple-dark:  #321a5e;
    --bat-purple-light: #6a3db5;
    --bat-white:        #ffffff;
    --bat-off-white:    #f5f3fa;
    --bat-grey:         #c8bfe0;
}

/* ── Reset / Base ─────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: var(--bat-purple-dark);
    color: var(--bat-white);
}

/* ── Holding Page Layout ──────────────────────────────────── */
.holding-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(
        145deg,
        var(--bat-purple-dark) 0%,
        var(--bat-purple) 55%,
        var(--bat-purple-light) 100%
    );
}

/* ── Header Bar ───────────────────────────────────────────── */
.holding-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.holding-logo {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--bat-white);
    text-decoration: none;
}

.holding-logo span {
    color: var(--bat-grey);
    font-weight: 400;
}

/* ── Hero / Main Content ──────────────────────────────────── */
.holding-hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
}

.holding-card {
    max-width: 680px;
    width: 100%;
    text-align: center;
}

.holding-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--bat-white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.holding-title {
    font-size: clamp(2.2rem, 7vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--bat-white);
    margin-bottom: 1.25rem;
}

.holding-title .highlight {
    color: var(--bat-grey);
}

.holding-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* ── Divider Rule ─────────────────────────────────────────── */
.holding-divider {
    width: 60px;
    height: 3px;
    background: var(--bat-grey);
    border: none;
    border-radius: 2px;
    margin: 0 auto 2.5rem;
    opacity: 0.6;
}

/* ── Contact Info Pills ───────────────────────────────────── */
.holding-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.55rem 1.25rem;
    font-size: 0.9rem;
    color: var(--bat-white);
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.contact-pill:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--bat-white);
    text-decoration: none;
}

.contact-pill svg {
    flex-shrink: 0;
    opacity: 0.8;
}

/* ── Footer ───────────────────────────────────────────────── */
.holding-footer {
    padding: 1.25rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
}

.holding-footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.holding-footer a:hover {
    color: var(--bat-white);
}

/* ── Utility ──────────────────────────────────────────────── */
.text-muted-light {
    color: rgba(255, 255, 255, 0.55) !important;
}
