	/*
		Cass’s sassy Sourdough Micro Bakery main web page
		Filename: styles.css
      
		Author:   Cayden Hendrix
		Date:     9/25/25
		Rough Draft
	*/
	/* reset styles */
html {
   font-size: 12px;
   overflow-x: hidden;
}
a, article, body, div, footer, header, h1, h2, h3, nav, p, img, ul {
   border: 0;
   padding: 0;
   margin: 0;
}
img {
	max-width: 100%;
	height: auto;
	width: auto;
}
article {
	text-align: left;
}
#tagline {
				
}
.contact {
	text-align: right;
}
/* CSS Variables for Color Palette */
:root {
    --tan-light: #f5f5f4;    /* Creamy Background */
    --charcoal: #292524;     /* Dark Text/Main */
    --accent-gold: #d97706;  /* Amber/Gold Accent */
    --stone-700: #44403c;    /* Secondary Text */
    --white: #ffffff;
    --shadow-color: rgba(0, 0, 0, 0.1);
}
/* Start generic Styling */
.poiret-one-regular {
  font-family: "Poiret One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
	font-size: 16px;
	clear: both;
	line-height: 1.5;
	font-family: "Poiret One";
	background-color: #f5f5f4;
	overflow-x: hidden;
}
p {
	padding-top: 1em;
	padding-bottom: 1em;
}

/* Start Header Styling */
header {
	position: sticky;
	justify-content: space-between;
	text-align: center;
	background-color: #f8ebd8;
	display: flex;
	align-items: center;
	position: fixed;
	z-index: 2;
	width: 100%;
	font-family: "Poiret One", Sans;
	border-bottom-left-radius: 3rem;
	border-bottom-right-radius: 3rem;
	box-shadow: 0 10px 15px -3px var(--shadow-color), 0 4px 6px -4px var(--shadow-color);
}
.header-left-group,
.header-right-group,
.header-mid-group {
	display: flex;
	align-items: center;
}
.header-right-group {
	gap: 30px;
}

.logoheader {
	max-width: 100%;
	width: 77.41px;
	height: 85.33px;
	margin-right: .5em;
	margin-left: 3em;
	margin-top: 1em;
	margin-bottom: 1em;
}
header .facebookheader {
	width: 28px;
	height: 28px;
	margin-right: 3em;
}
.logomix {
	margin-top: 30px;
	
}

/* Start Mobile Header Styling */
.mobile-header, .mobile-header-left-group, .mobile-logoheader,
.mobile-header-right-group, .mobile-facebookheader {
	display: none;
}

/* Start Mobile Nav Styling */
.off-screen-menu {
	background-color: #f8ebd8;
	height: 50px;
	width: 450px;
	max-width: 90%;
	margin-top: 30px;
	position: fixed;
	top: 0;
	right: -450px;
	flex-direction: inline-block;
	justify-content: left;
	align-items: center;
	text-align: center;
	font-size: 20px;
	font-weight: 600;
	border-radius: 2rem;
	transition: .3s ease;
	display: none;
	z-index: 999;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);, 0 4px 6px -4px rgba(0, 0, 0, 0.2);
}
.off-screen-menu li {
	list-style-type: none;
	font-family: "Outfit", sans;
	margin-left: 1rem;
	border-right: solid #dfd4c2 2px;
	padding-right: 1rem;
}
.off-screen-menu.active {
	right: 10px;
}
.ham-menu {
	background-color: var(--accent-gold);
	border-radius: 25px;
	height: 50px;
	width: 50px;
	margin-left: auto;
	margin-top: 30px;
	right: 10px;
	position: fixed;
	display: none;
	z-index: 9999;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -4px rgba(0, 0, 0, 0.2);
}
.ham-menu span {
	height: 5px;
	width: 70%;
	background-color: #f8ebd8;
	border-radius: 25px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: 0.3s ease;
}
.ham-menu span:nth-child(1) {
	top: 25%;
}
.ham-menu span:nth-child(3) {
	top: 75%;
}
.ham-menu.active span:nth-child(1) {
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}
.ham-menu.active span:nth-child(2) {
	opacity: 0;
}
.ham-menu.active span:nth-child(3) {
	top: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}
