/*
Theme Name: Badminton Community
Theme URI:
Author: DevSkills
Description: Badminton community thema voor nieuws, activiteiten en producten.
Version: 0.1.0
Text Domain: badminton-community
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

/* Basic layout (mobile-first) */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #0b1220;
  color: #eaf2ff;
  line-height: 1.5;
}

a {
  color: #7dd3fc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.bc-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.bc-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 18, 32, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(125, 211, 252, 0.15);
}

.bc-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.bc-brand {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.bc-brand strong {
  font-size: 16px;
  letter-spacing: 0.2px;
}

.bc-brand span {
  color: rgba(234, 242, 255, 0.75);
  font-size: 12px;
}

.bc-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bc-menu a {
  display: inline-block;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(125, 211, 252, 0.12);
  background: rgba(125, 211, 252, 0.06);
}

.bc-hero {
  padding: 34px 0 18px;
}

.bc-hero h1 {
  margin: 0 0 10px;
  font-size: 28px;
}

.bc-hero p {
  margin: 0;
  color: rgba(234, 242, 255, 0.85);
}

.bc-grid {
  display: grid;
  gap: 14px;
}

.bc-section {
  padding: 18px 0;
}

.bc-section h2 {
  margin: 0 0 12px;
  font-size: 18px;
}

.bc-cards {
  display: grid;
  gap: 14px;
}

.bc-card {
  border: 1px solid rgba(125, 211, 252, 0.15);
  background: rgba(125, 211, 252, 0.06);
  border-radius: 16px;
  padding: 14px;
}

.bc-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.bc-card p {
  margin: 0 0 10px;
  color: rgba(234, 242, 255, 0.85);
}

.bc-meta {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(234, 242, 255, 0.75);
}

.bc-btn {
  display: inline-block;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(125, 211, 252, 0.25);
  background: rgba(125, 211, 252, 0.15);
  color: #eaf2ff;
}

.bc-btn:hover {
  text-decoration: none;
  background: rgba(125, 211, 252, 0.22);
}

.bc-footer {
  padding: 26px 0;
  margin-top: 18px;
  border-top: 1px solid rgba(125, 211, 252, 0.15);
  color: rgba(234, 242, 255, 0.7);
  font-size: 13px;
}

.bc-form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 10px 0;
}

.bc-field-label {
  font-weight: 600;
  font-size: 13px;
  color: rgba(234, 242, 255, 0.85);
}

.bc-field-help {
  font-size: 12px;
  color: rgba(234, 242, 255, 0.68);
}

@media (min-width: 720px) {
  .bc-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bc-cards {
    grid-template-columns: 1fr 1fr;
  }
}

