/* ===========================
   BASE PAGE
   =========================== */

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    margin: 0;              /* remove auto-centering conflict */
    padding: 0 10px;        /* 10px left + right buffer for entire page */
    text-align: left;
	color: #336633;

}

.page {
    max-width: 730px;       /* responsive container */
    width: 100%;
    margin: 0 auto;         /* center the content area */
    padding: 0;             /* remove padding that cancels body spacing */
    text-align: left;
}

/* Green horizontal separator line */
.hor-line {
    border: 0;
    border-top: 4px solid #2E7D32; /* DV Digital green */
    margin: 15px 0;
}

/* Lightweight green row separators for inventory tables */
.inv-table {
    border-collapse: collapse;
    width: 100%;
}

.inv-table tr.inv-row > td {
    border-bottom: 1px solid #2E7D32;
}

/* ============================================
   OPTIONAL PAGE BACKGROUND SYSTEM
   ============================================ */

.page-background {
    background-repeat: no-repeat;
    background-position: left 0;
    background-size: auto;
}

.events-bg {
    background-image: url("images/events_background.jpg");
}


/* ===========================
   RESPONSIVE DUAL HEADER
   =========================== */

.dual-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* HEADER BANNERS — SHRINK, DO NOT STRETCH */
.banner-left,
.banner-right {
    width: 48%;
    height: auto;
    object-fit: contain;
    display: block;
}


/* ===========================
   MENU AREA (MODERN DROPDOWN)
   =========================== */

nav {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2px;
    flex-wrap: wrap;
    justify-content: center;
}

.menu > li > a {
    background: linear-gradient(#4CAF50, #2E7D32);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    display: block;
    border: 1px solid #1B5E20;
}

.menu > li > a:hover {
    background: linear-gradient(#66BB6A, #388E3C);
}

.menu li {
    position: relative;
}

.menu li ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background: #2E7D32;
    display: none;
    min-width: 180px;
    border-radius: 4px;
    border: 1px solid #1B5E20;
}

.menu li:hover ul {
    display: block;
}

.menu li ul li a {
    display: block;
    padding: 8px 14px;
    color: white;
    text-decoration: none;
    font-size: 15px;
    background: linear-gradient(#4CAF50, #2E7D32);
    border-bottom: 1px solid #1B5E20;
}

.menu li ul li a:hover {
    background: linear-gradient(#66BB6A, #388E3C);
}


/* ===========================
   CONTENT LAYOUT
   =========================== */

h1 {
    margin-top: 20px;
    margin-bottom: 10px;
}

/* RESPONSIVE CONTENT IMAGES — EXCLUDES HEADER BANNERS */
.page img:not(.banner-left):not(.banner-right),
.hero,
.flexrow img {
    max-width: 100%;
    height: auto;
    display: block;
}

.center {
    text-align: center;
    margin-top: 10px;
}

.center-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}


/* ===========================
   FLEX ROWS (MAP, SERVICE, ETC.)
   =========================== */

.flexrow {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
    margin-top: 10px;
}

.leftcol img {
    max-width: 360px;
}

.rightcol {
    flex: 1;          /* allow it to grow */
    max-width: none;  /* remove the 340px cap */
}

.rightcol p {
    text-align: left;
    line-height: 1.35;
    margin: 0 0 6px 0;
}

/* ===========================
   FOOTER
   =========================== */

footer {
    margin-top: 20px;
    font-size: 0.9em;
}
