@charset "UTF-8";

/* Import Instrument Serif font */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --tan-bg: #f5f1e8;
  --blue: #2b5d9e;
  --dark-text: #1a1a1a;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Instrument Serif', serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--dark-text);
  background-color: var(--tan-bg);
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.7;
}

/* Navigation */
.navbar {
  padding: 2rem 0;
  background-color: transparent;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.navbar.scrolled {
  background-color: var(--tan-bg);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 2rem;
  margin: 0 auto;
}

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

.navbar-brand {
  font-size: 1.25rem;
  color: var(--dark-text);
  font-weight: 400;
}

.navbar-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-link {
  color: var(--dark-text);
  font-size: 1.125rem;
}

/* Masthead */
.masthead {
  padding: 12rem 0 8rem;
  text-align: center;
  background-color: var(--tan-bg);
}

.masthead-heading {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--dark-text);
}

.masthead-subheading {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--blue);
  margin-bottom: 2rem;
}

/* Divider */
.divider-custom {
  margin: 2rem auto;
  width: 100%;
  max-width: 100px;
  height: 1px;
  background-color: var(--dark-text);
  opacity: 0.2;
}

/* Content sections */
section {
  padding: 4rem 0;
}

.text-center {
  text-align: center;
}

.paragraph {
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.125rem;
}

/* Utility classes */
.mb-5 {
  margin-bottom: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
  .masthead {
    padding: 8rem 0 4rem;
  }
  
  .masthead-heading {
    font-size: 2rem;
  }
  
  .masthead-subheading {
    font-size: 1rem;
  }
  
  .navbar-nav {
    gap: 1rem;
  }
  
  .container {
    padding: 0 1.5rem;
  }
}

/* Remove unused Bootstrap classes */
.bg-secondary,
.bg-primary,
.text-uppercase,
.text-white,
.fixed-top,
.d-flex,
.align-items-center,
.flex-column,
.divider-light,
.divider-custom-line,
.font-weight-light,
.col-md-6,
.col-lg-4 {
  /* These are now handled by custom styles above */
}