/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global styles */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #eef2f7;
}


section li {
	list-style-type: disc; 
}

	/*
section li::marker {
    content: "➜ "; /* Unicode for an arrow */
}
*/
img.imageicon {
	max-width: 20vw; 
	margin: 6px; 
}

img.imagesmall {
	max-width: 30vw; 
	margin: 6px; 
}

img.imagemedium {
	max-width: 50vw; 
	margin: 6px; 
}

img.imagelarge {
	max-width: 80vw; 
	margin: 6px; 
}

img.pictureframe {
	border: 1px solid silver; padding: 6px; 
}

img.rounded{
	border-radius: 25px;
	border: 1px solid #a6a6a6;
	-moz-box-shadow: 5px 5px 9px #BCBCBC;
	-webkit-box-shadow: 5px 5px 9px #BCBCBC;
	box-shadow: 5px 5px 9px #BCBCBC;
	-moz-border-radius: 25px;
	-webkit-border-radius: 25px;
}

/* Header styles */
header {
    background-color: #f5faf6; /* Light gray for dark logo visibility */
    color: #333; /* Dark text for contrast */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 0;
}

header#chrome {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 0;
  background: linear-gradient(160deg, #f5f5f5 20%, #d9d9d9 40%, #f5f5f5 60%);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.4), /* Lighter inner shadow */
              0 1px 3px rgba(0, 0, 0, 0.1); /* Softer outer shadow */
}

/* Header content (logo + nav) */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
}

.logo img {
    max-width: 320px;
    height: auto;
}

/* Navigation styles */
nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
		flex-wrap: wrap; 
		justify-content: center; 
}

#menu-toggle:checked + .menu-icon + .nav-menu {
    display: flex;
}

.nav-menu li {
    position: relative;
    margin-left: .5rem;
}

.nav-menu ul {
	list-style-type: none; 
}

.nav-menu a {
    color: rgb(50,50,50);
    text-decoration: none;
    font-weight: 700;
    padding: 0.25rem .5rem;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #ff6200;
}

/* Contact button in navigation */
.contact-button-blue {
    background-color: #0085ff;
	border: 2px solid #0085ff; 
    color: #fff !important;
    border-radius: 5px;
    padding: 0.5rem !important;
    transition: background-color 0.3s;
}
.contact-button-blue:hover {
    background-color: Navy;
	border: 2px solid Yellow; 
}
.contact-button-orange {
    background-color: #ff6200;
	border: 2px solid #ff6200; 
    color: #fff !important;
    border-radius: 5px;
    padding: 0.5rem !important;
    transition: background-color 0.3s;
}
.contact-button-orange:hover {
    background-color: Navy;
	border: 2px solid Yellow; 
}
.contact-bottom-button-orange {
font-family: Arial; position: fixed; 
bottom: 10px; 
right: 10px; 
width: 95px; 
height: 95px; 
background-color: #ff6200; 
color: #fff !important; 
	border: 2px solid #ff6200; 
border-radius: 50%; 
display: flex; 
align-items: center; 
justify-content: center; 
text-align: center; 
line-height: 1; 
font-size: 120%; 
font-weight: bold; 
text-decoration: none; 
box-shadow: 0 4px 8px rgba(0,0,0,0.2); 
z-index: 9999; 
padding: 0 10px; 
}
.contact-bottom-button-orange:hover {
    background-color: Navy;
	border: 2px solid Yellow; 
}











/* Dropdown menu */
.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: 100%;
    left: 0;
    border-radius: 5px;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    color: #333;
    padding: 0.75rem 1rem;
    display: block;
}

.dropdown-menu a:hover {
    background-color: #f4f7fa;
    color: #ff6200;
}

/* Mobile menu toggle */
#menu-toggle {
    display: none; /* Hide checkbox */
}

 
/* Mobile menu toggle */
.menu-icon {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #333;
    border-radius: 4px;
    opacity: 1;
    left: 0;
    transition: 0.25s ease-in-out;
}

.menu-icon span:nth-child(1) {
    top: 0px;
}

.menu-icon span:nth-child(2) {
    top: 8px;
}

.menu-icon span:nth-child(3) {
    top: 16px;
}

