

	    
@font-face {
    font-family: 'NotoSans';
    src: url('NotoSansSymbols-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'NotoSans';
    src: url('NotoSansSymbols-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'NotoSans';
    src: url('NotoSansSymbols-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Pacifico';
    src: url('Pacifico-Regular.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
	font-family: 'Sigmar';
    src: url('Sigmar-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --highlight-color: #CF489B;
    --highlight-shadow: 4px 4px 6px rgba(207, 72, 155, 0.1);
    --submit-button: #D961A6;
    --submit-hover-button-color: #FF6BC8;
    --shadow-color: rgba(207, 72, 155, 0.3);
    --tag-line-color: rgba(207, 72, 155, 0.9);
    --subtitle-underline-color: #CF489B;
    --service-icon-background-color: rgba(230, 115, 183, 0.1);
}

.grecaptcha-badge { visibility: hidden; } 
        
html {
	scroll-behavior: smooth;
}

body {
    font-family: 'NotoSans', Arial, sans-serif;
    font-weight: 300;
    margin: 0;
    padding-left: 20px;
    padding-right: 20px;
    background: #D6D6D8 url('BackgroundPattern.png') repeat;
    background-size: auto;
    line-height: 1.6;
    color: #3b3b3b;
}

header {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.4);
    margin: 20px auto;
    max-width: 800px;
}

header .tagline {
    font-family: 'Pacifico', cursive;
    letter-spacing: 0.08em;
    font-size: clamp(1.28em, 2.5vw, 1.7em);
    color: var(--tag-line-color);
}

header img {
    max-width: 500px;
    width: 80%;
    height: auto;

}

section {
    margin: 20px 0;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


h1 {
    font-family: 'Sigmar', sans-serif;
    font-weight: 400;
    letter-spacing: 0.03em;
    font-size: clamp(1.8em, 3.5vw, 2.5em);
    margin-bottom: 10px;
    margin-top: 0px;
    border-bottom: 2px solid var(--subtitle-underline-color);
    padding-bottom: 5px;
    color: var(--highlight-color);
}


h2 {
    font-family: 'Sigmar', sans-serif;
    font-weight: 400;
	letter-spacing: 0.03em;
    font-size: clamp(1.5em, 2.5vw, 2em);
    margin-bottom: 10px;
    border-bottom: 2px solid var(--subtitle-underline-color);
    padding-bottom: 5px;
    color: var(--highlight-color);
}

h3 {
    font-weight: 600;
	letter-spacing: 0.03em;
    font-size: 1.2em;
    margin-bottom: 10px;
    margin-top: 10px;
	color: var(--highlight-color);
}

p {
	font-size: 1em;
}

b {
	font-weight: 400; 
	color: var(--highlight-color);
}

em {
	font-weight: 600; 
	color: var(--highlight-color);
}

strong {
	font-size: 1.1em;
	font-weight: 400;
}

blockquote {
	font-size: 0.9em;
	font-style: italic;
}








/* An Opportunity */

.an-opportunity {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    align-items: center;
}

.an-opportunity img {
    flex: 1 1 30%;
    max-width: 100%;
    max-height: 300px;
    border-radius: 13px;
    object-fit: cover;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.1);
}

.an-opportunity .subtitle {
    flex: 1 1 70%;
    font-size: clamp(1.13em, 2.5vw, 1.5em);
    line-height: 1.6;
    text-align: center;
    margin: 20px;
}

@media (max-width: 500pt) {
    .an-opportunity {
        flex-direction: column; 
        gap: 10px; 
    }

    .an-opportunity img {
        flex: 1 1 auto; 
        max-width: 80%; 
        margin: 0 auto; 
        margin-top: 50px;
    }

    .an-opportunity .subtitle {
        flex: 1 1 auto; 
        text-align: center; 
    }
}




/* Building Together */

.building-together {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.building-together .column  {
    flex: 1 1 calc(30% - 20px);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    align-items: center;
    box-shadow: 2px 2px 8px var(--service-icon-background-color);
}
        
.building-together .column img {
    object-fit: cover;
    max-width: 200px;
    max-height: 200px;
    border-radius: 13px;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    margin-bottom: 6px;
}

.middle-column {
	display: flex;
    flex-direction: column; 
}

.middle-column img {
    order: 1;
}


@media (max-width: 500pt) {
    .building-together {
        flex-direction: column; 
    }
    
    .building-together img {
    	order: -1;
	}
}
        
        
        




/* Our Craft */

.craft-columns {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    margin-top: 10px;
}

.craft-column {
    flex: 1 1 30%;
    display: flex;
    flex-direction: column;
    gap: 20px
}
.side-column {
    margin-top: 20px;    
}

.middle-craft-column {
    display: flex;
    justify-content: center;
	    order: 0;
}

.middle-craft-column img {
    width: 100%; 
    height: auto; 
    object-fit: cover;
}

.tree-mojo {
    color: var(--highlight-color); 
    font-family: 'Pacifico', cursive;
    letter-spacing: 0.08em;
    font-size: clamp(1.13em, 2.5vw, 1.5em);
    text-align: center; 
    margin-top: 0px; 
    margin-bottom: 0; 
}

@media (max-width: 500pt) {
    .craft-columns {
        flex-direction: column; 
        gap: 0px;
    }
    .craft-column {
		gap: 5px;    
	}
	.side-column {
		margin-top: 0px;	
	}
    .middle-craft-column img {
		height: 120pt;
		width: 50pt;
		object-position: top;
	}
	.middle-craft-column {
		order: -1;
		margin: 0 auto;
	}
	.tree-mojo {
		margin-top: 20pt;	
	}
}


/* Behind our Vision */

.behind-vision {
    position: relative; 
    padding-bottom: 200px; 
    background-color: #fff; 
    overflow: hidden; 
}

.behind-vision .subtitle {
	font-size: 1em;
    font-weight: 400;
    margin: 0;
    line-height: 1.6;
}
		
.bottom-grass {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%; 
    height: auto; 
}

@media (max-width: 500pt) {
	.behind-vision {
		padding-bottom: 130px;	
	}	
}










.formbox {
    width: 90%;
    max-width: 300px;
    text-align: left;
    margin: 0 auto;
    padding: 10px;
}

form label {
    display: block;
    text-align: left;
    margin-bottom: 0;
    font-weight: 400;
}

form input, form textarea {
    width: 100%;
    padding: 10px 0;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
}

form button {
    display: block;
    margin: 1em auto 0;
    text-align: center;
    background-color: var(--highlight-color);
    color: #fff;
    font-size: 1em;
    font-weight: 600;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}
form button:hover {
    background-color: var(--submit-hover-button-color);
    transform: scale(1.05);
}







footer {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-top: 1px solid #ddd;
    border-radius: 8px;
    margin: 20px auto;
    max-width: 800px;
}

footer p {
    margin: 5px 0;
}




/* TABLE STATS */



.stat-table {
    width: 95%;
    max-width: 400px;
    margin: 20px auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 16px;
    box-shadow: 2px 2px 8px var(--shadow-color);
    font-family: 'NotoSans', sans-serif;
    font-size: 1em;
}

.stat-table h3 {
    font-weight: 600;
    font-size: 1.2em;
    color: var(--highlight-color);
    margin-bottom: 1em;
    border-bottom: 2px solid var(--subtitle-underline-color);
    padding-bottom: 4px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-item-title {
    flex: 1;
    font-weight: 600;
    color: #3b3b3b;
}

.stat-item-subtitle {
    font-size: 0.85em;
    color: #666;
    margin-top: 4px;
}

.stat-date {
    flex: 0 0 80px;
    text-align: right;
    font-size: 0.9em;
    color: #666;
}

.stat-qty {
    flex: 0 0 40px;
    text-align: right;
    font-weight: 600;
    color: var(--highlight-color);
}




/* TWO COLUMNS */

.two-column-block {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 95%;
    margin: 20px auto;
}

.two-column-block .column {
    flex: 1 1 40%;
    padding: 16px;
    border-radius: 8px;
    font-family: 'NotoSans', sans-serif;
    font-size: 1em;
}

/* Stack columns on small screens */
@media (max-width: 600px) {
    .two-column-block .column {
        flex: 1 1 100%;
    }
}



/* LIST TABLE */

.submission-table {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    font-family: 'NotoSans', sans-serif;
    font-size: 1em;
}

.submission-row {
    display: flex;
    align-items: center;
    padding: 10px 8px;
    border-bottom: 1px solid #ccc;
}

.submission-row .header {
    color: var(--highlight-color);
    font-weight: 600;
    font-size: 0.9em;
    text-align: center;
}

.submission-row:last-child {
    border-bottom: none;
}

.submission-icon {
    width: 8px;
    height: 8px;
    min-width: 5px;
    min-height: 5px;
    border-radius: 50%;
    background-color: var(--highlight-color);
    margin-right: 10px;
}

.submission-read .submission-icon {
    background-color: transparent;
    /*border: 1px solid #ccc;*/
}

.submission-date {
    width: 60px;
    font-size: 0.8em;
    color: #666;
    margin-right: 10px;
    margin-left: 10px;
    text-align: center;
    flex-shrink: 0;
}

.submission-summary {
    flex: 1 1 60%;
    font-weight: 300;
    margin-right: 10px;
}

.submission-origin {
    flex: 1 1 60%;
    font-weight: 300;
    font-size: 0.8em;
    margin-right: 10px;
}

.submission-status-icon {
    font-size: 1em;
    color: var(--highlight-color);
    margin-right: 10px;
    flex-shrink: 0;
}

.submission-tag {
    width: 80px;
    padding: 0 10px;
    margin: 0 20px;
    font-size: clamp(0.5em, 0.6em, 0.8em);
}

.submission-unwanted {
    width: 100%;
    display: inline-block;
    background: #616161;
    color: #fff;
    font-weight: bold;
    padding: 2px 6px 4px 6px;
    border-radius: 5px;
    margin: 0 auto;
}

.submission-dangerous {
    width: 100%;
    display: inline-block;
    background: #e53935;
    color: #fff;
    font-weight: bold;
    padding: 2px 6px 4px 6px;
    border-radius: 5px;
    margin: 0 auto;
}

.submission-view-link a {
    /*font-size: 0.8em;
    color: var(--highlight-color);
    text-decoration: underline;
    flex-shrink: 0;*/

    display: block;
    /*margin: 1em auto 0;*/
    text-align: center;
    background-color: var(--highlight-color);
    color: #fff;
    font-size: 0.7em;
    font-weight: 600;
    padding: 2px 6px 4px 6px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
}

.secondary-view-link a {
    display: block;
    text-align: center;
    color: var(--highlight-color);
    font-size: 0.9em;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
}


/* Pagination row */
.submission-pagination.small {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 1.1em;
    font-weight: 400;
    color: #333;
}

.submission-pagination.small a {
    font-size: 1.3em;
    font-weight: 600;
    color: var(--highlight-color);
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.submission-pagination.small a:hover {
    background-color: rgba(207, 72, 155, 0.1);
}

.submission-pagination.small span {
    color: #666;
    font-size: 0.9em;
}

.label-full {
    display: inline;
}
.label-short {
    display: none;
}

@media (max-width: 600px) {
    .label-full {
        display: none;
    }
    .label-short {
        display: inline;
    }
}



/* Responsive version */
@media (max-width: 600px) {
    .submission-date,
    .submission-status-icon {
        display: none;
    }

    .submission-view-link {
        font-size: 0.85em;
    }
    .submission-tag {
        width: 30px;
    }

}





/* ===== Login error banner (matches the form box width) ===== */
.formbox .error-banner{
    width: 100%;
    box-sizing: border-box;
    margin: 14px 0 12px 0;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #d62828;      /* red border */
    background: #ffe5e7;            /* soft red background */
    color: #7a0b0b;                 /* dark red text */
    text-align: center;             /* center everything */
    line-height: 1.35;
    font-size: 0.9em;
    font-weight: 500;
}

/* variant for system errors if you want it slightly different */
.formbox .error-banner--system{
    border-color: #ff9f1c;          /* amber-ish, keep if you like */
    background: #fff3e0;
    color: #7a4b00;
}
[aria-invalid="true"] {
    border-color: var(--highlight-color);
    box-shadow: 0 0 0 3px rgba(207,72,155,0.12);
}







/* ===== App Header (two-column: logo left, title+subrow right) ===== */
.app-header {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 16px;
    /* keep the same general container feel as your current header */
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.4);
    margin: 20px auto;
    max-width: 800px;
    border-radius: 8px;
}

.app-header .brand-left {
    display: flex;
    align-items: center;
}

.app-header .brand-logo {
    /* preserves existing perceived size constraints */
    width: 180px;     /* adjust if your current logo is smaller/larger */
    height: auto;
}

.app-header .brand-right {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* Service title — keep the same “size” feel you use for titles */
.app-header .service-title {
    font-family: 'Sigmar', sans-serif;
    font-weight: 400;
    text-align: right;
    letter-spacing: 0.03em;
    font-size: clamp(1.8em, 3.5vw, 2.5em); /* mirrors your h1 sizing */
    color: var(--highlight-color);
    line-height: 1.1;
    margin: 0 0 6px 0;
    /* no underline here; it should read like a product masthead, not a heading */
}

/* Subrow: breadcrumbs (left) + menu (right) */
.service-subrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

/* ===== Breadcrumbs ===== */
.breadcrumbs {
    display: flex;
    gap: 6px;
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 0.95em;
    font-weight: 600;
    flex-wrap: wrap;
}

.breadcrumbs .crumb {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.breadcrumbs .crumb::after {
    content: "›";
    margin: 0 15px;
    color: #888;
}

.breadcrumbs a {
    text-decoration: none;
    color: #888;
    padding: 2px 0px;
    border-radius: 8px;
    transition: color 120ms ease;
}

/* Breadcrumb hover: subtle underline to signal "navigational path" */
.breadcrumbs a:hover {
    color: var(--highlight-color);
    text-decoration: none;
}







/* ===== User menu (persistent, slightly different hover affordance) ===== */
.user-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 0 0 0 auto;
    list-style: none;
    font-size: 0.95em;
}

.user-menu .divider {
    color: #999;
    padding: 0 2px;
}

.user-menu a {
    text-decoration: none;
    color: var(--highlight-color);
    padding: 4px 8px;
    border-radius: 999px; /* pill */
    transition: background 120ms ease, transform 120ms ease;
    display: inline-block;
}

/* Menu hover: pill fills slightly (different from breadcrumb underline) */
.user-menu a:hover {
    background: rgba(207, 72, 155, 0.12);
    transform: translateY(-1px);
}

/* ===== Responsive behavior ===== */
@media (max-width: 600px) {
    .app-header {
        grid-template-columns: 1fr; /* stack logo/title on small screens */
        text-align: center;
    }

    .app-header .brand-left {
        justify-content: center;
    }

    .service-subrow {
        flex-direction: column;
        gap: 8px;
    }

    .user-menu {
        margin: 0; /* center under breadcrumbs */
    }
}


