body.homebody {
    font-family: 'Times new roman', sans-serif;
    margin: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}
/*  -------------------- */
.container-home {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* -------------------------------*/
.hero {
    background-color: #e0f7fa;
    /* Light blue-green. */
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #2e7d32;
    /* Dark green */
}

.hero .tagline {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 20px;
}

.cta-buttons a {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    margin: 0 10px;
    font-weight: bold;
}

.cta-buttons .primary {
    background-color: #2e7d32;
    /* Dark green */
    color: white;
}

.cta-buttons .secondary {
    background-color: #fff;
    color: #2e7d32;
    border: 1px solid #2e7d32;
}

.owner-intro {
    padding: 60px 0;
    background-color: #fff;
}

.owner-intro .container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.owner-image-placeholder {
    border-radius: 50%;
    overflow: hidden;
    width: 150px;
    height: 150px;
    border: 2px solid #ccc;
}

.owner-image-placeholder img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.owner-text h3 {
    color: #2e7d32;
    margin-bottom: 10px;
}

.owner-text .learn-more {
    display: inline-block;
    margin-top: 15px;
    color: #0288d1;
    /* Blue */
    text-decoration: none;
    font-weight: bold;
}

.vending-categories {
    background-color: #f9f9f9;
    padding: 60px 0;
    text-align: center;
}

.vending-categories h2 {
    color: #2e7d32;
    margin-bottom: 30px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.category {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.category img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.category h3 {
    color: #333;
    margin-bottom: 10px;
}

.category .learn-more {
    display: inline-block;
    margin-top: 15px;
    color: #0288d1;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a.active {
    font-weight: bold;
    color: #2e7d32;
    /* Or another prominent color */
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1em 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Basic responsive adjustments */
@media (max-width: 768px) {
    .owner-intro .container {
        flex-direction: column;
        text-align: center;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }
}