/* max1200.css
#-- Author: Warren Moore - CJ Tech Support
#-- Starts Here ----------------------------- */

body {
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    width: 100%;
}

.clear{clear:both;}
.clearl{clear:left;}
.clearr{clear:right;}

h1, h2 {
    margin-bottom: 20px;
    font-weight: 400;
}
h3, h4, h5, h6 {
	margin-bottom: 10px;
    font-weight: 500;
}
	p {
	font-size: 15px;
	font-weight: 300;
	line-height:1.2em
	}
	
	header {
	max-width: 1024px;
    }
	
	#h1-title {
	max-width: 1024px;
	}
	
	.pageContent {
    max-width: 1024px;
    }
		
	body > section {
	max-width: 1024px;
	}

/* Content Section
-------------------------------------------------------------------- */
.content-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Add space between columns */
}

.column {
    flex: 1;
    padding: 1%;
    margin: 0;
    
}

/* Photo Gallery and Container */

.gallery-container {
	display: flex;
	flex-wrap: wrap; /* Allows items to wrap to the next row if needed */
	justify-content: center; /* Centers the items horizontally */
	gap: 10px; /* Adds some space between the gallery items */
	}
.product-gallery {
	flex: 1 1 150px; /* Ensures all items are at least 150px wide and grow/shrink as needed */
	max-width: 160px; /* Optional: Limits the max width of each item */
	text-align: center; /* Centers the content within each gallery item */
	}
.product-gallery img {
	max-width: 100%;
	height: auto; /* Ensures the image scales correctly */
	display: block;
	}

#photoframe {
	position:relative; 
	width:100%; 
	height: 800px; 
	border:none; 
	background-color:#ffffff; 
	margin-top:0px;
	object-fit: cover;
	}

.gallery {
	margin: 5px;
	float: left;
	width: 480px;
	max-width: 23%;
	height: 480px;
	max-height: 100%;
	}


/* Footer Section
------------------------------------------------------------------- */

.footer {color:#fff; padding:0 10px; margin:0; font-family:Arial, Helvetica, sans-serif; font-size:12px; font-weight:bold; line-height:48px; background-color: black;}
.footer-copyright{float:left; margin:0 20px 0 0; padding:0; max-width:80%;}
.footer-phone{float:left; margin:0; padding:0; max-width:20%;}
.design{float:right; margin:0; padding:0; width:140px;}
.footer a {color:#F27025; text-decoration:none;}
.footer a:hover {color:#fff;}

/* Splash Banner Styles */
.splash-banner {
    background-color: #ffffff; /* Background color */
    border: 1px solid #0C75BC; /* Border color */
    color: black; /* Text color */
    padding: 30px 30px;
    text-align: center;
    max-width: 80%;
    width:600px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.splash-txt {
    font-size: 1.5rem;
    font-weight: bold;
    color: #755E0E; /* Bright red for attention */
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

/* Keyframe  Animation 
 * ----------------------------------------------------------*/
@keyframes flash {
    0%, 100% {
        color: #ff0000; /* Red */
    }
    50% {
        color: #ffff00; /* Yellow */
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes stroke {
    0% {
        color: transparent;
        text-shadow: 0 0 8px #ff0000;
    }
    100% {
        color: #ff0000;
        text-shadow: none;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Webforms by CJ Tech Support 
# --------------------------------  */
#formframe{
	position:relative; 
	margin:auto; 
	overflow:hidden; 
	width:100%; 
	padding-top:0;
	}
#webform{
	position:relative; 
	width:100%; 
	max-width:600px; 
	height: 900px; 
	border:none; 
	background-color:#ffffff; 
	background-image:url('/images/formloading.gif'); 
	background-repeat:no-repeat; 
	background-position:top;
	margin-top:-80px; 
}
.frm-smik-subscription{
	position: relative;
	width:100%; 
	height: 600px; 
	border:none; 
	background-color:#ffffff; 
	background-image:url('/images/smik-newsletter.jpg'); 
	background-repeat:no-repeat; 
	background-position:center;
	background-size: cover;
	margin-top:0;
	}
