﻿/* 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: 450px;
    height: auto;
display: flex; 
align-items: center;
}

/* 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: MediumBlue;
	color: LightYellow; 
	border: 2px solid Yellow; 
	text-shadow: 2px 2px Navy; 
}
.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: MediumBlue;
	color: LightYellow; 
	border: 2px solid Yellow; 
	text-shadow: 2px 2px Navy; 
}
.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: Blue;
	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 1rem;
}

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

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

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-grid img {
    width: 100%;
    max-width: 150px;
    height: auto;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.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 p {
    padding: 0.75rem;
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}

    .grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    padding: 10px;
  }

  .grid-item {
    background: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: ; 
    text-decoration: none; /* Optional: Removes underline from links */
  }
  .grid-item:hover {
    transform: translateY(-6px) scale(1.02); /* slight pop-up */
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    background: #fffef7; /* subtle background shift */
  }
  .grid-item h2 {
    margin-top: 0;
    font-size: 1.3em;
  }

  .grid-item img {
    width: 100%;
    max-width: 150px;
    height: auto;
	aspect-ratio: 3 / 2;
}
.grid-item figure {
  margin: 10px 0;
  text-align: center;   /* centers the caption under the image */
}

.grid-item figcaption {
  font-size: 0.9em;
  color: Red;
  font-family: Georgia; 
  font-weight: bold; 
  font-size: 105%; 
  margin-top: 6px;
}
  .grid-item p {
    flex-grow: 1; /* ensures consistent height with varying text */
    text-align: center; 
  }
  
  

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

	.contact-form {
		padding: ; 
		float: right; 
		margin-left: ; 
		margin-bottom: ; 
		width:290px; 
		padding: 12px 0px 0 10px; 
	}		

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.polaroid img {
    width: 100%;
    height: 125px; 
    max-height: ; 
	object-fit: contain; 
	background-color: black; 
}
div.image-row img {
	height: 125px; 
	width: auto; /* 150px */
	max-width: 40vw; 
	margin-top: 0px; 
	margin-bottom: 0px;
	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;	
}
div.image-row p {
	text-align: center; 
}

blockquote {
	width: 800px;
	max-width: 90%; 
	background-color: AliceBlue; 
	margin: 15px auto; 
	padding: 20px; 
	border-radius: 25px; 
	box-shadow: 4px 4px 4px Grey; 
	overflow: auto; 
}
blockquote p {
	color: Blue; 
	font-style: italic; 
}
blockquote img {
	max-height: 120px; 
	width: auto; 
	max-width: 30vw; 
	border-radius: 20px; 
	float: right; 
	margin-left: 12px; 
	border: 5px solid White; 
}


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

    .menu-icon {
        display: block;
    }
  .show-if-wider {
    display: none;
  }
    .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);
    }
	.contact-form {
		padding: 15px; 
		float: none; 
		margin-left: auto; 
		margin-bottom: 30px; 
	}		
}



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



@media (min-width: 801px) { /* If the screen is wider than this then the following styles apply */
	.show-if-wider {
    display: inline-block; width: 100%; 
	}
}
