/* ============================================================
   BBbandits.nl – Main Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:      #f5600a;
  --orange-dark: #c24807;
  --orange-lt:   #ff8040;
  --bg:          #0c0c0c;
  --bg-2:        #111111;
  --bg-3:        #1a1a1a;
  --text:        #e2e2e2;
  --text-muted:  #888888;
  --border:      rgba(245,96,10,.2);
  --radius:      6px;
  --font-head:   'Rajdhani', sans-serif;
  --font-body:   'Open Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); font-size: 16px; line-height: 1.65; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: var(--radius);
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; transition: all .25s ease;
}
.btn--primary { background: var(--orange); color: #fff; border: 2px solid var(--orange); }
.btn--primary:hover { background: var(--orange-lt); border-color: var(--orange-lt); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(245,96,10,.45); }
.btn--outline { background: transparent; color: var(--text); border: 2px solid rgba(255,255,255,.3); }
.btn--outline:hover { border-color: var(--orange-lt); color: var(--orange-lt); transform: translateY(-2px); }
.btn--full { width: 100%; }
.btn--sm { padding: .5rem 1.1rem; font-size: .9rem; }

/* ── Section helpers ──────────────────────────────────────── */
.section { padding: 5.5rem 0; }
.section__header { text-align: center; margin-bottom: 3.5rem; }
.section__tag { display: inline-block; font-family: var(--font-head); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--orange-lt); margin-bottom: .6rem; }
.section__title { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; color: #fff; line-height: 1.1; }
.section__desc { margin-top: .75rem; color: var(--text-muted); max-width: 560px; margin-left: auto; margin-right: auto; }

/* ── Header / Nav ─────────────────────────────────────────── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: .75rem 0; background: transparent; transition: background .3s, box-shadow .3s;
}
#header.scrolled { background: rgba(10,10,10,.94); backdrop-filter: blur(14px); box-shadow: 0 2px 24px rgba(0,0,0,.6); }

.nav { display: flex; align-items: center; justify-content: space-between; }

.nav__logo { display: flex; align-items: center; }
.nav__logo-img { height: 58px; width: auto; display: block; transition: transform .2s; }
.nav__logo:hover .nav__logo-img { transform: scale(1.04); }

.nav__links { display: flex; gap: 1.75rem; align-items: center; }
.nav__links a {
  font-family: var(--font-head); font-size: 1rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; color: var(--text);
  transition: color .2s; position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px; background: var(--orange-lt); transition: width .25s ease;
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__links a.active { color: var(--orange-lt); }

.nav__admin-link {
  font-size: .8rem !important; color: var(--text-muted) !important;
  opacity: .55; transition: opacity .2s !important;
  letter-spacing: .04em !important;
}
.nav__admin-link:hover { opacity: 1; color: var(--orange-lt) !important; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav__toggle span { display: block; width: 26px; height: 2px; background: var(--text); border-radius: 2px; transition: all .25s ease; }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero (full-screen, home only) ───────────────────────── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse 75% 55% at 55% 38%, rgba(245,96,10,.13) 0%, transparent 70%),
              linear-gradient(160deg, #0c0c0c 0%, #131313 50%, #0a0a0a 100%);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(245,96,10,.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(245,96,10,.05) 1px, transparent 1px);
  background-size: 48px 48px; animation: gridShift 20s linear infinite;
}
@keyframes gridShift { from { background-position: 0 0; } to { background-position: 48px 48px; } }
.hero__overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at center, transparent 30%, rgba(10,10,10,.65) 100%); }

.hero__content { position: relative; z-index: 2; max-width: 800px; padding: 9rem 1.5rem 4rem; }
.hero__logo-wrap { margin-bottom: 2.5rem; }
.hero__logo-img { height: 130px; width: auto; filter: drop-shadow(0 8px 32px rgba(245,96,10,.3)); }
.hero__label { font-family: var(--font-head); font-size: .9rem; letter-spacing: .2em; text-transform: uppercase; color: var(--orange-lt); margin-bottom: 1rem; }
.hero__title { font-family: var(--font-head); font-size: clamp(3rem, 9vw, 7rem); font-weight: 700; line-height: .95; color: #fff; text-shadow: 0 4px 40px rgba(0,0,0,.7); }
.hero__title span { color: var(--orange-lt); }
.hero__sub { margin-top: 1.2rem; font-size: 1.2rem; color: var(--text-muted); letter-spacing: .12em; text-transform: uppercase; font-family: var(--font-head); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }
.hero__scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero__scroll span { display: block; width: 22px; height: 38px; border: 2px solid rgba(255,255,255,.25); border-radius: 12px; position: relative; }
.hero__scroll span::after { content: ''; display: block; width: 4px; height: 8px; background: var(--orange-lt); border-radius: 2px; position: absolute; top: 5px; left: 50%; transform: translateX(-50%); animation: scrollBob 1.8s ease-in-out infinite; }
@keyframes scrollBob { 0%,100% { transform: translateX(-50%) translateY(0); opacity:1; } 70% { transform: translateX(-50%) translateY(12px); opacity:0; } }

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  position: relative; padding: 8rem 0 3rem;
  background: linear-gradient(160deg, #0c0c0c 0%, #0f0f0f 100%);
  border-bottom: 1px solid var(--border); overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(245,96,10,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(245,96,10,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero__tag { display: block; font-family: var(--font-head); font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; color: var(--orange-lt); margin-bottom: .5rem; }
.page-hero__title { font-family: var(--font-head); font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 700; color: #fff; line-height: 1; }
.page-hero__desc { margin-top: .75rem; color: var(--text-muted); max-width: 520px; }

/* ── Stats ────────────────────────────────────────────────── */
.stats { background: var(--bg-3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 3rem 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat__number { display: block; font-family: var(--font-head); font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 700; color: var(--orange-lt); line-height: 1; }
.stat__label { display: block; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-top: .4rem; }

/* ── Video grid ───────────────────────────────────────────── */
.videos { background: var(--bg-2); }
.video-filters { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-bottom: 2.5rem; }
.filter-btn { padding: .45rem 1.2rem; border-radius: 30px; font-family: var(--font-head); font-size: .9rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); border: 1px solid var(--border); background: var(--bg-3); transition: all .2s ease; }
.filter-btn:hover, .filter-btn.active { background: var(--orange); color: #fff; border-color: var(--orange); }

.videos__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.video-card { background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform .25s, box-shadow .25s; }
.video-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.5); border-color: rgba(245,96,10,.4); }
.video-card.hidden { display: none; }

.video-card__thumb { position: relative; aspect-ratio: 16/9; background: #0a0a0a; overflow: hidden; }
.video-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.video-card:hover .video-card__thumb img { transform: scale(1.04); }
.yt-thumb-link { display: block; width: 100%; height: 100%; position: relative; }
.play-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.35); opacity: 0; transition: opacity .25s;
}
.yt-thumb-link:hover .play-overlay { opacity: 1; }
.play-overlay svg { width: 56px; height: 56px; color: #fff; filter: drop-shadow(0 2px 8px rgba(0,0,0,.6)); }

.video-thumb-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #151515, #111); cursor: pointer; transition: background .2s; }
.video-thumb-placeholder:hover { background: linear-gradient(135deg, #201a14, #1a1410); }
.video-thumb-placeholder svg { width: 52px; height: 52px; color: rgba(245,96,10,.5); transition: color .2s, transform .2s; }
.video-thumb-placeholder:hover svg { color: var(--orange-lt); transform: scale(1.1); }

.video-card__tag { position: absolute; top: .75rem; left: .75rem; padding: .25rem .65rem; border-radius: 3px; font-family: var(--font-head); font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: rgba(10,10,10,.85); color: var(--orange-lt); border: 1px solid rgba(245,96,10,.3); }
.video-card__info { padding: 1.1rem 1.25rem 1.25rem; }
.video-card__info h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: .35rem; }
.video-card__info p { font-size: .88rem; color: var(--text-muted); line-height: 1.5; }
.video-card__meta { display: block; margin-top: .75rem; font-size: .78rem; color: rgba(136,136,136,.7); font-family: var(--font-head); letter-spacing: .06em; }
.videos__cta { text-align: center; margin-top: 3rem; }

/* ── Section CTA row ──────────────────────────────────────── */
.section-cta { display: flex; justify-content: center; margin-top: 3rem; }

/* ── Team ─────────────────────────────────────────────────── */
.team { background: var(--bg); }
.team__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
.team-card { background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center; transition: transform .25s, box-shadow .25s; }
.team-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,.4); border-color: rgba(245,96,10,.45); }
.team-card__avatar { width: 84px; height: 84px; border-radius: 50%; background: linear-gradient(135deg, var(--orange-dark), var(--bg-3)); border: 2px solid var(--border); margin: 0 auto 1.25rem; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.avatar-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.avatar-placeholder svg { width: 46px; height: 46px; color: var(--orange); }
.team-card__name { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: #fff; }
.team-card__role { display: block; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--orange-lt); margin: .35rem 0 .75rem; }
.team-card__bio { font-size: .88rem; color: var(--text-muted); line-height: 1.55; }

/* ── About ────────────────────────────────────────────────── */
.about { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about__inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: center; }
.about__visual { position: relative; display: flex; justify-content: center; }
.about__logo-circle { width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(245,96,10,.1) 0%, transparent 70%); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; padding: 2.5rem; }
.about__logo-img { width: 100%; height: auto; object-fit: contain; }
.about__badge { position: absolute; bottom: 10px; right: 10px; background: var(--orange); color: #fff; font-family: var(--font-head); font-size: .85rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .4rem .9rem; border-radius: 30px; }
.about__text .section__title { text-align: left; margin-top: .5rem; }
.about__text p { color: var(--text-muted); margin-top: 1rem; line-height: 1.7; }
.about__tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.75rem; }
.about__tags span { padding: .35rem .9rem; border-radius: 30px; font-family: var(--font-head); font-size: .82rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; background: var(--bg-3); color: var(--orange-lt); border: 1px solid var(--border); }

