/*
Theme Name: Fund Black Tech
Theme URI: https://fundblacktech.com
Description: Custom theme for Fund Black Tech - no page builder
Version: 1.0
Author: C&I Studios
*/

/* === FONTS === */
@font-face {
    font-family: 'BW Modelica';
    src: url('fonts/BwModelica-Regular.woff') format('woff'),
         url('fonts/BwModelica-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'BW Modelica';
    src: url('fonts/BwModelica-Light.woff') format('woff'),
         url('fonts/BwModelica-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'BW Modelica';
    src: url('fonts/BwModelica-Medium.woff') format('woff'),
         url('fonts/BwModelica-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'BW Modelica';
    src: url('fonts/BwModelica-Bold.woff') format('woff'),
         url('fonts/BwModelica-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'BW Modelica';
    src: url('fonts/BwModelica-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'BW Modelica';
    src: url('fonts/BwModelica-Thin.woff') format('woff'),
         url('fonts/BwModelica-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'BW Modelica';
    src: url('fonts/BwModelica-Hairline.woff') format('woff'),
         url('fonts/BwModelica-Hairline.ttf') format('truetype');
    font-weight: 50;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --color-purple: rgb(161, 112, 217);
    --color-dark: rgb(28, 28, 28);
    --color-gray: rgb(128, 128, 128);
    --color-mint: rgb(184, 230, 225);
    --color-pink: rgb(245, 212, 209);
    --color-light-gray: rgb(235, 235, 235);
    --color-mid-gray: rgb(102, 102, 102);
    --color-white: rgb(255, 255, 255);
    --font-primary: 'BW Modelica', 'Lato', sans-serif;
    --font-body: 'Overpass', 'Lato', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-white);
    background: var(--color-dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-primary); font-weight: 700; line-height: 1.2; }
h1 { font-size: 46px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }
p { margin-bottom: 1em; }

/* === LAYOUT === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 30px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 30px; }

/* === HEADER / NAV === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(28, 28, 28, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: background 0.3s, padding 0.3s;
}
.site-header.scrolled {
    padding: 10px 0;
    background: rgba(28, 28, 28, 0.98);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}
.site-logo img { height: 50px; width: auto; }
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
}
.main-nav a {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-white);
    transition: color 0.3s;
}
.main-nav a:hover { color: var(--color-purple); }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 5px; }
.nav-toggle span {
    display: block; width: 25px; height: 2px;
    background: var(--color-white); margin: 5px 0;
    transition: 0.3s;
}

/* === HERO SECTIONS === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 30px 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero h1 {
    font-size: 52px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.hero p { font-size: 18px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.85); }

/* === SECTIONS === */
.section {
    padding: 100px 0;
}
.section--dark { background: var(--color-dark); }
.section--black { background: #000; }
.section--gray { background: #111; }
.section--white { background: var(--color-white); color: var(--color-dark); }

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.section-subtitle {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gray);
    margin-bottom: 15px;
}

/* === VIDEO PLAYER === */
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden;
    background: #000;
}
.video-wrapper video {
    width: 100%;
    display: block;
}
.video-thumbnail {
    position: relative;
    cursor: pointer;
}
.video-thumbnail img {
    width: 100%;
    display: block;
}
.video-thumbnail .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(161, 112, 217, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.video-thumbnail .play-btn::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 22px;
    border-color: transparent transparent transparent white;
    margin-left: 4px;
}
.video-thumbnail:hover .play-btn { background: rgba(161, 112, 217, 1); }

/* === GRID === */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* === CARDS === */
.team-card { text-align: center; }
.team-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
}
.team-card h3 { font-size: 20px; margin-bottom: 5px; }
.team-card .role { font-size: 14px; color: var(--color-gray); margin-bottom: 15px; }
.team-card p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.7); }

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}
.btn--primary {
    background: var(--color-purple);
    color: var(--color-white);
}
.btn--primary:hover { background: rgb(141, 92, 197); }
.btn--outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}
.btn--outline:hover {
    background: var(--color-white);
    color: var(--color-dark);
}

/* === PARTNER LOGOS === */
.partners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    padding: 40px 0;
}
.partners img { height: 40px; width: auto; opacity: 0.8; transition: opacity 0.3s; }
.partners img:hover { opacity: 1; }

/* === COMING SOON === */
.coming-soon {
    text-align: center;
    padding: 60px 30px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    margin: 20px 0;
}
.coming-soon h3 { font-size: 22px; margin-bottom: 10px; }
.coming-soon p { color: var(--color-gray); }

/* === MOVEMENT SECTION === */
.movement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* === POSTER GALLERY === */
.poster-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.poster-gallery img { border-radius: 4px; }

/* === FRAME CAPTURES === */
.frame-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}
.frame-grid img { border-radius: 2px; width: 100%; }

/* === BLOCKQUOTE === */
.quote-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 30px;
}
.quote-block blockquote {
    font-size: 24px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

/* === FOOTER === */
.site-footer {
    background: #000;
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
    color: var(--color-gray);
}

/* === FORM === */
.contact-form { max-width: 600px; margin: 0 auto; }
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 16px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--color-gray); }
.contact-form textarea { min-height: 120px; resize: vertical; }

/* === RESPONSIVE === */
@media (max-width: 991px) {
    h1 { font-size: 38px; }
    h2 { font-size: 30px; }
    .hero h1 { font-size: 42px; }
    .section { padding: 70px 0; }
    .grid-2 { grid-template-columns: 1fr; gap: 30px; }
    .grid-3 { grid-template-columns: 1fr 1fr; }
    .movement-grid { grid-template-columns: 1fr; }
    .nav-toggle { display: block; }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(28, 28, 28, 0.98);
        padding: 20px 0;
    }
    .main-nav.active { display: block; }
    .main-nav ul { flex-direction: column; align-items: center; gap: 20px; }
}
@media (max-width: 767px) {
    h1 { font-size: 30px; }
    h2 { font-size: 26px; }
    .hero { min-height: 80vh; padding: 100px 20px 60px; }
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 16px; }
    .section { padding: 50px 0; }
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .partners { gap: 30px; }
    .poster-gallery { grid-template-columns: 1fr 1fr; }
}
