/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: sans-serif;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Inner wrapper */
.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Header */
.site-header {
  background: #800000;
  color: white;
}
.site-header .logo {
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
}
.logo img {
  max-width: 425px;
}
.nav a {
  color: white;
  text-decoration: none;
  margin-left: 1rem;
  font-size: 0.9rem;
}
.nav a:hover {
  text-decoration: underline;
}

/* Content grows */
.site-content {
  flex: 1;
  padding: 1rem;
  width: 80%;
  max-width: 950px;
  margin: 5% auto;
}

/* Footer */
.site-footer {
  background: #501315;
  color: #333;
  font-size: 0.85rem;
}
.footer-nav a {
  color: #b7b7b7;
  text-decoration: none;
  margin-right: 1rem;
  text-transform: uppercase;
}
.footer-nav a:hover {
  text-decoration: underline;
}
.footer-copy {
  margin-left: auto;
  color: #b7b7b7;
}
.site-footer .inner {
  flex-wrap: wrap;
}

/* Mobile tweaks */
@media (max-width: 700px) {
  
  .site-content {
  width: 90%;
}
  
  .inner {
    flex-direction: column;
    align-items: space-evenly;
  }
  .nav,
  .footer-nav {
    margin-top: 0.5rem;
    flex-wrap: wrap;
  }
  .nav a,
  .footer-nav a {
    margin: 0.25rem;
  }
  .footer-copy {
    margin-top: 0.5rem;
  }
  .logo img {
    max-width: 325px;
  }
}




:root {
  --bc-maroon: #98002E;
  --bc-gold:   #BC9B6A;
  --bc-gray-bg: #F8F8F8;
  --bc-border: #DDD;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'open sans';
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Layout */
.inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-content {
  flex: 1;
  padding: 20px;
  width: 80%;
  max-width: 1250px;
  margin: 5% auto;
}

/* Header */
.site-header {
  background: #800000;
  color: white;
}
.site-header .logo {
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
}
.logo img {
  max-width: 425px;
}

/* Navigation */
.nav a {
  color: white;
  text-decoration: none;
  margin-left: 1rem;
  font-size: 0.9rem;
}
.nav a:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background: #501315;
  color: #333;
  font-size: 0.85rem;
}
.site-footer .inner {
  flex-wrap: wrap;
}
.footer-nav a {
  color: #b7b7b7;
  text-decoration: none;
  margin-right: 1rem;
  text-transform: uppercase;
}
.footer-nav a:hover {
  text-decoration: underline;
}
.footer-copy {
  margin-left: auto;
  color: #b7b7b7;
  margin-top: 0.5rem;
}

/* Form */
.bc-form {
  width: 500px;
  max-width: 90%;
  margin: 30px auto;
  padding: 90px 25px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.09);
  font-family: 'open sans', sans-serif;
}

.bc-form h2{
  margin-bottom: 35px;
}

.bc-group {
  margin-bottom: 18px;
  max-width: 100%;
}
.bc-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  font-weight: bold;
  color: var(--bc-maroon);
}
.bc-input,
.bc-textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--bc-border);
  border-radius: 4px;
  background: var(--bc-gray-bg);
  transition: border-color 0.2s, background 0.2s;
  font-size: 1rem;
}
.bc-input:focus,
.bc-textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--bc-maroon);
  box-shadow: 0 0 0 2px rgba(152,0,46,0.2);
}
.bc-textarea {
  resize: vertical;
}
.bc-button {
  display: block;
  width: 100%;
  padding: 12px;
  margin-top: 45px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background: var(--bc-maroon);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.bc-button:hover {
  background: var(--bc-gold);
  color: var(--bc-maroon);
}

/* Mobile Tweaks */
@media (max-width: 700px) {
  .site-content {
    width: 90%;
  }
  .inner {
    flex-direction: column;
    align-items: space-evenly;
  }
  .nav,
  .footer-nav {
    margin-top: 0.5rem;
    flex-wrap: wrap;
  }
  .nav a,
  .footer-nav a {
    margin: 0.25rem;
  }
  .footer-copy {
    margin-top: 0.5rem;
  }
  .logo img {
    max-width: 325px;
  }
}
