@font-face {
	font-family:"Cabinet Grotesk Medium";
	font-style:normal;
	font-weight:500;
	src: url("../fonts/CabinetGrotesk-Medium.woff2") format("woff2"),
	     url("../fonts/CabinetGrotesk-Medium.woff") format("woff");
}
@font-face {
	font-family:"Cabinet Grotesk";
	font-style:normal;
	font-weight:normal;
	src: url("../fonts/CabinetGrotesk-Regular.woff2") format("woff2"),
	     url("../fonts/CabinetGrotesk-Regular.woff") format("woff");
}
@font-face {
	font-family:"Nineties Display";
	font-style:normal;
	font-weight:normal;
	src: url("../fonts/NinetiesDisplay-Regular\ PT\ 1.otf");
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Cabinet Grotesk", sans-serif;
	background-color: white;
	min-height: 100vh;
	position: relative;
	overflow-x: hidden;
}

.background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: -1;
}

.background img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}


.container {
	max-width: 900px;
	margin: 0 auto;
	padding: clamp(24px, 6vw, 48px);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

header {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: clamp(16px, 4vw, 40px);
	padding: clamp(12px, 2.5vw, 32px) clamp(32px, 8vw, 112px) 0;
}

.instagram {
	display: inline-block;
	font-family: "Nineties Display", sans-serif;
	font-size: 18px;
	letter-spacing: 2px;
	text-decoration: none;
	color: #000;
	text-transform: uppercase;
}

.instagram-icon {
	vertical-align: middle;
}

.menu-btn {
	font-family: "Cabinet Grotesk Medium", sans-serif;
	font-size: 20.8px;
	font-weight: 500;
	letter-spacing: 3px;
	color: #000;
	text-decoration: none;
	background: linear-gradient(180deg, #e4eaf6 0%, #c3cee5 100%);
	border: 1.5px solid #1f1f21;
	border-radius: 999px;
	padding: 11px 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 126px;
	height: 44px;
}

main {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 60px;
	padding: 40px 0 60px;
}

.logo {
	width: 100%;
	max-width: 242px;
	margin: 40px auto 40px;
}

.logo img {
	width: 100%;
	height: auto;
}

.hero-text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
}

.food-images {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
	width: 100%;
	max-width: 100%;
	margin: 0;
}

.food-images img {
	width: 90%;
	height: auto;
}

.tagline {
	width: 100%;
	max-width: 100%;
	margin: 0;
}

.tagline img {
	width: 100%;
	height: auto;
}

footer {
	padding: 40px clamp(32px, 8vw, 112px) 20px clamp(32px, 8vw, 112px);
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}

.construction {
	margin-left: auto;
}

.phone {
	font-family: "Cabinet Grotesk Medium", sans-serif;
	font-size: 20.8px;
	font-weight: 500;
	letter-spacing: 3px;
	color: #000;
	text-decoration: none;
	border: 1.5px solid #000;
	border-radius: 50px;
	padding: 8px 24px;
	display: inline-block;
}

.address {
	font-family: "Cabinet Grotesk", sans-serif;
	font-size: 23.5px;
	color: #000;
	text-decoration: none;
	text-align: center;
	line-height: 1.4;
}

.construction {
	font-family: "Cabinet Grotesk Medium", sans-serif;
	font-size: 12px;
	font-weight: 500;
	color: #000;
}

@media (max-width: 768px) {
	.container {
		padding: clamp(20px, 7vw, 32px);
	}

	header {
		padding: clamp(12px, 4vw, 20px) clamp(20px, 8vw, 64px) 0;
		gap: 18px;
	}

	footer {
		padding: 40px clamp(20px, 8vw, 64px) 20px clamp(20px, 8vw, 64px);
	}



	.menu-btn {
		font-size: 18px;
		letter-spacing: 2px;
		padding: 10px 26px;
		min-width: 118px;
		height: 40px;
	}

	main {
		gap: 44px;
		padding-bottom: 60px;
	}

	.logo {
		max-width: 200px;
	}

	.hero-text {
		gap: 20px;
	}

	.food-images {
		max-width: 100%;
		gap: 0;
		margin: 0;
	}

	.tagline {
		max-width: 100%;
		margin: 0;
	}

	.phone {
		font-size: 18px;
		letter-spacing: 2px;
		padding: 7px 22px;
	}

	.address {
		font-size: 20px;
	}

	.construction {
		font-size: 11px;
	}
}

@media (max-width: 480px) {
	header {
		gap: 14px;
		padding: 12px 0 0;
	}
	


	.menu-btn {
		font-size: 16px;
		padding: 8px 22px;
		min-width: 110px;
		height: 36px;
	}
	
	.logo {
		max-width: 150px;
	}
	
	main {
		gap: 36px;
		padding-bottom: 60px;
	}

	.hero-text {
		gap: 16px;
	}

	.food-images {
		max-width: 100%;
		gap: 0;
		margin: 0;
	}

	.tagline {
		max-width: 100%;
		margin: 0;
	}
	
	.phone {
		font-size: 14px;
		padding: 5px 15px;
	}

	.address {
		font-size: 16px;
	}

	footer {
		flex-direction: column;
		gap: 20px;
	}

	.construction {
		margin-left: 0;
	}
}
