/* ========================================
   AromaKitchen - Landing Page
   Based on Figma Design
======================================== */
@font-face {
    font-family: 'TT Fors';
    src: url('fonts/TT_Fors_Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Fors';
    src: url('fonts/TT_Fors_Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
	--color-primary: #58B7AA;
	--color-dark: #1D1D1B;
	--color-white: #ffffff;
	--font-family: 'TT Fors', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
}

body {
	font-family: var(--font-family);
	color: var(--color-white);
	line-height: 1.2;
	background: var(--color-dark);
}

a {
	text-decoration: none;
	color: inherit;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Page */
.page {
	min-height: 100vh;
	position: relative;
	overflow: hidden;
}

/* ========================================
   Header - Desktop 1440px
======================================== */
.header {
	position: fixed;
	top: 5px;
	left: 15px;
	right: 15px;
	z-index: 100;
	display: flex;
	align-items: center;
	height: 53px;
	padding: 0 10px;
	background: var(--color-white);
	backdrop-filter: blur(12px);
	border-radius: 10px;
}

.header__logo {
	flex-shrink: 0;
}

.header__logo img {
	width: 86px;
	height: 33px;
}

.header__tagline {
	font-size: 12px;
	font-weight: 500;
	line-height: 1.1;
	color: var(--color-dark);
	max-width: 158px;
	margin-left: 10px;
}

.header__contacts {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-left: auto;
	margin-right: 20px;
}

.header__phone,
.header__email {
	font-size: 16px;
	font-weight: 500;
	color: var(--color-dark);
	white-space: nowrap;
}

.header__cta {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--color-primary);
	color: var(--color-white);
	padding: 0 15px;
	height: 33px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
}

.header__cta-icon {
	width: 15px;
	height: 15px;
}

/* ========================================
   Hero Section
======================================== */
.hero {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 80px 25px 15px;
	position: relative;
}

/* Background */
.hero__bg {
	position: absolute;
	inset: 60px 15px 0 15px;
	border-radius: 10px;
	overflow: hidden;
}

.hero__bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(29, 29, 27, 0.7);
}

.hero__bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Content */
.hero__content {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 916px;
	margin: auto 0;
	padding-top: 100px;
}

.hero__title {
	font-size: 32px;
	font-weight: 400;
	line-height: 1.4;
	margin-bottom: 30px;
}

.hero__title-accent {
	font-weight: 500;
}

.hero__title-gradient {
	background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.4) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero__btn {
	display: inline-block;
	background: var(--color-primary);
	color: var(--color-white);
	padding: 0 80px;
	height: 33px;
	line-height: 33px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
}

/* ========================================
   Features - Desktop
======================================== */
.features {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	width: 100%;
	max-width: 1390px;
	margin-top: 20px;
}

.feature-card {
	display: flex;
	flex-direction: column;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(10px);
	padding: 20px;
	min-height: 176px;
}

.feature-card__icon {
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.12);
	border-radius: 10px;
	flex-shrink: 0;
}

.feature-card__icon img {
	width: 22px;
	height: 22px;
}

.feature-card__text {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.2;
	margin-top: auto;
	color: var(--color-white);
}

/* ========================================
   Responsive - 960px
======================================== */
@media (max-width: 960px) {
	.header__tagline {
		display: none;
	}

	.hero__content {
		max-width: 856px;
		padding: 20px 0 10px 0;
	}

	.hero__title {
		margin-bottom: 20px;
	}

	.feature-card__text {
		font-size: 16px;
	}
}

/* ========================================
   Responsive - 768px
======================================== */
@media (max-width: 768px) {
	.header__email {
		display: none;
	}

	.header__phone {
		font-size: 14px;
	}

	.hero__title {
		font-size: 28px;
	}

	.feature-card {
		padding: 15px;
		min-height: 152px;
	}

	.feature-card__text {
		font-size: 14px;
	}
}

/* ========================================
   Responsive - Mobile 600px
======================================== */
@media (max-width: 600px) {
	.header {
		height: 37px;
		padding: 0 6px;
		left: 15px;
		right: 15px;
	}

	.header__logo img {
		width: 65px;
		height: 25px;
	}

	.header__contacts {
		flex-direction: column;
		align-items: flex-end;
		gap: 1px;
		margin-right: 10px;
	}

	.header__phone {
		font-size: 10px;
	}

	.header__email {
		display: block;
		font-size: 10px;
	}

	.header__cta {
		height: 25px;
		padding: 0 12px;
		font-size: 11px;
		gap: 8px;
	}

	.header__cta-icon {
		width: 13px;
		height: 13px;
	}

	.hero {
		padding: 52px 25px 15px;
	}

	.hero__bg {
		inset: 44px 15px 5px 15px;
	}

	.hero__content {
		max-width: 286px;
	}

	.hero__title {
		font-size: 22px;
		line-height: 1.3;
	}

	.hero__btn {
		width: 100%;
		max-width: 286px;
	}

	.features {
		grid-template-columns: 1fr;
		gap: 10px;
		max-width: 310px;
	}

	.feature-card {
		flex-direction: row;
		align-items: center;
		gap: 10px;
		min-height: 62px;
		padding: 10px;
	}

	.feature-card__text {
		font-size: 14px;
		margin-top: 0;
	}
}

/* ========================================
   Responsive - Mobile 360px
======================================== */
@media (max-width: 400px) {
	.hero__title {
		font-size: 20px;
	}

	.features {
		max-width: 305px;
	}

	.feature-card__text {
		font-size: 13px;
	}
}