/* home.css - Styles only for Devens Rezoning Tool homepage */

/* Background map */
body.homepage {
    background: #e7efe1; /* your base */
    position: relative;  /* needed for ::before positioning */
    z-index: 0;
}

/* Map overlay */
body.homepage::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url("../data/Background_1.png") no-repeat center center fixed;
    background-size: cover;
    opacity: 0.3; /* lower = more transparent map */
    z-index: -1; /* sit behind content but above base color */
}

/* Transparent overlay box */
.hero-overlay {
    background: rgba(255, 255, 255, 0.5);
    padding: 10px 30px;
    border-radius: 12px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Logo image */
.logo-img {
    height: 40px;
    width: auto;
    cursor: pointer;
}

/* Book demo button */
.demo-button {
    margin-left: 15px;
    padding: 6px 12px;
    background: #ffffffcc;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    color: #333;
    transition: background 0.2s ease;
}
.demo-button:hover {
    background: #fff;
}
