/*
 * Core styles for the BullMoose Ventures website.
 * Inspired by the dark, highâ€‘contrast aesthetic of bullmoose.properties
 * with warm metallic accents and generous spacing for readability.
 */

:root {
  /* colour palette */
  --bg: #0a0a0a;
  --bg-secondary: #111111;
  --text: #ffffff;
  --text-muted: #bbbbbb;
  --accent: #c89b6c; /* warm bronze */
  --accent-hover: #a67d52;
  --border: #333333;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
}

/* Container for consistent horizontal padding */
.container {
  width: 90%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* Navigation */
.site-header {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 1rem 0;
}

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

.logo {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}
.logo span {
  color: var(--accent);
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  transition: background-color 0.2s ease;
}
.nav-links a:hover {
  background-color: var(--border);
}

/* Hero section */
.hero {
  position: relative;
  min-height: 90vh;
  /*
   * Dramatic photograph used for the hero background. The image lives in
   * the assets folder and is loaded when the site is deployed. If you
   * replace this file in your repository, the hero will update
   * automatically.
   */
  background-image: url('hero.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.8) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
  pointer-events: none;
}

.hero-overlay {
  position: relative;
  max-width: 800px;
  padding: 2rem;
}

.locations {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.hero-subtitle,
.hero-pledge {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.hero-pledge {
  font-weight: 600;
  color: var(--text);
}

.btn-primary {
  display: inline-block;
  background-color: var(--accent);
  color: var(--bg);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease;
}
.btn-primary:hover {
  background-color: var(--accent-hover);
}

/* About section */
.about {
  background-color: var(--bg-secondary);
  padding: 4rem 1rem;
}
.about p {
  margin: 0;
  font-size: 1.125rem;
  text-align: center;
}

/* Contact section */
.contact {
  padding: 4rem 1rem;
}
.contact h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2rem;
}
.contact-intro {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-muted);
}
form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  gap: 0.5rem;
}
input,
textarea {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 0.25rem;
  padding: 0.75rem;
  color: var(--text);
  font-size: 1rem;
}
input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}
textarea {
  resize: vertical;
}
button[type='submit'] {
  align-self: flex-start;
  border: none;
  cursor: pointer;
}

/* Footer */
.site-footer {
  padding: 2rem 1rem;
  background-color: var(--bg-secondary);
  color: var(--text-muted);
  text-align: center;
  font-size: 0.875rem;
}

/* Utility classes */
.hidden {
  display: none !important;
}