/* ── Contact ──────────────────────────────────────────────── */
.contact { background: var(--bg); }
.contact__inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: 4rem; align-items: start; }
.contact__form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-family: var(--font-head); font-size: .9rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea { background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text); padding: .7rem 1rem; font-family: var(--font-body); font-size: .95rem; outline: none; transition: border-color .2s; -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange-lt); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(136,136,136,.45); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.form-success { display: none; padding: .85rem 1rem; border-radius: var(--radius); background: rgba(245,96,10,.12); border: 1px solid var(--orange); color: var(--orange-lt); font-size: .9rem; text-align: center; }
.form-success.show { display: block; }
.contact__info h3 { font-family: var(--font-head); font-size: 1.3rem; color: #fff; margin-bottom: 1.5rem; }
.contact__socials { display: flex; flex-direction: column; gap: .85rem; }
.contact__socials a { display: flex; align-items: center; gap: .85rem; color: var(--text-muted); font-size: .95rem; transition: color .2s; }
.contact__socials a:hover { color: var(--orange-lt); }
.contact__socials svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ── Footer ───────────────────────────────────────────────── */
.footer { background: var(--bg-3); border-top: 1px solid var(--border); padding: 2.5rem 0; }
.footer__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.footer__logo { display: flex; align-items: center; }
.footer__logo-img { height: 38px; width: auto; opacity: .8; transition: opacity .2s; }
.footer__logo:hover .footer__logo-img { opacity: 1; }
.footer__copy { font-size: .8rem; color: var(--text-muted); }
.footer__nav { display: flex; gap: 1.5rem; }
.footer__nav a { font-family: var(--font-head); font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); transition: color .2s; }
.footer__nav a:hover { color: var(--orange-lt); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .about__text .section__title { text-align: center; }
  .about__tags { justify-content: center; }
  .contact__inner { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 680px) {
  .nav__links { display: none; position: fixed; inset: 0; background: rgba(10,10,10,.97); flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem; z-index: 99; }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 1.5rem; }
  .nav__toggle { display: flex; position: relative; z-index: 101; }
  .hero__content { padding-top: 9rem; }
  .hero__logo-img { height: 90px; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__nav { justify-content: center; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (max-width: 480px) {
  .section { padding: 4rem 0; }
  .about__logo-circle { width: 220px; height: 220px; padding: 1.75rem; }
  .nav__logo-img { height: 44px; }
}
