body {
  background-color: #082B59;
  margin: 0;
  padding: 0;
  font-family: 'Lato', sans-serif;
  line-height: 2;
}
h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  margin-bottom: 0;
  text-align: center;
}
/* make images flexible */
img {
  max-width: 100%;
  align-items: center;
}
a {
  color: #59331d;
}
a:hover {
  text-decoration: none;
}
header {
  border-bottom: 10px solid #d98555;
}
/* navbar styling */
nav ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
nav li {
  margin: 0 1rem 1rem 1rem;
  font-size: 1.3rem;
}
/* max width on the image in pixels */
nav .logo img {
  max-width: 150px;
}
/* flex basis on the image container, li */
nav .logo {
  flex-basis: 100%;
  text-align: center;
}
nav a {
  color: white;
  text-decoration: none;
  display: block;
}
nav a:hover {
  color: #d98555;
}
/* establishes a white background */
.main-bkgd {
  background: #ffffff url("gulp-bottom-beans.jpg") repeat-x bottom;
  padding-bottom: 300px;
}
/* sits inside of the white background, centered */
.contact-us {
    text-align: center;
    background-color: white;
    padding: 20px;
    border-radius: 10px;

  }
  
  .contact-us h1 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
  }
  
  .contact-us address {
    font-style: normal;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  
  .contact-us a {
    color: #d46a3a; /* Light orange for the phone link */
    text-decoration: none;
    font-weight: bold;
  }
  
  .contact-us a:hover {
    text-decoration: underline;
  }
  .contact-us img {
    /* width: 100%; */
    max-width: 400%;
    border-radius: 8px;
    margin-top: 10px;
    align-items: center;
  }

footer {
  color: #f2f2f2;
  text-align: center;
  border-top: 10px solid #d98555;
  background-color: #122855; /* Navy blue background */
  text-align: center;
  padding: 20px 10px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}

.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 8px; /* Rounded corners */
  color: #122855;
  font-size: 24px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.icon i {
  pointer-events: none; /* Ensures icons are clickable */
}

.icon:hover {
  transform: scale(1.1); /* Slight zoom effect */
}

p {
  font-size: 14px;
  margin: 0;
}