/* =========================================
   BRAND COLOR TOKENS (from Brain Busters logo)
   --pink:   #FF1B8D  — neon pink (brain / text)
   --green:  #3DD68C  — circuit green (right brain)
   --yellow: #FFD700  — lightning bolt
   --dark:   #0D0D1A  — deep dark background
   ========================================= */
:root {
    --pink:   #FF1B8D;
    --green:  #3DD68C;
    --yellow: #FFD700;
    --dark:   #0D0D1A;
    --frame:  #000000;
}

/* =========================================
   RESET & BASE
   ========================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    /* Pure black body = visible as the frame border */
    background: var(--frame);
}

a {
    text-decoration: none;
    color: inherit;
}

/* =========================================
   FULL-SCREEN BACKGROUND
   sits INSIDE the frame (inset by frame size)
   ========================================= */
#background {
    position: fixed;
    top: 60px;
    left: 60px;
    right: 60px;
    bottom: 60px;
    z-index: 0;
    overflow: hidden;
    background-color: var(--dark); /* dark brand backdrop */
}

.bg-img {
    position: absolute;
    inset: 0;
    background-image: url('images/bg_image.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.25; /* decreased opacity for better text contrast */
}

/* Dark overlay with a subtle brand-colored tint */
.bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 13, 26, 0.70) 0%,
        rgba(255, 27, 141, 0.08) 50%,
        rgba(13, 13, 26, 0.70) 100%
    );
}

/* =========================================
   OUTER WRAPPER
   also inset by frame size to align with bg
   ========================================= */
#outer-wrapper {
    position: fixed;
    top: 60px;
    left: 60px;
    right: 60px;
    bottom: 60px;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

/* =========================================
   ROW 1: HEADER
   ========================================= */
#row-header {
    flex-shrink: 0;
    padding: 26px 0 0;
}

#row-header .container,
#row-content .container,
#row-footer .container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

header {
    display: flex;
    align-items: center;
}

/* SOON brand — neon pink glow */
#brand {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--pink);
    display: inline-block;
    transition: opacity 0.2s, text-shadow 0.2s;
    text-shadow: 0 0 12px rgba(255, 27, 141, 0.7),
                 0 0 24px rgba(255, 27, 141, 0.4);
}

#brand:hover {
    opacity: 0.85;
    text-shadow: 0 0 20px rgba(255, 27, 141, 1),
                 0 0 40px rgba(255, 27, 141, 0.6);
}

/* =========================================
   ROW 2: MAIN CONTENT
   ========================================= */
#row-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

#row-content .container {
    display: flex;
    align-items: center;
    width: 100%;
}

.content-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT COLUMN */
.col-left {
    flex: 1;
    max-width: 720px;
}

/* Sub-heading — brand green */
.sub-heading {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--green);
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}

/* Main heading — white with pink accent on hover */
.main-heading {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}

.body-text {
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.60);
    max-width: 320px;
}

/* RIGHT COLUMN: FORM CARD */
.col-right {
    flex-shrink: 0;
    width: 280px;
}

/* Form card — dark bg with pink top border accent */
.form-card {
    background: rgba(13, 13, 26, 0.88);
    border: 1px solid rgba(255, 27, 141, 0.25);
    border-top: 2px solid var(--pink);
    padding: 26px 22px 20px;
}

/* Form title — pink */
.form-title {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--pink);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
    text-shadow: 0 0 10px rgba(255, 27, 141, 0.4);
}

.form-group {
    margin-bottom: 10px;
}

/* Inputs — pink focus border */
.form-card input[type="text"],
.form-card input[type="email"],
.form-card input[type="tel"] {
    width: 100%;
    padding: 9px 11px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    -webkit-appearance: none;
}

.form-card input::placeholder {
    color: rgba(255, 255, 255, 0.38);
}

.form-card input:focus {
    border-color: var(--pink);
    background: rgba(255, 27, 141, 0.05);
}

/* Button — neon pink background */
.form-btn-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 14px;
}

#form-submit {
    padding: 9px 18px;
    background: var(--pink);
    border: none;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 14px rgba(255, 27, 141, 0.5);
}

#form-submit:hover {
    background: #ff3da0;
    box-shadow: 0 0 24px rgba(255, 27, 141, 0.8);
}

#form-submit:active {
    background: #e0006e;
}

.form-status {
    font-size: 0.78rem;
    margin-top: 8px;
    min-height: 16px;
    text-align: center;
}

.form-status.success {
    color: var(--green);
}

.form-status.error {
    color: #fca5a5;
}

/* =========================================
   ROW 3: FOOTER
   ========================================= */
#row-footer {
    flex-shrink: 0;
    padding: 0 0 24px;
}

footer {
    display: flex;
    align-items: center;
}

/* Social icons — pink on hover */
.social-icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.social-icons a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    transition: color 0.2s, transform 0.2s, text-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    color: var(--pink);
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(255, 27, 141, 0.7);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 768px) {

    html,
    body {
        overflow: auto;
    }

    #outer-wrapper,
    #background {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        min-height: 100vh;
    }

    #background {
        position: fixed;
        inset: 8px;
    }

    #outer-wrapper {
        position: relative;
        min-height: 100vh;
        padding: 8px;
    }

    #row-header .container,
    #row-content .container,
    #row-footer .container {
        padding: 0 16px;
    }

    .content-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .col-left {
        max-width: 100%;
    }

    .col-right {
        width: 100%;
    }

    .main-heading {
        font-size: 2.2rem;
    }
}

.sub-heading-1{
	    margin: 10px 10px 40px 10px;
}