#menu-toggle:checked + .menu-icon span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
}

#menu-toggle:checked + .menu-icon span:nth-child(2) {
    opacity: 0;
}

#menu-toggle:checked + .menu-icon span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
}

/* Main content styles */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2vw;
}

h1 {
    color: #003087;
    font-size: 300%;
    margin-bottom: 1.5rem;
    text-align: center;
}

section {
    margin-bottom: 2rem;
    background-color: #fff;
	padding: 2rem 2%; 
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

h2 {
    color: #003087;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

p {
    color: #555;
	margin-bottom: 1rem; /* Added for paragraph spacing */
}


/* Product grid styles */
.product-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.product-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    text-decoration: none;
    display: block;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.product-item img {
    width: 100%;
    max-width: 150px;
    height: auto;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.product-item p {
    padding: 0.75rem;
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}

/* Product detail page image */
.product-detail-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1rem auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Contact form styles */
form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
}

label {
    margin-top: 1rem;
    color: #003087;
    font-weight: 700;
}

input, textarea {
    padding: 0.75rem;
    margin-top: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

button {
    margin-top: 1rem;
    padding: 0.75rem;
    background-color: #ff6200;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #e55a00;
}

/* Footer styles */
footer {
    background-color: #1a252f;
    color: #fff;
    padding: 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    margin: 1rem;
    min-width: 200px;
}

.footer-section h3 {
    color: #ff6200;
    margin-bottom: 1rem;
}

.footer-section p, .footer-section ul {
    color: #ccc;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
}

.footer-section a:hover {
    color: #ff6200;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #333;
    margin-top: 1rem;
}

/* Tablet responsiveness */
@media (max-width: 768px) {
    .header-content {
        padding: 1rem;
    }

    .menu-icon {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #f4f7fa;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    #menu-toggle:checked + .menu-icon + .nav-menu {
        display: flex;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .dropdown-menu {
        position: static;
        background-color: #e8ecef;
        box-shadow: none;
        border-radius: 0;
    }

    .contact-button {
        display: inline-block;
        margin: 0.5rem 0;
    }

    .footer-content {
        flex-direction: column;
    }

    h1 {
        font-size: 2rem;
    }

    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .header-content {
        padding: 1rem;
    }

    .logo img {
        max-width: 200px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    section {
        padding: 1.5rem;
    }

    .product-grid {
		grid-template-columns: repeat(2, 1fr);
/*        grid-template-columns: 1fr;  */
    }

    .product-item img {
        max-width: 80px;
        height: 80px;
    }
}




div.polaroid { /* Cool little polaroid looking images, great for Recently Completed */
display: inline-block;
border-radius: 4px; 
border: 6px solid white; 
  width: 200px;
max-width: 35vw; 
  background-color: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  margin: 4px 8px 18px 8px;
}
/*
div.polaroidcontainer {
font-family: ; 
font-size: 100%; 
  text-align: center;
  border: 1px solid White;
  line-height: 0%;
  margin-top: 6px;
}
*/
div.polaroid img {
    width: 100%;
    height: 125px; 
    max-height: ; 
	object-fit: contain; 
	background-color: black; 
}

div.testimonial_wrapper {
 display: inline-block; 
text-align: left; 
margin: 24px auto; 
width: 80%; 
background-color: #D9ECEC; 
border: 3px solid #DEE7E7; 
border-radius: 30px; 
padding: 20px; 
}
div.testimonial_initial {
    height: 45px; width: 46px; border-radius: 25px; float: left; border-collapse: collapse; margin-right: 5px;
}
p.testimonial_initial {
    font-family: Arial, Calibri, sans-serif; font-size: 14pt; color: white; position: relative; text-align: center; width: 100%; margin: 11px 0 0 0px;
}
.testimonial_name {
	font-family: Calibri, Arial, sans-serif;
	font-size: 14pt;
	font-weight: bold;
	color: #708090;
	line-height: 14px;
	margin: 6px; 
}
.testimonial_quote {
	font-family: Arial, Calibri, sans-serif;
	font-size: 11pt;
	font-weight: normal;
	color: #434d56;
	margin: 10px 0 10px 0;
}
