/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@300;400;600&display=swap');

:root {
  --brnhll-bg-dark: #0B132B;
  --brnhll-bg-card: #1C2541;
  --brnhll-accent: #FFD700;
  --brnhll-text-light: #FFFFFF;
  --brnhll-text-muted: #A0AEC0;
  --brnhll-border: #3A506B;
  --brnhll-font-heading: 'Cinzel', serif;
  --brnhll-font-body: 'Montserrat', sans-serif;
  --brnhll-radius: 4px;
}

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

body {
  font-family: var(--brnhll-font-body);
  background-color: var(--brnhll-bg-dark);
  color: var(--brnhll-text-light);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header */
.brnhll-top-nav {
  padding: 2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--brnhll-border);
}

.brnhll-brand-block {
  display: flex;
  flex-direction: column;
}

.brnhll-logo-text {
  font-family: var(--brnhll-font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brnhll-accent);
}

.brnhll-subtitle {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brnhll-text-muted);
}

.brnhll-badge-wrapper .brnhll-badge {
  padding: 0.5rem 1rem;
  border: 1px solid var(--brnhll-accent);
  border-radius: var(--brnhll-radius);
  color: var(--brnhll-accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
}

/* Hero Section */
.brnhll-hero-area {
  padding: 8rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.brnhll-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.brnhll-hero-kicker {
  font-size: 0.9rem;
  color: var(--brnhll-accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  display: block;
}

.brnhll-hero-title {
  font-family: var(--brnhll-font-heading);
  font-size: 4rem;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.brnhll-hero-desc {
  font-size: 1.1rem;
  color: var(--brnhll-text-muted);
  margin-bottom: 4rem;
}

.brnhll-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.brnhll-stat-box {
  background: var(--brnhll-bg-card);
  padding: 2rem;
  border: 1px solid var(--brnhll-border);
  border-radius: var(--brnhll-radius);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.brnhll-stat-box:hover {
  transform: translateY(-5px);
  border-color: var(--brnhll-accent);
}

.brnhll-stat-box h4 {
  font-family: var(--brnhll-font-heading);
  color: var(--brnhll-accent);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.brnhll-stat-box p {
  font-size: 0.9rem;
  color: var(--brnhll-text-muted);
}

/* Common Section Styles */
.brnhll-section {
  padding: 6rem 5%;
}

.brnhll-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.brnhll-section-title {
  font-family: var(--brnhll-font-heading);
  font-size: 2.5rem;
  color: var(--brnhll-accent);
  margin-bottom: 1rem;
}

.brnhll-section-intro {
  max-width: 600px;
  margin: 0 auto;
  color: var(--brnhll-text-muted);
}

.brnhll-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.brnhll-feature-card {
  background: var(--brnhll-bg-card);
  padding: 2.5rem;
  border-radius: var(--brnhll-radius);
  border: 1px solid var(--brnhll-border);
  transition: all 0.3s ease;
}

.brnhll-feature-card:hover {
  border-color: var(--brnhll-accent);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.brnhll-card-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brnhll-accent);
  margin-bottom: 1rem;
  display: block;
}

.brnhll-card-title {
  font-family: var(--brnhll-font-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.brnhll-card-text {
  color: var(--brnhll-text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.brnhll-card-list {
  list-style: none;
}

.brnhll-card-list li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--brnhll-text-light);
}

.brnhll-card-list li::before {
  content: '♦';
  position: absolute;
  left: 0;
  color: var(--brnhll-accent);
}

/* Footer */
.brnhll-footer-area {
  background: var(--brnhll-bg-card);
  padding: 5rem 5% 2rem;
  border-top: 1px solid var(--brnhll-border);
}

.brnhll-footer-slogan {
  text-align: center;
  font-family: var(--brnhll-font-heading);
  font-size: 2rem;
  color: var(--brnhll-accent);
  margin-bottom: 4rem;
}

.brnhll-footer-content {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.brnhll-footer-col h5 {
  font-family: var(--brnhll-font-heading);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--brnhll-accent);
}

.brnhll-footer-col p {
  color: var(--brnhll-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.brnhll-footer-links {
  list-style: none;
}

.brnhll-footer-links li {
  margin-bottom: 0.8rem;
}

.brnhll-footer-links a {
  color: var(--brnhll-text-muted);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.brnhll-footer-links a:hover {
  color: var(--brnhll-accent);
}

.brnhll-footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--brnhll-border);
  color: var(--brnhll-text-muted);
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 992px) {
  .brnhll-hero-stats, .brnhll-grid-3, .brnhll-footer-content {
    grid-template-columns: 1fr;
  }
  .brnhll-hero-title {
    font-size: 2.5rem;
  }
}