.off-screen-menu a:link {
	color: var(--accent-gold);
}
.off-screen-menu a:visited {
	color: var(--accent-gold);
}
.off-screen-menu h2 a:active {
	border-bottom: 1px solid #132D7A;
}
.off-screen-menu a {
	text-decoration: none;
	color: #132D7A;
}
/* Start Desktop Nav */
nav {
	clear: both;
	display: block;
	float: right;
	height: auto;
	width: auto;
	font-size: 10px;
	text-align: center;
}
nav.sitenavigation {
	line-height: .1;
	font-family: "Outfit", sans-serif;
	display: flex;
	justify-content: center;
	gap: 30px;
}
nav.sitenavigation h2 {
	padding-left: .1em;
	margin: 0;
	padding:0;
	display: inline-block;
	margin-top: 14px;
	font-size: 17px;
}
nav.sitenavigation a:link {
	color: black;
}
nav.sitenavigation a:visited {
	color: black;
}
nav.sitenavigation h2 a:active {
	border-bottom: 1px solid #132D7A;
}
nav.sitenavigation a:hover {
	color: #e9ddc3;
	transition: 0.3s ease;
}
nav.sitenavigation a {
	text-decoration: none;
	color: #132D7A;
}
.active {
	color: #dc9c53;
}
/* Start Hero Styling*/
.hero {
	font-family: 'Playfair Display', serif;
    padding-top: 4rem;
    padding-bottom: 6rem;
	max-width: 1400px;
	width: 90%;       /* Ensures it shrinks on smaller screens */
    margin-left: auto;
    margin-right: auto;
        }
.hero-content {
    display: flex;
	flex-direction: row;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    text-align: center;
	width: 50%;
}
.hero-title {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #292524;
}
.hero-title span {
    display: block;
    color: #b45309;
}
.hero-text p {
    margin-top: 1rem;
    font-size: 1.25rem;
    color: var(--stone-700);
	font-family: "Outfit", sans;
	font-weight: 600;
}

.hero-image-wrapper {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    border-radius: 1.5rem;
    overflow: hidden;
    justify-content: center;
	width: 40%;
	height: 40%;
	margin: 0, auto;
	
}
.hero-image {
    display: block;
}
.cta-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 2rem;
    font-size: 1.75rem;
    font-weight: 600;
    background-color: var(--accent-gold);
    color: var(--white);
    border-radius: 0.75rem;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.cta-button:hover {
    background-color: #b45309; /* Darker amber */
    transform: scale(1.02);
}

/* Start Article Styling */
.placeholder {
	padding-top: 130px;
}
div {
	text-align: center;
}
/* --- Favorites Section --- */
.header-font-menu {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: auto;
	margin-right: auto;
	gap: 1rem;
	
}
.header-font-menu span  {
    color: #b45309;
	font-size: 3.5rem;
	font-weight: 900;
	line-height: 1;
	margin-bottom: .5rem;
}
.header-font-menu p {
	text-align: center;
}
.menu-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #f5f5f4; /* stone-50, slightly darker tan */
	padding-left: 1rem;
    padding-right: 1rem;
}
.menu-header {
    text-align: center;
    margin-bottom: 3rem;
	
}
.menu-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #292524;
	font-family: 'Playfair Display', serif;
	line-height: 1;
}
.menu-header p {
    margin-top: 0.5rem;
    font-size: 1.125rem;
    color: #44403c;
	font-family: "Outfit", sans-serif;
	font-size: 15px;
}

.menu-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 1fr 1fr; /* Default: single column on mobile */
}

.menu-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px var(--shadow-color);
    border: 1px solid #e7e5e4;
    transition: box-shadow 0.3s ease;
	background-color: white;
	text-align: left;
	font-family: "Outfit", sans-serif;
}
.menu-item:hover {
    box-shadow: 0 10px 15px -3px var(--shadow-color), 0 4px 6px -4px var(--shadow-color);
}
.menu-item img {
    width: 100%;
    height: 30rem;
    object-fit: cover;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}
.menu-item h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
	font-family: 'Playfair Display', serif;
}
.menu-item .price {
    display: block;
    margin-top: 1rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--charcoal);
}
/* Start The Reviews Section */
.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
	margin-top: 3rem;
	
}
.reviews-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #292524;
	font-family: 'Playfair Display', serif;
	line-height: 1;
}
.reviews-header p {
    margin-top: 0.5rem;
    font-size: 1.125rem;
    color: #44403c;
	font-family: "Outfit", sans-serif;
	font-size: 15px;
}
/* Start "my weekly offerings */
.contact-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #f5f5f4; /* stone-50, slightly darker tan */
	padding-left: 1rem;
    padding-right: 1rem;
}
.contact-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 1fr 1fr; /* Default: single column on mobile */
}

