/* style.css */
:root {
  --bph-primary: #0A2E20;
  --bph-secondary: #165c40;
  --bph-accent: #D4AF37;
  --bph-accent-hover: #b5952f;
  --bph-bg: #f9faf8;
  --bph-text: #2c332d;
  --bph-light: #ffffff;
  --bph-radius: 12px;
  --bph-font: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--bph-font);
  background-color: var(--bph-bg);
  color: var(--bph-text);
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
.bph-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.bph-header {
  background-color: var(--bph-primary);
  color: var(--bph-light);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.bph-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bph-logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--bph-accent);
  letter-spacing: 1px;
}
.bph-nav { display: flex; gap: 20px; align-items: center; }
.bph-nav a {
  font-weight: 500;
  transition: color 0.3s ease;
}
.bph-nav a:hover { color: var(--bph-accent); }
.bph-badge-21 {
  border: 2px solid var(--bph-accent);
  color: var(--bph-accent);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

/* Hero */
.bph-hero {
  background-color: var(--bph-primary);
  color: var(--bph-light);
  padding: 100px 20px;
  text-align: center;
  border-bottom: 8px solid var(--bph-accent);
}
.bph-hero-title {
  font-size: 56px;
  margin: 0 0 20px;
  color: var(--bph-accent);
}
.bph-hero-desc {
  font-size: 20px;
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0.9;
}
.bph-btn {
  display: inline-block;
  background-color: var(--bph-accent);
  color: var(--bph-primary);
  padding: 14px 32px;
  border-radius: var(--bph-radius);
  font-weight: bold;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}
.bph-btn:hover { background-color: var(--bph-accent-hover); }

/* Sections */
.bph-section { padding: 80px 0; }
.bph-section-alt { background-color: var(--bph-light); }
.bph-section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: var(--bph-primary);
}

/* Grid */
.bph-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.bph-card {
  background-color: var(--bph-light);
  border-radius: var(--bph-radius);
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  text-align: center;
  border: 1px solid rgba(0,0,0,0.03);
  transition: transform 0.3s;
}
.bph-card:hover { transform: translateY(-5px); }
.bph-card-icon {
  font-size: 48px;
  margin-bottom: 20px;
}
.bph-card-title {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--bph-primary);
}
.bph-card-desc {
  color: #555;
  margin-bottom: 20px;
}

/* Contact */
.bph-contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
}
.bph-contact-info, .bph-contact-form { flex: 1; min-width: 300px; }
.bph-contact-item {
  margin-bottom: 20px;
  font-size: 18px;
}
.bph-form-group { margin-bottom: 20px; }
.bph-form-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: var(--bph-radius);
  font-family: inherit;
  box-sizing: border-box;
}
textarea.bph-form-input { resize: vertical; min-height: 120px; }

/* Responsible Play */
.bph-resp {
  background-color: var(--bph-secondary);
  color: var(--bph-light);
  padding: 40px;
  border-radius: var(--bph-radius);
  text-align: center;
  margin-top: 40px;
}
.bph-resp h3 {
  color: var(--bph-accent);
  margin-top: 0;
}

/* Footer */
.bph-footer {
  background-color: var(--bph-primary);
  color: var(--bph-light);
  padding: 60px 0 30px;
  text-align: center;
}
.bph-footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}
.bph-footer-links a:hover {
  color: var(--bph-accent);
}
.bph-footer-warning {
  font-size: 24px;
  font-weight: bold;
  color: var(--bph-accent);
  margin: 30px 0;
}
.bph-footer-copy { opacity: 0.6; font-size: 14px; }

/* Cookie */
.bph-cookie {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--bph-light);
  color: var(--bph-text);
  padding: 20px;
  border-radius: var(--bph-radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  border-left: 5px solid var(--bph-accent);
}
.bph-cookie p { margin: 0; font-size: 14px; max-width: 80%; }

@media (max-width: 768px) {
  .bph-nav { display: none; }
  .bph-cookie { flex-direction: column; gap: 15px; text-align: center; }
  .bph-cookie p { max-width: 100%; }
}
