body {
    /* Simple reset to remove default margins */
    margin: 0;
    font-family: Arial, sans-serif;
    background-image: url("background1.jpg");
}

.main-container {
    /* 1. Use Flexbox to align items horizontally */
    display: flex;
    /* 2. Constrain the total width of the content area */
    max-width: 1200px;
    margin: 0 auto; /* Center the entire container on the page */
    padding: 0px;
    background-color: #fff; /* White background for the content box */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    min-height: 80vh; /* Ensure it takes up most of the viewport height */
}

/* --- Column Styling --- */

.column-wrapper {
/*    flex: 0 0 300px; */
    padding: 15px;
    background-color: #928a48
}

.left-column {
    /* Define a fixed width and allow it to shrink if necessary */
    flex: 0 0 300px; /* Shorthand for: grow=0, shrink=0, basis=200px */
    padding: 15px;
    background-color: #2d5137;
    border-radius: 4px;
}

.left-column {
    margin-right: 20px; /* Space between left column and content */
}

.right-column {
    margin-left: 20px; /* Space between content and right column */
}

.content-area {
    /* Allow the main content area to grow and take up all remaining space */
    flex: 1; /* Shorthand for: grow=1, shrink=1, basis=0% (or 'auto') */
    padding: 15px 30px;
    min-width: 0; /* Important for flex-items that contain text/images */
}

/* --- Basic Content Formatting --- */

.content-area h1 {
    color: #333;
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
    margin-top: 0;
}

.left-column h3,
.right-column h3 {
    color: #555;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin-bottom: 5px;
}

.hbc-image {
    padding-top: 50px;
    padding-left: 70px;
    padding-bottom: 50px;
}

.menu-item {
    color: #ffffff;
    padding-top:10px;
    padding-bottom: 10px;
    font-size: 20px
}

.menu-link,
.menu-link:visited,
.menu-link:active,
.menu-link:focus {
    color: #ffffff !important;
    text-decoration: none !important;
    align-items: center;
    font-size: 1.15rem;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-weight: bold;
}

.menu-link:hover {
    color: red !important;
}

.pastor-section img {
  float: right;
  margin-left: 1rem;    /* space between image & text */
  max-width: 40%;        /* or whatever size fits */
}

.pastor-text {
  overflow: auto; /* clears the float */
}