.contact-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px var(--shadow-color);
    border: 1px solid #e7e5e4;
    transition: box-shadow 0.3s ease;
	background-color: white;
	text-align: left;
	font-family: "Outfit", sans-serif;
}
.contact-item:hover {
    box-shadow: 0 10px 15px -3px var(--shadow-color), 0 4px 6px -4px var(--shadow-color);
}
.contact-item h3 {
    font-size: 2rem;
	display: flex;
	align-items: center;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
	font-family: 'Playfair Display', serif;
}
.contact-item .contact-subtext {
    display: block;
    margin-top: 1rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--charcoal);
}
.contact-cta-button {
    display: inline-block;
    margin-top: 1px;
    padding: .5rem 1rem;
    font-size: 1.75rem;
    font-weight: 600;
    background-color: var(--accent-gold);
    color: var(--white);
    border-radius: 0.75rem;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-subtext .facebookheader img{
	display: flex;
	width: 28px;
	height: 28px;
	margin-right: auto;
	margin-left: auto;
}
.menu-footer-cta {
    margin-top: 3rem;
    text-align: center;
}
.menu-footer-cta a {
    padding: 0.75rem 2rem;
    font-size: 2rem;
    font-weight: 600;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    border-radius: 0.75rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.menu-footer-cta a:hover {
    background-color: #fcfcfc;
}
/* Start Menu.html styling */
.main-menu-header {
	margin-bottom: 0;
	font-family: 'Playfair Display', serif;
}
.main-menu-header p {
	font-family: "Outfit", sans-serif;
}
.header-font-main-menu {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: auto;
	margin-right: auto;
	gap: 1rem;
}
.header-font-main-menu span  {
    color: #b45309;
	font-size: 3.5rem;
	font-weight: 900;
	line-height: 1;
	margin-bottom: .5rem;
}
.header-font-main-menu p {
	text-align: center;
}
.menu-heading-subtext-1 {
	padding-bottom: 0;
}
.menu-heading-subtext-2 {
	padding-top: 1px;
}
.cta-button-menu {
	font-family: 'Playfair Display', serif;
    display: inline-block;
    margin-top: 1rem;
	margin-bottom: 5rem;
    padding: 0.75rem 2rem;
    font-size: 1.75rem;
    font-weight: 600;
    background-color: var(--accent-gold);
    color: var(--white);
    border-radius: 0.75rem;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
        }
.cta-button-menu:hover {
    background-color: #b45309; /* Darker amber */
    transform: scale(1.02);
}
/*-------------------------------------------------------------------------------------------------------------------------------------------------*/
.accordion-container {
	width: 50%;
	margin: auto;
	background-color: var(--white);
	border-radius: 1rem;
	box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
	
}
.accordion-toggle {
    display: none;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out; 
    padding-left: 2rem;
    padding-right: 2rem;
}
.accordion-toggle:checked ~ .accordion-content {
    max-height: 9000px; 
    padding-top: 1rem;
    padding-bottom: 3rem;
}
.accordion-header i {
    font-size: 2rem;
    color: var(--accent-gold);
    transition: transform 0.3s ease-in-out; 
}
.accordion-toggle:checked + .accordion-header i {
    transform: rotate(180deg);
}
.accordion-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 2rem;
	cursor: pointer;
	font-family: 'Playfair Display', serif;
	font-size: 3rem;
	font-weight: 700;
    color: var(--accent-gold); 
	text-align: left;
	transition: background-color 0.3s ease, transform 0.3s ease;
}
.accordion-item {
    border-bottom: 2px solid #e7e5e4;
    overflow: hidden;
}

.accordion-item:last-child {
    border-bottom: none; 
}
.accordion-header:hover {
    background-color: #f8f8f8;
}
.main-menu-grid {
    gap: 2rem;
    grid-template-columns: 1fr; /* Default: single column on mobile */
	border-bottom: 3px solid #e7e5e4;
	margin-bottom: 3rem;
	padding-bottom: 4rem;
}
.main-menu-item {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px var(--shadow-color);
    border: 1px solid #e7e5e4;
    transition: box-shadow 0.3s ease;
	background-color: white;
	text-align: left;
	font-family: "Outfit", sans-serif;
}
.main-menu-item:hover {
    box-shadow: 0 10px 15px -3px var(--shadow-color), 0 4px 6px -4px var(--shadow-color);
}
.menu-item-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin-bottom: 0.5rem;
}
.main-menu-item h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #b45309;
    margin: 0;
	padding: 0;
	font-weight: 700;
	font-family: 'Outfit', sans;
}

