:root {
	--bg-color: #fcf7f2;
	--card-bg: #ffffff;
	--accent-brown: #ae632e;
	--accent-light: #ffe0e0;
	--heading-color: #2d2d2d;
	--text-muted: #757575;
	--input-border: #e9e0d8;
}

/* GLOBAL */
body {
	background-color: var(--bg-color);
	font-family: "Poppins", sans-serif;
	margin: 0;
	padding: 0;
	color: var(--heading-color);
}

.container {
	max-width: 1450px;
}

/* ================= CONTACT SECTION ================= */

.contact-section {
	padding: 40px 0 20px 0;
}

.sub-heading {
	color: var(--accent-brown);
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 15px;
}

.main-heading {
	font-family: "Playfair Display", serif;
	font-weight: 700;
	color: var(--heading-color);
	font-size: 2.8rem;
	margin-bottom: 10px;
}

.description {
	color: var(--text-muted);
	font-size: 1.1rem;
	margin-bottom: 20px;
}

@media (max-width: 768px) {
	.description {
		font-size: 1rem;
		margin-bottom: 30px;
	}
}

/* CONTACT CARD */

.contact-card {
	background: #ffeeee;
	border: none;
	border-radius: 40px;
	padding: 45px 30px;
	height: 100%;
	transition: all 0.3s ease;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.icon-box {
	background-color: var(--accent-light);
	width: 85px;
	height: 85px;
	border-radius: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
	font-size: 35px;
}

.card-title {
	font-size: 1.75rem;
	font-weight: 500;
	color: #000;
	margin: 0 0 5px 0;
	text-shadow: none;
}

.card-text {
	color: var(--text-muted);
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 25px;
	max-width: 250px;
}

.email-link {
	color: var(--accent-brown);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
}

.email-link:hover {
	text-decoration: underline;
}

/* ================= MAP SECTION ================= */

.cafe-card,
.hours-card {
	background-color: #fff;
	border-radius: 15px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.icon-box1 {
	background: #1e82af21;
	color: #1d89c3;
	padding: 13px;
	border-radius: 50%;
	height: 50px;
	width: 50px;
	font-size: 20px;
}

/* ================= HERO SECTION ================= */

.hero-section {
	background:
		linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
		url("../images/cake-image.jpg") no-repeat center center;
	background-size: cover;
	height: 35vh;
	min-height: 350px;
}

@media (max-width: 768px) {
	.hero-section {
		height: 25vh;
		min-height: 250px;
	}
}

.hero-section h1 {
	letter-spacing: 1px;
}

.Explore-Our-Menu-btn {
	background: white;
	font-size: 0.9rem;
	color: #333;
	transition: all 0.3s ease;
}

.Explore-Our-Menu-btn:hover {
	background: white;
	color: #333;
}

/* ================= ORDER FORM ================= */

.serif-text {
	font-family: "Playfair Display", serif;
}

.text-brown {
	color: var(--accent-brown);
	letter-spacing: 2px;
	font-size: 0.85rem;
}

.order-card {
	background-color: white;
	border-radius: 20px;
	border: none;
	/* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05); */
}

/* INPUT */

.custom-input {
	background: transparent;
	border: 1px solid var(--input-border);
	border-radius: 12px;
	padding: 12px 15px;
}

.custom-input::placeholder {
	color: #ccc0b5;
	font-size: 0.95rem;
}

.custom-input:focus {
	border-color: var(--accent-brown);
	box-shadow: none;
	background: #fff;
}

/* BUTTON */

.btn-order {
	background: var(--accent-brown);
	color: white;
	border-radius: 50px;
	padding: 12px 30px;
	font-weight: 500;
	border: none;
	transition: all 0.2s ease;
}

.btn-order:hover {
	background: #945224;
	transform: translateY(-2px);
}

.send-icon {
	font-size: 0.8rem;
	margin-left: 8px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
	.main-heading {
		font-size: 2.2rem;
	}

	.contact-card {
		margin-bottom: 20px;
	}
}

p {
	line-height: 26px;
	margin-bottom: 24px;
}

@media (max-width: 768px) {
	p {
		line-height: 22px;
		margin-bottom: 15px;
	}
}

h2 {
	font-size: 30px;
	line-height: 40px;
	margin-bottom: 15px;
	font-weight: 500;
}

@media (max-width: 768px) {
	h2 {
		font-size: 24px;
		line-height: 32px;
		margin-bottom: 20px;
	}
}

.display-4 {
	font-size: 3.5rem;
	font-weight: 300;
	line-height: 1.2;
}

@media (max-width: 768px) {
	.display-4 {
		font-size: 2rem;
		font-weight: 400;
	}
}
