@import url(fontawesome-all.min.css);
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,600,700,300i,600i,700i|Raleway:600,800|Dancing+Script:400,700");

/* General Styles */
body {
	background-color: #fefaf6;
	color: #4a4a4a;
	font-family: 'Source Sans Pro', sans-serif;
	line-height: 1.6;
	margin: 0;
	padding: 0;
}

h1, h2, h3 {
	font-family: 'Dancing Script', cursive;
	color: #d87d4a;
}

a {
	color: #d87d4a;
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: #a65a2e;
}

/* Header */
header {
	background-color: #F3DECB;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header h1 {
	margin: 0;
	font-size: 1.5rem;
}

header p {
	font-size: 0.9rem;
	color: #6b6b6b;
}

/* Main Section */
.main-section {
	padding: 28px;
	text-align: center;
	background-color: #fefaf6;
}

.main-section h2 {
	font-size: 2rem;
	margin: 0;
}

.main-section p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
}

.main-section .cta-button {
	background-color: #d87d4a;
	color: #fff;
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 5px;
	font-size: 1rem;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.main-section .cta-button:hover {
	background-color: #a65a2e;
}

/* Product Gallery */
.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	padding: 2rem;
}

.gallery-item {
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	padding: 1rem;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
	width: 100%;
	border-radius: 10px;
	margin-bottom: 1rem;
}

.gallery-item h3 {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
}

.gallery-item p {
	font-size: 0.9rem;
	color: #6b6b6b;
}

/* About Section */
.about-section {
	padding: 2rem;
	background-color: #f8e8d8;
	text-align: center;
}

.about-section h2 {
	margin-bottom: 1rem;
}

.about-section p {
	font-size: 1rem;
	color: #4a4a4a;
}

/* Footer */
footer {
	background-color: #4a4a4a;
	color: #fff;
	padding: 1rem 2rem;
	text-align: center;
}

p {
	margin: 0;
}

footer a {
	color: #d87d4a;
}

footer a:hover {
	color: #a65a2e;
}

/* WhatsApp Button */
.whatsapp-button {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	background-color: #075e54;
	color: #fff;
	padding: 0.75rem 1rem;
	border-radius: 50px;
	font-size: 1rem;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
	transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
	background-color: #25d366;
}