.main-menu-item p {
	text-align: left;
	margin: 0;
	padding: 0;
	line-height: 1.4;
	font-size: 1.15rem;
	color: var(--stone-700);
}
.main-menu-item .price {
	flex-shrink: 0;
	margin: 0;
	padding: 0;
	font-weight: 700;
	color: var(--charcoal);
	white-space: nowrap;
	font-family: 'Outfit', sans;
	font-size: 1.4rem;
}
.main-menu-item span {
	font-weight: bold;
}
.main-menu-item img {
	height: 50px;
	border-radius: 10rem;
}
.custom-orders {
	font-family: 'Outfit', Sans;
	margin: auto;
	padding-top: 4rem;
	margin-bottom: 3rem;
	width: 30%;
}
.divider-custom-order {
	border-top: 3px solid #e7e5e4;
	width: 40%;
	margin: auto;
}
.custom-orders h3 {
	color: #b45309;
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
}
.main-menu-footer {
	font-family: "Outfit", Sans;
	margin-top: 4rem;
	display: flex;
	flex-direction: column;
}
.menu-download {
	font-family: 'Outfit', Sans;
	font-size: 1.5rem;
	margin-top: 4rem;
	margin-bottom: 5rem;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 1rem;
	background-color: var(--white);
	border-radius: 1rem;
	box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
	width: 30%;
	
}
.menu-download a {
	display: inline-block;
    padding-left: 1rem;
	padding-right: 1rem;
	padding-top: .5rem;
	padding-bottom: .5rem;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: var(--accent-gold);
    color: var(--white);
    border-radius: 0.75rem;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.menu-button a:hover {
    background-color: #b45309; /* Darker amber */
    transform: scale(1.02);
}

/* ALLERGENS */
.allergen-information {
	max-width: 40%;
	display: flex;
	flex-direction: column;
	margin-left: auto;
	margin-right: auto;
	border-top: 3px solid #e7e5e4;
}
.allergen-header {
	margin-top: 4rem;
	color: #b45309;
	font-size: 3rem;
	font-family: 'Playfair Display', serif;
}
.may-contain, .operation-notice {
	font-weight: 400;
	font-family: "Outfit", sans-serif;
}

/* Start About.html */
.about-header {
	margin-bottom: 0;
	font-family: 'Playfair Display', serif;
}
.about-header p {
	font-family: "Outfit", sans-serif;
}
.header-font-about {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: auto;
	margin-right: auto;
	gap: 1rem;
}
.header-font-about span  {
    color: #b45309;
	font-size: 3.5rem;
	font-weight: 900;
	line-height: 1;
	margin-bottom: .5rem;
}
.header-font-about p {
	text-align: center;
}
.about-bio {
	font-family: "Outfit", sans-serif;
	margin-left: auto;
	margin-right: auto;
	font-size: 18px;
	text-align: left;
}
.about-bio i {
	color: #dc9c53;
	font-family: 'Lora', serif;
}
.about-menu {
	display: flex;
	justify-content: center;
	max-width: 70%;
	gap: 40px;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 5rem;
	border-bottom: 3px solid #e7e5e4;
}
.about-menu img {
    width: 100%;
    height: 35rem;
    object-fit: cover;
    border-radius: 0.75rem;
	margin-top: 2rem;
	box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
}
.secondary-about {
	display: flex;
	flex-direction: row;
	font-family: 'Outfit', Sans;
	margin-bottom: 4rem;
}
.story-block {
	width: 45%;
	margin: auto;
	margin-top: 4rem;
}
.story-block-2 {
	width: 90%;
	text-align: left;
}
.values-block {
	width: 45%;
	margin: auto;
	margin-top: 4rem;
}
.values-block h2 {
	margin-bottom: 16px;
}
.section-heading {
	text-align: left;
}
.about-subheader {
	text-align: left;
	color: #dc9c53;
}
.mission-text {
	text-align: left;
}
.values-list div {
	padding-top: 1rem;
	text-align: left;
}


/* Start gallery.html Styling */

.gallery-header {
	margin-bottom: 0;
	font-family: 'Playfair Display', serif;
}
.gallery-header p {
	font-family: "Outfit", sans-serif;
}
.header-font-gallery {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: auto;
	margin-right: auto;
	gap: 1rem;
}
.header-font-gallery span  {
    color: #b45309;
	font-size: 3.5rem;
	font-weight: 900;
	line-height: 1;
	margin-bottom: .5rem;
}
.header-font-gallery p {
	text-align: center;
}
/*  Start Order.html styling */
.order-section {
	margin-top: 4rem;
}
.order-header {
	margin-bottom: 0;
	font-family: 'Playfair Display', serif;
}
.order-header p {
	font-family: "Outfit", sans-serif;
}
.header-font-order {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: auto;
	margin-right: auto;
	gap: 1rem;
}
.header-font-order span  {
    color: #b45309;
	font-size: 3.5rem;
	font-weight: 900;
	line-height: 1;
	font-family: "Outfit", sans;
}
.header-font-order p {
	text-align: center;
}
.order-section-steps {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #f5f5f4; /* stone-50, slightly darker tan */
	padding-left: 1rem;
    padding-right: 1rem;
	width: 60%;
	margin: auto;
	
}
.order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* Default: single column on mobile */
	gap: 2rem;
}

