/* General Styles */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
		color: #5a3d31;
		overflow: auto;
}

.no-scrollbar {
	scrollbar-width: none; /* For Firefox */
	-ms-overflow-style: none; /* For Internet Explorer and Edge */
}

::-webkit-scrollbar {
	display: none;
}

h2 {
	text-align: center;
	margin-top: 50px;
}

.hidden {
	display: none;
}

/* Header */
.hero-header {
    position: absolute;
    top: 0;
		left: 0;
    padding: 10px;
    z-index: 10;
		display: flex;
		align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    background-color: rgba(243, 231, 218, 0.8);
    border-radius: 25px;
    padding: 10px 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.tagline {
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
    color: #5a3d31;
    white-space: nowrap;
}

/* Hero Section */
#Section_Hero {
	height: 66vh;
	background: url('images/hero.jpg') no-repeat center center;
	background-size: cover;
}

/* Order Button Section*/
#Section_OrderButton {
	height: 33vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #f3e7da;
	box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.5);
}

button {
	display: inline-block;
	background-color: #5a3d31;
	color: #fff;
	font-family: 'Quicksand', sans-serif;
	border: none;
	border-radius: 25px;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease;
}

.primary-button {
	font-size: 1.5rem;
	padding: 15px 30px;
}

.secondary-button {
	padding: 5px 10px;
}

button:hover {
	background-color: #704b38;
	transform: scale(1.05);
}

button:active {
	transform: scale(0.95);
}

/* Order Section*/
#Section_Order {
	margin: 0 auto;
	padding: 20px;
	font-family: 'Quicksand', sans-serif;
	background-color: #f3e7da;
	color: #5a3d31;
	border-radius: 10px;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

#Section_Order section {
		width: 80%;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #704b38;
}

label {
    display: block;
    margin-bottom: 5px;
}

input, select {
    width: 90%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Shop */
#shop {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.item-box {
    width: 200px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
    background-color: #f9f9f9;
}

.item-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.item-price {
    display: block;
    font-weight: bold;
    margin-top: 5px;
}

.add-item-button {
    display: block;
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.add-item-button:hover {
    background-color: #218838;
}

#cart {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

#cart article {
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	background-color: #f3e7da;
	padding: 15px;
	margin: 15px;
	transition: 0.5s;
	width: 280px;
	height: 140px;
}

#cart article:hover {
	box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	transition: 0.5s;
}

/* Contact Us Form */
#Section_Contact {
	padding: 50px 20px;
	background-color: #5a3d31;
	color: #f3e7da;
}

#contactForm {
	max-width: 600px;
	margin: 0 auto;
	padding-bottom: 10vh;
}

#contactForm label {
	display: block;
	margin-top: 15px;
}

#contactForm input,
#contactForm textarea {
	width: 100%;
	padding: 10px;
	margin-top: 5px;
	border: 2px solid #C0C2C9;
	border-radius: 5px;
	background-color: #f3e7da;
}

#contactForm button {
	margin-top: 20px;
	padding: 10px 15px;
	background-color: #333;
	color: #f3e7da;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

#contactForm button:hover {
    background-color: #C0C2C9;
}

/* Testimonial Banner */
.testimonial-banner {
	position: fixed;
	bottom: 0;
	width: 100%;
	background-color: #f3e7da;
	color: #5a3d31;
	text-align: center;
	font-family: 'Quicksand', sans-serif;
	font-size: 1rem;
	padding: 10px;
	box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
	opacity: 0.8;
	overflow: hidden;
}

#testimonialText {
	opacity: 0;
	transition: opacity 1s ease-in-out;
}