/* --------------------------------------------------
   CrewCoord Main Layout / Components
   Works with theme.css (Black/Gold/Working Blue)
-----------------------------------------------------*/

/* --------------------------------------------------
   Typography
-----------------------------------------------------*/
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--cc-black);
    color: #eaeaea;
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--cc-gold);
    text-transform: uppercase;
}

p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* --------------------------------------------------
   Hero Section
-----------------------------------------------------*/
.hero {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(
        rgba(0,0,0,0.8),
        rgba(0,0,0,0.8)
    ),
    url('/static/img/crewcoord-bg.jpg'); /* optional */
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid var(--cc-gold);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--cc-gold);
}

.hero p {
    font-size: 1.25rem;
    color: #dcdcdc;
    max-width: 650px;
    margin: 0 auto;
}

/* --------------------------------------------------
   Forms
-----------------------------------------------------*/
.form-label {
    color: var(--cc-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

input[type="email"]::placeholder {
    color: #999;
}

/* --------------------------------------------------
   Section Blocks
-----------------------------------------------------*/
.section {
    padding: 4rem 0;
    border-top: 1px solid var(--cc-gold);
}

.section-dark {
    background-color: #050505;
}

.section-alt {
    background-color: #0d0d0d;
}

/* --------------------------------------------------
   Hard Edge Cards / Blocks
-----------------------------------------------------*/
.block {
    border: 2px solid var(--cc-gold);
    padding: 2rem;
    background-color: var(--cc-black-soft);
    color: #fff;
}

.block-title {
    color: var(--cc-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* --------------------------------------------------
   Animations & Hover Effects
-----------------------------------------------------*/
.glow-gold {
    transition: box-shadow 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.glow-gold:hover {
    box-shadow: 0 0 10px var(--cc-gold);
    border-color: var(--cc-gold-light) !important;
}

/* Industrial neon-blue glow for CTA buttons */
.glow-blue:hover {
    box-shadow: 0 0 10px var(--cc-blue);
}

/* --------------------------------------------------
   Utility Spacing
-----------------------------------------------------*/
.spacer-sm { height: 1rem; }
.spacer-md { height: 2rem; }
.spacer-lg { height: 4rem; }

/* --------------------------------------------------
   Footer
-----------------------------------------------------*/
.footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--cc-gold);
    color: #bfbfbf;
    font-size: 0.9rem;
}