.order-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px var(--shadow-color);
    border: 1px solid #e7e5e4;
    transition: box-shadow 0.3s ease;
	background-color: white;
	font-family: "Outfit", sans-serif;
}
.order-item:hover {
    box-shadow: 0 10px 15px -3px var(--shadow-color), 0 4px 6px -4px var(--shadow-color);
}
.order-item h3 {
    font-size: 4rem;
    font-weight: 600;
    color: var(--accent-gold);
	font-family: "Outfit", Sans;
}
.order-item h4 {
	font-size: 2rem;
	font-weight: 400;
	margin-bottom: 0.5rem;
	font-family: "Outfit", Sans;
}
.order-item .contact-subtext {
    display: block;
    margin-top: 1rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--charcoal);
}
.cta-order {
	display: flex;
	justify-content: center;
	gap: 10rem;
	margin-bottom: 4rem;
}
.order-cta-button {
	display: inline-block;
    padding: 0.75rem 2rem; /* Matches hero */
    font-size: 1.75rem; /* Matches hero */
    font-weight: 600;
    background-color: var(--accent-gold);
    color: var(--white);
    border-radius: 0.75rem;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
	font-family: 'Outfit', Sans;
}
.order-cta-button:hover {
	background-color: #b45309; /* Darker amber, matches hero */
    transform: scale(1.02); /* Matches hero */
}


/* Start Footer Styling */
footer {
	background-color: #f8ebd8;
	font-family: "Outfit", sans;
	color: black;
	padding: 15px;
	font-size: 15px;
	clear: both;
	line-height: 1;

}
footer .contact {
	text-align: center;
	line-height: .2;
	
}
footer .footername {
	font-size: 20px;
	text-align: center;
}
footer .food-handler-badge {
	margin-bottom: 1rem;
	text-align: center;
	line-height: .2;
    color: #1f2937;
	font-size: 1.1rem;

}

