:root {
	--display-font-family: Lora;
	--body-font-family: Open Sans;

	--font-size: 16px

	--logo-padding: 20px;
	--logo-height: 78px;

	--header-width: 1366px;
	--header-border-position: top;
	--header-border-size: 1px;
	--header-bg-color: 241 239 237;
	--header-border-color: 241 239 237;

	--brand-color: 114 129 117;
	--brand-color-inverted: 241 239 237;

	--background-color: 255 15 ;
	--text-color: 61 61 61;
	--link-color: 238 82 42;

	--action-color: 238 82 42;
	--action-color-inverted: 241 239 237;

	--announcement-bar-bg-color: 245 220 220;
	--announcement-bar-text-color: 201 0 0;
	--announcement-bar-link-color: 61 61 61;

	--main-navigation-bg-color: 241 239 237;
	--main-navigation-link-color: 28 26 27;
	--main-navigation-link-color-hover: 28 26 27;
	--main-navigation-link-bg-color: 44 81 112;
	--main-navigation-link-font-size: 16px;
	--main-navigation-link-alignment: center;

	--auxiliary-bg-color: transparent;
	--auxiliary-border-color: transparent;
	--auxiliary-link-color: 61 61 61;

	--order-status-bg-color: 241 239 237;
	--order-status-color: 114 129 117;

	--store-menu-bg_color: 248 248 248;
	--store-menu-color: 119 7 ;

	--footer-bg-color: 114 129 117;
	--footer-color: 241 239 237;
	--footer-link-color: 241 239 237;
}

/*Custom Styles*/
/* Set the entire website's background color */
body {
  background-color: #f1efed; /* Light beige background */
  margin: 0; /* Remove default margin */
  padding: 0; /* Remove default padding */
  /*font-family: 'Open Sans', sans-serif; /* Ensure consistent font style */
}
/* Change the background color of the blog listing container */
.tw-bg-white {
    background-color: #f1efed !important; /* Change the background to the desired color */
}

/* Adjust spacing for better alignment */
.blog__grid {
    gap: 30px; /* Adjust gap between blog cards if needed */
}

/* Optional: Style individual blog post cards */
.blog__gridPost {
    background-color: #ffffff; /* Optional: Keep individual posts white for contrast */
    border-radius: 10px; /* Optional: Add rounded corners to the cards */
    padding: 10px; /* Optional: Add padding inside each card */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add subtle shadow for depth */
}

/* Change the background color of each blog post listing */
.blog__gridPost {
    background-color: #f8f6f4; /* Slightly lighter shade than #f1efed */
    border-radius: 10px; /* Optional: Add rounded corners */
    padding: 20px; /* Optional: Add some padding inside each post */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow for better visibility */
    transition: background-color 0.3s ease; /* Optional: Smooth transition for hover effect */
}

/* Add a hover effect for better interactivity */
.blog__gridPost:hover {
    background-color: #f1efed; /* Return to original site background color on hover */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); /* Enhance shadow on hover */
}

@media only screen and (max-width: 768px) {
    .logo--style2 {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .logo__container--style2 {
        text-align: center;
        margin: 0 auto;
    }

    .logo__img--style2 {
        display: block;
        margin: 0 auto;
    }
}

.footerAccreditation {
    background-color: #f1efed;
}

.footerAccreditation .accreditation {
    color: #728175 !important;
}

.footerAccreditation .accreditation a {
    color: #728175 !important;
    text-decoration: none; /* Optional: Remove underline for the link */
}
