

	    
@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);
}
        
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;
}


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;
	}
}
        
        
        

/* Client Spotlight */

.client-spotlight {
	display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.client-column {
	display: flex;
	flex-direction: column;
	gap: 0px;
	margin-top: 10px;
}
.client-row {
	display: flex;
	align-items: center;
	/* margin-bottom: -80px; */
}
.client-img-container {
	display: flex;
    align-items: center; 
    padding: 10px;
    position: relative; 
    height: 180px; 
    overflow: visible;
    flex-shrink: 0;
    width: 250px;
    z-index: 2;
}
.client-img-container img {
	width: 210px; 
    height: 210px; 
    object-fit: cover; 
    position: absolute; 
    left: 50%; 
    top: 50%;
    transform: translate(-50%, -50%); 
    border-radius: 105px; 
    z-index: 1;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.1);
}
.client-row:nth-child(1) .client-img-container {
    z-index: 5;
}
.client-row:nth-child(2) .client-img-container {
	left: 30px;
    z-index: 4;
}		
.client-row:nth-child(3) .client-img-container {
    z-index: 3;
}
.client-row:nth-child(4) .client-img-container {
	left: 30px;			
    z-index: 2;
}
.client-row:nth-child(5) .client-img-container {
    z-index: 1;
}
.client-text-container {
	margin-left: 20px; 
	z-index: 2;
	padding: 10px;
	border-radius: 8px;
}
.client-name-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}
.client-links {
    display: flex;
    gap: 10px; 
}
.client-links img {
	width: auto;
	height: 20px;
}
.testimonials-list {
    list-style: none;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.1);
		margin-top: 50px;
}

@media (max-width: 500pt) {
	.client-row {
		align-items: flex-start;
	}
	.client-img-container {
		width: 80px;
		height: 80px;
	}
	.client-row:nth-child(1) .client-img-container {
	}
	.client-row:nth-child(2) .client-img-container {
		left: 0px;
	}		
	.client-row:nth-child(3) .client-img-container {
	}
	.client-row:nth-child(4) .client-img-container {
		left: 0px;			
	}
	.client-row:nth-child(5) .client-img-container {
	}
	.client-img-container img {
		width: 80px; 
	    height: 80px; 
    	border-radius: 40px; 
    	left: 0%; 
		top: 0%;
    	transform: translate(0%, 0%); 
	}
	.client-name-row {
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 0px;
	}
	.client-text-container {
		margin-left: 5px; 
		padding: 0px;
	}
	.testimonials-list {
		margin-top: 10px;
	}
}




/* 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;	
	}	
}







/* Let's Talk */

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

form input, form textarea {
    width: 100%;
    max-width: 600px;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form button {
    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;
}



#sticky-element {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 20;
    text-align: center;
    transition: opacity 0.3s ease, transform 0.2s ease-in-out;

	color: white;
    font-family: 'Sigmar', sans-serif;
	font-weight: 400;
	letter-spacing: 0.03em;
    font-size: clamp(0.8em, 2.5vw, 1.2em);
    
    background: var(--highlight-color);
    padding: 5px 10px;    
    border-radius: 15px; 
	box-shadow: var(--highlight-shadow);
}

#sticky-element:hover {
    background-color: var(--submit-hover-button-color);
    transform: scale(1.05);
}

#sticky-element.hidden {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 500pt) {
	#sticky-element {
		bottom: 10px;
	    right: 10px;				
		padding: 10px 20px;    			    
	}
}



