/* B2 Technologies — custom additions over Mikon base */

:root {
    --b2-accent: #91FF00;
    --b2-dark: #010101;
    --b2-muted: #707476;
}

/* ===== Header brand ===== */
.header-top-fixed .brand-text {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
}
.header-top-fixed .brand-accent { color: var(--b2-accent); font-weight: 800; }
.fixed-header .header-top-fixed .brand-text { color: var(--b2-dark); }

/* ===== Language switch ===== */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-right: 10px;
}
.lang-switch .lang { color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; padding: 4px 6px; }
.lang-switch .lang.active { color: #fff; }
.lang-switch .lang:hover { color: var(--b2-accent); }
.lang-switch .lang-sep { color: rgba(255,255,255,.4); }
.fixed-header .lang-switch .lang { color: var(--b2-muted); }
.fixed-header .lang-switch .lang.active { color: var(--b2-dark); }
.fixed-header .lang-switch .lang-sep { color: var(--b2-muted); opacity: .4; }

/* ===== Skill rail (right side of hero) ===== */
.fixed-skill .skill-pill {
    display: inline-block;
    padding: 6px 10px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 600;
    color: var(--b2-dark);
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

/* ===== Hero eyebrow + tagline ===== */
.hero-eyebrow {
    color: var(--b2-accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 18px;
}
.home-section .hs-banner { display: none; }
.hero-tagline {
    color: rgba(255,255,255,.85);
    font-size: 17px;
    line-height: 1.65;
    max-width: 680px;
    margin: 22px 0 30px;
}

/* ===== About (text-only) ===== */
.about-section .about-text { padding: 60px 0; }
.about-section .about-text h6 { color: var(--b2-accent) !important; }
.about-section .about-text h3 { max-width: 820px; margin-left: auto; margin-right: auto; }
.about-section .about-body-lead { font-size: 17px; line-height: 1.75; max-width: 760px; margin: 0 auto 28px; color: rgba(255,255,255,.85) !important; }
.about-section .about-text.text-center-lg { text-align: left; }
@media (min-width: 992px) {
    .about-section .about-text.text-center-lg { text-align: center; }
    .about-section .about-text.text-center-lg .social-icon { justify-content: center !important; }
    .about-section .about-text.text-center-lg .about-pills { justify-content: center; }
}
.about-pills {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin: 0 0 30px;
}
.about-pills span {
    padding: 8px 14px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 99px;
    color: rgba(255,255,255,.9);
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(8px);
}
.about-section .about-banner { display: none; }
.about-section .about-banner::after { display: none !important; }

/* ===== Stack / Skills section ===== */
.stack-section { padding-top: 0 !important; }
.stack-section .section-heading h6 { color: var(--b2-muted); }
.stack-section .stack-note {
    color: var(--b2-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-top: 18px;
    padding: 18px 20px;
    background: #f7f8f5;
    border-left: 3px solid var(--b2-accent);
    border-radius: 0 10px 10px 0;
}

.skills-list { display: flex; flex-direction: column; gap: 18px; }
.skill-row {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 16px 20px;
    transition: box-shadow .25s, transform .25s, border-color .25s;
}
.skill-row:hover { box-shadow: 0 8px 24px rgba(0,0,0,.05); border-color: #ddd; transform: translateY(-1px); }
.skill-row.highlight {
    background: linear-gradient(135deg, #010101 0%, #1a1a1a 100%);
    border-color: var(--b2-accent);
    box-shadow: 0 8px 32px rgba(145,255,0,.18);
}
.skill-row.highlight .skill-label,
.skill-row.highlight .skill-value { color: #fff; }
.skill-row.highlight .skill-sub { color: var(--b2-accent); }
.skill-head { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.skill-label { font-weight: 600; font-size: 15px; color: var(--b2-dark); }
.skill-value {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--b2-dark);
    letter-spacing: 0.02em;
}
.skill-sub {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    color: var(--b2-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 500;
}
.skill-bar {
    height: 6px;
    background: #ececec;
    border-radius: 99px;
    overflow: hidden;
    margin-top: 12px;
}
.skill-row.highlight .skill-bar { background: rgba(255,255,255,.12); }
.skill-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--b2-accent) 0%, #74e000 100%);
    border-radius: 99px;
    transition: width 1.4s cubic-bezier(.22,.61,.36,1);
}
.skill-row.highlight .skill-fill {
    background: linear-gradient(90deg, var(--b2-accent) 0%, #c8ff7a 100%);
}

/* ===== Confidential badge ===== */
.badge-confidential {
    display: inline-block;
    margin-left: 10px;
    padding: 4px 10px;
    background: rgba(255,255,255,.15);
    color: #fff;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    vertical-align: middle;
}

/* ===== Modal placeholder when no image ===== */
.modal-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--b2-dark), #2a2a2a);
    color: var(--b2-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 24px;
    border-radius: 12px;
    text-align: center;
    padding: 20px;
}

/* ===== Project box: dark overlay so green and white pop ===== */
.project-box { position: relative; }
.project-box::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(1,1,1,0.72), rgba(1,1,1,0.45));
    z-index: 1;
}
.project-box > .row { position: relative; z-index: 2; }

/* ===== Contact (dark section) ===== */
.contactus-section { background: var(--b2-dark); }
.contactus-section .form-label { color: rgba(255,255,255,.85); font-weight: 500; }
.contactus-section .form-control {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    padding: 12px 14px;
    border-radius: 10px;
}
.contactus-section .form-control::placeholder { color: rgba(255,255,255,.4); }
.contactus-section .form-control:focus {
    background: rgba(255,255,255,.10);
    border-color: var(--b2-accent);
    box-shadow: 0 0 0 .2rem rgba(145,255,0,.15);
    color: #fff;
}
.contactus-section .contact-info-title { color: #fff; font-weight: 700; margin-bottom: 22px; }
.contactus-section .contact-infos li { color: rgba(255,255,255,.85); }
.contactus-section .contact-infos li h5 { color: #fff; }
.contactus-section .contact-infos li a { color: var(--b2-accent); text-decoration: none; }

/* ===== Section padding ===== */
section.section { padding-top: 90px; padding-bottom: 90px; }
@media (max-width: 767px) {
    section.section { padding-top: 60px; padding-bottom: 60px; }
}

/* Smooth anchor offset for fixed header */
section[id] { scroll-margin-top: 90px; }

/* Mobile menu */
.header-top-fixed.menu-open .main-menu {
    display: flex; flex-direction: column;
    position: fixed; top: 70px; left: 0; right: 0;
    background: #fff; padding: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    z-index: 1000;
}
@media (min-width: 992px) {
    .header-top-fixed.menu-open .main-menu { position: static; flex-direction: row; box-shadow: none; padding: 0; }
}