footer .credits {
	font-weight: bold;
	text-align: center;
}
footer .facebookfooter img {
	width: 28px;
	height: 28px;
	text-align: center;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*************************************************** Media Breaks *************************************/
				/* Mobile devices (1000px to 600px) */
					@media only screen and (max-width: 1000px) {
						img {
							max-width: 100%;
							height: auto;
							width: 100;
						}
						.menu-grid {
							 grid-template-columns: 1fr;
						}
						header, .placeholder {
							display: none;
						}
						body {
							overflow-x: hidden;
						}
						
					/* Mobile Header */
						.mobile-header {
							display: flex;
							position: sticky;
							z-index: 10;
							justify-content: space-between;
							text-align: center;
							align-items: center;
							max-width: 230px;
							font-family: "Poiret One";
							background-color: #f8ebd8;
							border-radius: 5rem;
							margin-top: 30px;
							margin-left: 1rem;
							padding-left: 5px;
							height: 50px;
							box-shadow: 0 10px 15px -3px var(--shadow-color), 0 4px 6px -4px var(--shadow-color);
							
							
						}
						.mobile-header-left-group {
							display: flex;
							align-items: center; 
							gap: .5rem;
						}
						.mobile-header-left-group h2 {
							font-family: "Outfit", Sans;
							font-weight: 400;
						}
						.mobile-logoheader {
							display: flex;
							
						}
						.mobile-logoheader img {
							border-radius: 5rem;
							height: 50px;
							
						}
						.mobile-logomix {
							font-size: 20px;
						}
						.mobile-header-right-group {
							display: flex;
							align-items: center;
						}
						.mobile-facebookheader {
							display: flex;
							width: 28px;
							height: 28px;
						}
					/* Mobile Nav */
						.off-screen-menu ,.ham-menu {
							display: flex;
						}
						.mobile-cta-button {
							display: inline-block;
							margin-top: .5rem;
							padding: 1rem;
							font-size: 1rem;
							font-weight: 400;
							background-color: var(--accent-gold);
							color: var(--white);
							border-radius: 0.75rem;
							text-decoration: none;
							box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
							transition: background-color 0.3s ease, transform 0.3s ease;
						}
						/*  index.html start */
						.hero {
							padding-bottom: .1rem;
							padding-top: 2rem;
							width: 100%;
						}
						.hero-title {
							font-size: 4rem;
							font-weight: 900;
							line-height: 1.1;
							letter-spacing: -0.025em;
							color: #292524;
						}
						.hero-title span {
							display: block;
							color: #b45309;
						}
						.hero-image-wrapper {
							order: 1;
							width: 70%;
							height: auto;
							margin: 0 auto;
						}
						.hero-content {
							flex-direction: column;
							gap: 2rem;
						}
						.hero-text {
							width: 100%;
							order: 2;
						}
						.hero-text h1: {
							width: 100%;
						}
						.hero-text p {
							width: 98%;
						}
						.menu-section {
							padding-top: 2rem;
						}
						.menu-header {
							padding-top: 3rem;
						}
						.menu-header p {
							padding-top: .1rem;
						}
						.accordion-container {
							width: 90%;
						}
						.accordion-header {
							font-size: 2rem;
						}
						.main-menu-grid {
							grid-template-columns: 1fr;
						}
						.main-menu-item {
							flex-direction: column;
							align-items: flex-start;
							text-align: left;
						}
						.menu-item-header {
							flex-wrap: wrap;
							flex-direction: column;
							width: 100%;
						}
						.main-menu-item h3 {
							text-align: center;
							margin: auto;
							font-size: 2rem;
						}
						.main-menu-item .price { 
							text-align: center;
							margin: auto;
							font-size: 1.2rem;
						}
						.menu-download {
							width: 90%;
						}
						.custom-orders {
							width: 90%;
						}
						.divider-custom-order {
							width: 90%;
						}
						
						.menu-item img {
							height: 20rem;
						}
						.contact-grid {
							grid-template-columns: 1fr
						}
						.reviews-header h2 {
							font-size: 1.7rem;
						}
						.reviews-header span {
							font-size: 2.8rem;
						}
						.contact-section h2 {
							font-size: 1.7rem;
						}
						.contact-section span {
							font-size: 2.8rem;
						}
						/* About.html Styling */
						.about-section {
							margin-top: 3rem;
						}
						.about-section h2 {
							font-size: 1.7rem;
						}
						.about-section span {
							font-size: 2.8rem;
						}
						.about-menu {
							flex-direction: column;
							max-width: 90%;
						}
						.secondary-about {
							flex-direction: column;
						}
						.story-block {
							width: 90%;
						}

						.values-block {
							width: 90%;
						}
						.values-list li {
							list-style-type: none;
							padding-top: 1rem;
							padding-bottom: 1rem;
						}
						
						/* REVIEWS*/
						.elfsight-app-d6675583-fe2f-4302-912f-58a7fd1b8e6a {
							max-width: 90%;
							margin: auto;
						}
						
						/* Allergen Information */
						.allergen-information {
							max-width: 80%;
						}
						/* Gallery.html */
						.gallery-section {
							margin-top: 3rem;
						}
						/* Order.html */
						.order-section {
							margin-top: 2rem;
						}
						.order-grid {
							grid-template-columns: 1fr;
						}
						.order-section-steps {
							width: 90%;
						}
						.order-section h2 {
							font-size: 1.7rem;
						}
						.order-section p {
							font-size: 1.3rem;
							width: 90%;
							display: inline-block;
						}
						.cta-order {
							flex-direction: column;
							gap: 1rem;
							align-items: center;
						}
						.order-cta-button {
							width: 80%;
							text-align: center;
							margin: 0.5rem 0;
						}
					}
					/* Mobile devices (600px & under) */
					@media only screen and (max-width: 400px) {
						.off-screen-menu {
							font-size: 15px;
						}
						.order-header h2 {
							font-size: 1.5rem;
						}
						.order-header span {
							font-size: 3rem;
						}
					
					}
					