/* At the top of styles.css */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Raleway:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700&display=swap');


body {
  font-family: 'Raleway', sans-serif;
  color: #3A3A3A;
  background-color: #F5F3EF;
  margin: 0;
  padding: 0;
}
.hero {
  text-align: center;
  padding: 3rem 1rem;
  color: #D4AF37;       /* Gold text */
  font-weight: 700;
  background: #1E2A38;
}

header {
  background: #1E2A38;
  color: #D4AF37;       /* Gold text */
}

h2, h3 {
  font-family: 'Cinzel', serif;
  color: #1E2A38;
}

/* NAV CONTAINER */
nav.navbar {
  font-family: 'Cinzel', serif;
  display: flex;
  align-items: center;        /* Vertical center */
  justify-content: left;
  padding: 0.75rem 1rem;
  background: #1E2A38;
}

/* NAV LOGO */
.navbar .logo {
  height: 100px;
  width: auto;
  vertical-align: middle;
}

/* NAV LINKS */
.navbar .nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 0.5rem;
}


.navbar .nav-right a {
  color: #D4AF37;
  padding: 0 1rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-right: 1px solid #D4AF37;
  display: flex;
  align-items: center;   /* Ensures line is centered with text */
  height: 40px;          /* Same height as logo for alignment */
}

.navbar .nav-right a:last-child {
  border-right: none;
}


.intro, .values, .cta {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
}

ul {
  padding-left: 1.5rem;
}

.btn {
  display: inline-block;
  background: #D4AF37;
  color: #1E2A38;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

.manager-profile {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.manager-profile img.headshot {
  max-width: 250px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 700px) {
  .manager-profile {
    flex-direction: column;
    text-align: center;
  }

  .manager-profile img.headshot {
    margin-bottom: 1rem;
  }
}
