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

body {
    font-family: 'Open Sans', sans-serif;
    background: #fff;
}

.header {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.header .logo img {
    width: 180px;
}

.main {
    padding: 0px;
    text-align: center;
}
.gallerypadding{
    padding: 20px;
}

.photogallery {
    width: 100%;
    min-height: 200px;
    display: flex;
    justify-content: center; /* Center the items horizontally */
    flex-wrap: wrap;
    margin: auto; /* Set margin to auto to center horizontally */
    padding: 10px;
}

.photogallery .grid-item {
    width: calc(25% - 10px); /* Four items wide, minus margins */
    margin: 2px; /* Adjust margin to create gap between items */
}

img{
	pointer-events: none;
}

a img{
	pointer-events: auto;
}


.photogallery .grid-item img {
    width: 100%;
}

/* Media query for responsiveness */
@media (max-width: 768px) {
    .photogallery .grid-item {
        width: calc(50% - 20px); /* Two items wide, minus margins */
        
    }
    
}

@media (max-width: 480px) {
    .photogallery .grid-item {
        width: 100%; /* Full width for single item */
    }
    .photogallery {
    width: 100%;
    min-height: 200px;
    display: flex;
    justify-content: center; /* Center the items horizontally */
    flex-wrap: wrap;
    margin: auto; /* Set margin to auto to center horizontally */
    padding: 0px;
}
}


/* Hide the photo number in Magnific Popup */
.mfp-counter {
    display: none;
}
.mfp-container {
    box-shadow: none !important;
    background-color:rgba(0, 0, 0, 0.8);
    
}

.footer {
    background-color: #fff; /* White background */
    padding: 40px;
    margin-top: 15px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    flex: 1; /* Take up remaining space */
}

.footer-left span {
    color: #ccc; /* Link color */
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
}

.footer-right {
    flex: 1; /* Take up remaining space */
    text-align: right;
}

.footer-right a {
    margin-left: 2px;
    text-decoration: none;
     display: inline-block;
    width: 20px; /* Adjust width as needed */
    height: 20px; /* Adjust height as needed */
    background-color: #ccc; /* Adjust background color */
  
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: #fff; /* Adjust icon color */
	border-radius: 4px;

}

.footer-right a:hover {
background-color: #fc846f; /* Adjust background color */
}

.footer-image {
    text-align: center;
    margin-top: 50px;
}

.footer-image img {
    max-width: 100%; /* Ensure image doesn't exceed container width */
}



.image-container500{
    position: relative;
    width: 100%; /* Set width to 100% of viewport width */
    margin: 0 auto; /* Center the container horizontally */
    height: 500px; /* Set a maximum height */
    overflow: hidden; /* Hide overflow */
    background: #fff;
}

.image-container500 img {
    width: 120%; /* Allow the image to scale */
    height: auto; /* Allow the image to scale */
    max-width: none; /* Ensure the image doesn't exceed the container's width */
    max-height: none; /* Ensure the image doesn't exceed the container's height */
    position: absolute; /* Set position to absolute */
    top: 50%; /* Move the image to the vertical center */
    left: 50%; /* Move the image to the horizontal center */
    transform: translate(-50%, -50%); /* Adjust positioning */
}

@media (max-width: 1500px) {
   .image-container500 {

    height: 400px; /* Set a maximum height */

}
}
@media (max-width: 750px) {
   .image-container500 {

    height: 300px; /* Set a maximum height */

}
}

.image-container500{
    position: relative;
    width: 100%; /* Set width to 100% of viewport width */
    margin: 0 auto; /* Center the container horizontally */
    height: 500px; /* Set a maximum height */
    overflow: hidden; /* Hide overflow */
    background: #fff;
}

.image-container500 img {
    width: 110%; /* Allow the image to scale */
    height: auto; /* Allow the image to scale */
    max-width: none; /* Ensure the image doesn't exceed the container's width */
    max-height: none; /* Ensure the image doesn't exceed the container's height */
    position: absolute; /* Set position to absolute */
    
}

.image-container700{
    position: relative;
    width: 100%; /* Set width to 100% of viewport width */
    margin: 0 auto; /* Center the container horizontally */
    height: 700px; /* Set a maximum height */
    overflow: hidden; /* Hide overflow */
    background: #fff;
}

.image-container700 img {
    width: 110%; /* Allow the image to scale */
    height: auto; /* Allow the image to scale */
    max-width: none; /* Ensure the image doesn't exceed the container's width */
    max-height: none; /* Ensure the image doesn't exceed the container's height */
    position: absolute; /* Set position to absolute */
    
}

.image-force-middle img{
	
    top: 50%;
    left: 50%; /* Move the image to the horizontal center */
    transform: translate(-50%, -50%); /* Adjust positioning */
}

.image-force-top img{

    top: 0; /* Move the image to the top */
    left: 50%; /* Move the image to the horizontal center */
    transform: translateX(-50%); /* Center the image horizontally */
}

@media (max-width: 1500px) {
.image-container700 {

    height: 500px; /* Set a maximum height */

}

.image-container500 {

    height: 500px; /* Set a maximum height */

}
}
@media (max-width: 1000px) {

.image-container500 {

    height: 350px; /* Set a maximum height */

}

}
@media (max-width: 750px) {
.image-container700 {

    height: 300px; /* Set a maximum height */

}
.image-container500 {

    height: 250px; /* Set a maximum height */

}
}





.content-container {
    max-width: 1200px;
    padding: 20px;
    width: 100%;
    margin: 10px auto;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}



.content-container h1{
	font-size: 26px;
    font-weight: 400;
    color: #fc846f;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    margin: 10px 0px;
}
.content-container h2{
	font-size: 20px;
	line-height: 40px;
    font-weight:500;
    color: #fc846f;
    text-align: left;
    text-decoration: none;
    font-family: "Quicksand", sans-serif;
    margin: 5px 0px;
}
.content-container h3{
	font-size: 18px;
	line-height: 30px;
    font-weight:500;
   color: #fc846f;
    text-align: left;
    text-decoration: none;
    font-family: "Quicksand", sans-serif;
	margin: 5px 0px;
}

.content-container h4{
	font-size: 14px;
    font-weight: 300;
    color: #fc846f;
    text-align: left;
    text-decoration: none;
    font-family: "Quicksand", sans-serif;
	margin: 5px 0px;
}

.content-container h4 a{

    color: #fc846f;
    text-decoration: underline;
    font-family: 'Open Sans', sans-serif;

}

.content-container p{
	font-size: 17px;
	line-height:30px;
    font-weight: 300;
    text-align: left;
    color: #1A1A1A;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
	margin: 5px 0px;
}

.content-container li{
	font-size: 16px;
	line-height: 25px;
    font-weight: 400;
    text-align: left;
    color: #000;
    text-decoration: none;
    font-family: "Quicksand", sans-serif;
	margin: 5px 0px 5px 25px;
}
.content-container li a{
    font-weight: 600;
    color: #fc846f;
    text-decoration: none;
}
.content-container li a:hover{
	text-decoration: underline;
}

.content-container p a{
    font-weight: 400;
    color: #fc846f;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
     margin: 5px 0px;
}
.content-container p a:hover{
	text-decoration: underline;
}


.SPACE_15{
	display: block;
	height:15px;
}

.SPACE_35{
	display: block;
	height:35px;
}

.force-center{
	text-align: center!important;
}
.force-left{
	text-align: left!important;
}

.force-no-top-margin{
	margin-top: -10px!important;
}

.force-bold{
	font-weight: 600!important;
}

.full-content{
    width: 100%;
    box-sizing: border-box;
    margin:10px 20px;
}

.full-content-1000-max{
    max-width: 1000px;
    box-sizing: border-box;
    margin:10px auto;
}



.left-content,
.right-content,
.left-image,
.right-image {
    width: 50%;
    box-sizing: border-box;
}

.left-content,
.right-image {
    padding: 20px;
    text-align: center;
}

.right-content,
.left-image {
    padding: 20px;
    text-align: center;
}


/* CSS for square images */
.left-image img,
.right-image img {
    max-width: 100%; /* Ensure image doesn't exceed container width */
    height: auto; /* Maintain aspect ratio */
    max-height: 100%; /* Ensure image doesn't exceed container height */
    width: auto; /* Prevent image from stretching */
}

.image_force_25{
 width: 25% !important;
}


@media (max-width: 768px) {
	.image_force_25{
 width: 100% !important;
}

    .left-content,
    .right-content,
    .left-image,
    .right-image {
        width: 100%;
    }
    .full-content-1000-max{
	    width:100%;
    }
}


.back-to-top {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #000;
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
}

.back-to-top:hover {
    background-color: #555;
}





/* Button Styles */
.btn-orange {
    display: inline-block;
    background-color: #fc846f; /* Orange color */
    color: white; /* Text color */
    padding: 10px 20px; /* Padding */
    border: none; /* Remove border */
    border-radius: 4px; /* Rounded corners */
    font-family: 'Open Sans', sans-serif; /* Font */
    font-size: 16px; /* Font size */
    cursor: pointer; /* Pointer cursor on hover */
    text-decoration: none; /* Remove underline */
    transition: background-color 0.3s ease; /* Smooth transition */
}

.btn-orange:hover {
    background-color: #e6735b; /* Darker shade of orange on hover */
}



.ytcontainerBIGBOX {
    max-width: 80%;
    margin: 0 auto;
}

.ytcontainer {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.ytcontainer iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.centerText{
	text-align: center;
}

/* One column section */
.admin_section_one-column {
    width: 100%; /* Full width */
    padding: 20px;
    box-sizing: border-box;
    margin-bottom: 20px; /* Space between sections */
    background-color: #f9f9f9; /* Light background color */
    border: 1px solid #e0e0e0; /* Border for visual separation */
}

/* Two column section */
.admin_section_two-column {
    width: 100%; /* Full width */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 20px; /* Add gap for spacing between columns */
}

.admin_section_two-column .admin_section_column {
    flex: 1; /* Allow columns to take up equal space */
    min-width: 45%; /* Ensures columns stay responsive without squeezing */
    max-width: 48%; /* Prevents columns from stretching too wide */
    padding: 20px;
    box-sizing: border-box;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    position: relative; /* To position the link inside the column */
}

/* Admin section title */
.admin_section_title {
    font-size: 24px;
    font-weight: 600;
    color: #fc846f;
    margin-bottom: 10px;
    text-align: left;
    font-family: "Quicksand", sans-serif;
}

/* Admin section row styling */
.admin_section_row {
    display: flex; /* Aligns items horizontally */
    justify-content: space-between; /* Spreads items evenly */
    padding: 10px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    color: #333;
}

/* Column for email, form, and datetime */
.admin_section_email, 
.admin_section_form, 
.admin_section_datetime {
    flex-grow: 1; /* Ensure each takes up equal space */
    padding: 10px;
    box-sizing: border-box;
    min-width: 33%;
    
}




.admin_section_email p, 
.admin_section_form p, 
.admin_section_datetime p {
    margin: 0;

}

.admin_section_form  p {
    margin: 0;
    text-align: center;
}
.admin_section_datetime p {
    margin: 0;
    text-align: right;
}

/* Responsive layout for smaller screens */
@media (max-width: 768px) {
    /* Stack the two-column layout */
    .admin_section_two-column {
        flex-direction: column; /* Stacks columns on small screens */
    }

    .admin_section_two-column .admin_section_column {
        width: 100%; /* Stacks columns to take full width on small screens */
        margin-bottom: 20px; /* Add space between stacked columns */
        max-width: 100%; /* Ensure 100% width */
    }

    /* Stack the rows for smaller screens */
    .admin_section_row {
        flex-direction: column; /* Stack items vertically in each row */
    }
}

/* "See All" link style */
.admin_section_see-all {
    position: absolute;
    bottom: 20px; /* Position the link at the bottom */
    right: 20px; /* Position the link to the right */
    padding: 10px 20px;
    background-color: #fc846f; /* Link background */
    color: white;
    text-decoration: none; /* Remove underline */
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    font-family: "Quicksand", sans-serif;
}

.admin_section_see-all:hover {
    background-color: #e8454b;
}

/* Product Section */
.product-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 10px 20px;
    padding: 0 20px;
}

.product-main h1{
    font-size: 26px;
    font-weight: 400;
    color: #fc846f;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    margin: 0px 0px;
}

.product-item {
    width: calc(50% - 10px);
    box-sizing: border-box;
    background-color: #f9f9f9;
    padding: 20px;
    margin: 10px 0;
    text-align: center;
    border-radius: 8px;
    position: relative;
    transition: transform 0.3s;
}

.product-item:hover {

}

.product-item img {
    width: 100%; 
    height: auto; 
    max-width: 300px;
    max-height: 300px; 
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

.product-item h3 {
    font-size: 20px;
    color: #333;
    margin: 10px 0;
    font-family: "Quicksand", sans-serif;
}

.product-item p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    font-family: "Open Sans", sans-serif;
}

.product-item .btn-orange {
    display: inline-block;
    padding: 10px 15px;
    background-color: #fc846f;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.product-item .btn-orange:hover {
    background-color: #e6735b;
}


.price-tag {
    position: absolute;
    top: 25px;
    right: 0px;
    background-color: #ccc;
    color: white;
    padding: 5px 10px;
    font-weight: bold;

    z-index: 10;
    transition: transform 0.3s ease;
}

.product-item:hover .price-tag {
    transform: scale(1.1);
}


@media (max-width: 768px) {
    .product-item {
        width: calc(100% - 20px);
    }
}


