body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #333;
}

/* LOGO */
.logo {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    text-shadow: 1px 1px 1px #000;
}
.leaf {
    font-size: 32px;
    margin-right: 8px;
}

/* NAVIGATION */
.topbar {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    color: white;
    position: absolute;
    width: 100%;
    z-index: 10;
}
nav a {
    color: white;
    margin-left: 10px;
    text-decoration: none;
    font-weight: bold;
}
nav a:hover {
    text-decoration: underline;
}

/* HERO BANNER */
.hero {
    background-image: url('banner.jpg');
    background-size: cover;
    background-position: center;
    height: 420px;
    position: relative;
}

.overlay {
    background: 
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        url('images/banner-handyman-tools2.png'); 
    background-size: cover;
    background-position: center;
    height: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.overlay h1 {
    font-size: 52px;
    margin: 0;
}
.overlay p {
    font-size: 22px;
    margin-top: 10px;
}

/* SMALL HEADER */
.small-header {
    background: #2e7d32;
    padding: 20px;
    color: white;
}

/* CONTENT */
.content {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

/* BUTTON */
.button {
    display: inline-block;
    padding: 12px 20px;
    background: #2e7d32;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 20px;
}
.button:hover {
    background: #1b5e20;
}

/* SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.service-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.service-card h3 {
    margin-top: 0;
}

/* GALLERY GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 15px;
    margin-top: 20px;
}
.gallery-grid img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

/* CONTACT FORM */
.contact-form {
    display: flex;
    flex-direction: column;
}
.contact-form input,
.contact-form textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #bbb;
    border-radius: 4px;
}
.contact-form button {
    padding: 12px;
    background: #2e7d32;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
.contact-form button:hover {
    background: #1b5e20;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #ddd;
    margin-top: 40px;
}

/* BUSINESS CONTACT INFO SECTION */
.contact-info-section {
    background: white;
    padding: 40px 20px;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.contact-item h3 {
    margin-bottom: 8px;
    color: #2e7d32;
}

.contact-item p {
    margin: 0;
    font-size: 16px;
}

/* --- */

.container {
  display: flex;
  align-items: flex-start;   /* ensures both divs align at the top */
  gap: 20px;                 /* optional spacing between the two divs */
}

.leftBox {
  width: 200px;
  border: 0px dotted #000;
  padding: 0px;
}

.rightBox {
  width: 900px;
  border: 0px dotted #000;
  padding: 10px;
}

.galPhoto {
	border: 3px solid #f00;
	box-shadow: 1px 1px 1px #eee;	
}