/* ============================================================
   KOPI SENJA — MAIN STYLESHEET
   Structure:
   1. Fonts
   2. Variables
   3. Base Reset
   4. Reusable / Blob
   5. Navbar
   6. Hero
   7. About
   8. Menu
   9. Gallery
   10. Testimonials
   11. Contact (Flip Card)
   12. Footer
   13. Responsive — Mobile (max 600px)
   14. Responsive — Tablet (601px - 1023px)
   15. Responsive — Laptop (min 1024px)
   16. Responsive — 2K (min 2048px)
============================================================ */

/* ===================== 1. FONTS ===================== */
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap');

@font-face {
	font-family: 'Darling Coffee';
	src: url('../font/darling-coffee.woff2') format('woff2');
}

/* ===================== 2. VARIABLES ===================== */
:root {
	--body-color: hsl(43, 58%, 90%);
	--container-color: hsl(43, 52%, 85%);
	--first-color: hsl(7, 28%, 23%);
	--first-color-alt: hsl(7, 30%, 18%);
	--first-color-alt-2: hsl(7, 25%, 14%);
	--first-color-light: hsl(7, 25%, 35%);
	--title-color: hsl(0, 26%, 14%);
	--text-color: hsl(7, 28%, 23%);
	--text-color-light: hsl(38, 33%, 64%);
	--sage: hsl(98, 14%, 55%);
	--amber: hsl(34, 56%, 50%);
	--amber-dark: hsl(34, 56%, 42%);
	--body-font: 'Unbounded', sans-serif;
	--second-font: 'Darling Coffee', cursive;
	--biggest-font-size: 2rem;
	--bigger-font-size: 1.75rem;
	--h1-font-size: 1.5rem;
	--h2-font-size: 1.25rem;
	--h3-font-size: 1rem;
	--normal-font-size: 0.938rem;
	--small-font-size: 0.813rem;
	--smaller-font-size: 0.75rem;
	--font-regular: 400;
	--font-medium: 500;
	--font-semi-bold: 600;
	--z-fixed: 100;
}

/* ===================== 3. BASE RESET ===================== */
* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

html {
	scroll-behavior: smooth;
}

html,
body {
	overflow-x: hidden;
}

body,
button {
	font-family: var(--body-font);
	font-size: var(--normal-font-size);
}

body {
	background-color: var(--body-color);
	color: var(--text-color);
}

button {
	outline: none;
	border: none;
}

h1,
h2,
h3,
h4 {
	color: var(--title-color);
	font-family: var(--second-font);
	font-weight: var(--font-semi-bold);
}

ul {
	list-style: none;
}
a {
	text-decoration: none;
	color: inherit;
}
img {
	display: block;
	max-width: 100%;
	height: auto;
}

/* ===================== 4. BLOB ===================== */
.blob-animate {
	width: 100px;
	height: 100px;
	background: linear-gradient(180deg, var(--first-color-alt) 20%, var(--first-color-light) 100%);
	border-radius: 50%;
	position: absolute;
	filter: blur(35px);
	z-index: -1;
	animation: animateBlob 5s linear infinite;
}

@keyframes animateBlob {
	0% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(360deg);
	}
}

.blob {
	width: 250px;
	height: 250px;
	background: linear-gradient(180deg, var(--first-color) 0%, var(--first-color-alt) 100%);
	border-radius: 50%;
	filter: blur(50px);
	position: absolute;
	z-index: -1;
}

/* ===================== 5. NAVBAR ===================== */
.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.4rem 7%;
	background-color: hsla(43, 52%, 85%, 0.7);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--first-color);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: var(--z-fixed);
}

.nav__logo {
	color: var(--title-color);
	font-family: var(--second-font);
	font-size: var(--h1-font-size);
}

.nav__list {
	display: flex;
	justify-content: center;
}

.nav-link {
	display: inline-block;
	font-size: var(--normal-font-size);
	color: var(--first-color);
	margin: 0 1rem;
}

.nav-link:hover {
	color: var(--first-color-light);
}

.nav-link::after {
	content: '';
	display: block;
	padding-bottom: 0.2rem;
	border-bottom: 1px solid var(--first-color-light);
	transform: scaleX(0);
	transition: 0.2s ease-in;
}

.nav-link:hover::after {
	transform: scaleX(0.5);
}

.nav__toggle a {
	margin: 0 0.5rem;
	font-size: var(--h2-font-size);
}

.nav__toggle a:hover {
	color: var(--first-color-light);
}

#humberger-menu {
	display: none;
}

/* ===================== 6. HERO ===================== */
.hero__section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	background-image: url('../img/sampul.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
}

.hero__section::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, hsla(43, 58%, 90%, 1) 5%, hsla(255, 100%, 100%, 0) 30%);
	z-index: 0;
}

.hero__content {
	padding: 1.4rem 7%;
	max-width: 60rem;
	position: relative;
	z-index: 1;
}

.hero__greeting {
	margin-bottom: 1rem;
	text-shadow: 2px 2px 8px hsla(7, 28%, 23%, 0.4);
	font-size: var(--biggest-font-size);
}

.hero__greeting span {
	color: var(--amber);
}

.hero__description {
	font-size: var(--h3-font-size);
}

.hero-btn {
	margin-top: 1rem;
	display: inline-block;
	background-color: var(--first-color-light);
	color: var(--body-color);
	border: 1px solid var(--amber);
	border-radius: 20px;
	padding: 0.5rem 2rem;
	font-weight: var(--font-semi-bold);
	box-shadow: 0 4px 15px hsla(34, 56%, 50%, 0.3);
	transition:
		box-shadow 0.3s ease,
		transform 0.3s ease;
}

.hero-btn:hover {
	transform: translateX(5px) translateY(4px);
	background-color: transparent;
	color: var(--first-color-light);
	box-shadow: 0 8px 25px hsla(34, 56%, 50%, 0.6);
}

/* ===================== 7. ABOUT ===================== */
.about__container {
	margin-top: 4rem;
	margin-bottom: 5rem;
	min-height: 100vh;
	display: flex;
}

.about__image {
	margin-left: 1rem;
	flex: 1;
	position: relative;
	border: 5px solid var(--amber);
	border-radius: 50% / 30%;
	box-shadow: 0 8px 30px hsla(7, 28%, 23%, 0.4);
	overflow: hidden;
}

.about__image img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about__content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 2rem;
	gap: 1.5rem;
}

.about-title {
	font-size: var(--h1-font-size);
	text-shadow: 2px 2px 8px hsla(7, 28%, 23%, 0.4);
}

.about__description {
	padding-bottom: 3rem;
	font-size: var(--small-font-size);
	text-shadow: 2px 2px 8px hsla(7, 28%, 23%, 0.4);
}

/* ===================== 8. MENU ===================== */
.menu__container {
	width: 100%;
}

.menu__content {
	display: flex;
	flex-direction: column;
}

.menu__title {
	align-self: center;
	margin: 1.4rem 7%;
	font-size: var(--h1-font-size);
	font-weight: var(--font-semi-bold);
	text-shadow: 2px 2px 8px hsla(7, 28%, 23%, 0.4);
}

.menu__description {
	align-self: center;
	margin-bottom: 1.5rem;
	padding: 0.3rem;
	font-size: var(--small-font-size);
	font-weight: var(--font-regular);
	text-shadow: 2px 2px 8px hsla(7, 28%, 23%, 0.4);
}

.menu__cards {
	display: flex;
	justify-content: center;
	flex-direction: row;
	flex-wrap: wrap;
	row-gap: 2rem;
	width: 100%;
}

.menu__card {
	background-color: var(--container-color);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin-top: 2rem;
	border: 1px solid var(--amber);
	border-radius: 30px;
	overflow: hidden;
}

.menu__card img {
	width: 200px;
	height: 200px;
}

.menu__name {
	margin-top: 10px;
	margin-bottom: 5px;
	font-size: var(--h2-font-size);
	font-weight: var(--font-semi-bold);
}

.menu-price {
	margin-bottom: 0.5rem;
	font-size: var(--h3-font-size);
	font-weight: var(--font-medium);
}

.menu-stars {
	font-size: var(--smaller-font-size);
}

.menu-btn {
	margin: 1.5rem;
	width: 150px;
	height: 40px;
	border: 1px solid var(--amber);
	border-radius: 45px;
	transition: all 0.3s;
	cursor: pointer;
	background: var(--body-color);
	font-size: var(--smaller-font-size);
	font-weight: var(--font-medium);
}

.menu-btn:hover {
	background: var(--amber);
	color: var(--body-color);
	transform: scale(1.05) translateX(3px);
}

/* ===================== 9. GALLERY ===================== */
.gallery__content {
	min-height: 100vh;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	gap: 20px;
}

.gallery__text {
	flex-basis: 30%;
}

.gallery-title {
	font-size: var(--h1-font-size);
	text-align: center;
}

.gallery-description {
	color: var(--amber-dark);
	font-size: var(--small-font-size);
	margin-top: 10px;
	text-align: center;
}

.gallery__cards {
	flex-basis: 50%;
	display: grid;
	gap: 8px;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: 120px;
}

.box {
	background-size: cover;
	background-position: top;
	font-family: var(--second-font);
	color: var(--body-color);
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--first-color);
	background-blend-mode: hard-light;
	transition: all 1s;
	cursor: pointer;
}

.box:hover {
	background-color: hsla(255, 100%, 100%, 0.5);
	text-shadow: 2px 2px 8px hsla(7, 28%, 23%, 0.7);
	background-position: center;
	box-shadow: 2px 2px 8px hsla(7, 28%, 23%, 0.4);
}

.row-2 {
	grid-row: span 2;
}
.col-2 {
	grid-column: span 2;
}

/* ===================== 10. TESTIMONIALS ===================== */
.section {
	padding-block: 5rem 1rem;
}

.section__title {
	font-size: var(--h1-font-size);
	margin-bottom: 3rem;
	margin-left: 1.5rem;
}

.section__title span {
	color: var(--first-color);
}

.testimonials__container.grid {
	display: grid;
	gap: 1.5rem;
}

.testimonials__container {
	overflow-x: hidden;
	position: relative;
	margin-inline: 0;
	overflow: hidden;
	max-width: 100vh;
}

.testimonials__card {
	position: relative;
	width: 320px;
	background-color: var(--container-color);
	padding: 1.5rem 1rem 2.5rem;
	margin-inline: 1rem;
	border-radius: 3rem;
	text-align: center;
	overflow: hidden;
}

.testimonials__card .blob {
	z-index: 0;
	left: 0;
	right: 0;
	margin-inline: auto;
	bottom: -12.5rem;
}

.testimonials__data {
	position: relative;
	z-index: 1;
}

.testimonials__img {
	width: 60px;
	border-radius: 50%;
	margin: 0 auto 0.5rem;
}

.testimonials__name {
	font-size: var(--normal-font-size);
	font-weight: var(--font-regular);
	margin-bottom: 1.5rem;
}

.testimonials__rating {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 0.5rem;
	column-gap: 0.5rem;
}

.testimonials__stars {
	display: flex;
	column-gap: 0.25rem;
	font-size: 1rem;
	color: var(--first-color);
}

.testimonials__number {
	font-size: var(--h3-font-size);
}

.testimonials__content {
	display: flex;
	width: max-content;
	animation: scroll 18s linear infinite;
}

.testimonials__reverse {
	flex-direction: row-reverse;
	animation-direction: reverse;
	animation-delay: -1s;
}

.testimonials__content:hover {
	animation-play-state: paused;
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* ===================== 11. CONTACT — FLIP CARD ===================== */
.contact__section {
	padding: 4rem 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.flip-card {
	width: 100%;
	max-width: 1100px;
	perspective: 1500px;
	margin: 0 auto;
}

.flip-card__inner {
	display: grid;
	grid-template-areas: 'stack';
	transform-style: preserve-3d;
	transition: transform 0.7s ease-in-out;
}

.flip-card.flipped .flip-card__inner {
	transform: rotateY(180deg);
}

.flip-card__front,
.flip-card__back {
	grid-area: stack;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	overflow: hidden;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	background-color: var(--container-color);
	box-shadow: 0 8px 32px hsla(7, 28%, 23%, 0.5);
	display: grid;
}

.flip-card__front {
	grid-template-columns: 40% 60%;
}

.flip-card__back {
	grid-template-columns: 60% 40%;
	transform: rotateY(180deg);
}

.keterangan-waktu {
	background-color: var(--first-color-alt-2);
	color: var(--body-color);
	padding: 60px;
	outline: 3px dashed var(--sage);
	outline-offset: -30px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.keterangan-waktu p {
	font-family: var(--body-font);
	color: var(--body-color);
}

.jam__buka {
	color: var(--body-color);
	font-size: var(--h1-font-size);
	margin: 1rem;
	letter-spacing: 1.5px;
}

.hari__buka {
	color: var(--body-color);
	font-size: var(--h2-font-size);
	font-weight: var(--font-medium);
	margin: 0.8rem;
}

.contact-btn {
	margin-top: 1.5rem;
	padding: 1rem;
	width: 70%;
	font-size: var(--small-font-size);
	font-weight: var(--font-medium);
	background-color: var(--body-color);
	color: var(--first-color-alt-2);
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s;
}

.contact-btn:hover {
	transform: scale(1.05);
	box-shadow: 0 4px 15px hsla(7, 28%, 23%, 0.3);
}

.form__reservasi {
	padding: 20px 2rem;
	margin: 0 auto;
	color: var(--first-color-alt-2);
}

form {
	display: grid;
	grid-row-gap: 1.5rem;
}

form p {
	font-size: var(--h3-font-size);
}

.form-field {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

textarea {
	padding: 1.2rem 1.5rem;
	resize: none;
	border-radius: 8px;
	width: 50%;
	background-color: var(--body-color);
	border: 1px solid var(--text-color-light);
}

.social {
	display: flex;
	justify-content: center;
}

.social-icons {
	display: flex;
	gap: 2rem;
	font-size: var(--h2-font-size);
	color: var(--first-color);
}

.social-icons i {
	border: 1px solid var(--first-color);
	padding: 0.5rem;
	border-radius: 20%;
	cursor: pointer;
	transition: all 0.3s;
}

.social-icons i:hover {
	background-color: var(--first-color);
	color: var(--body-color);
}

input,
select {
	min-width: 50%;
	padding: 10px 15px;
	border-radius: 6px;
	border: 1px solid var(--text-color-light);
	background: var(--body-color);
}

.reservasi-title {
	font-size: var(--h1-font-size);
	margin: 1rem;
	margin-bottom: 2rem;
}

.reservasi-btn {
	margin: 2rem;
	padding: 1rem;
	background-color: var(--first-color-alt-2);
	color: var(--body-color);
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.5s;
}

.reservasi-btn:hover {
	transform: scale(1.1);
	box-shadow: 5px 10px 32px hsla(7, 28%, 23%, 0.5);
}

/* ===================== 12. MINI MAP ===================== */
.location__container {
	width: 100%;
	margin-bottom: 3rem;
}
.location__content {
	display: flex;
	margin: 3rem;
	flex-direction: column;
	align-items: center;
}
.location__title {
	align-self: center;
	margin: 1.4rem 10%;
	font-size: var(--h1-font-size);
	font-weight: var(--font-semi-bold);
	text-shadow: 2px 2px 8px hsla(7, 28%, 23%, 0.4);
}
.location__card {
	display: flex;
	max-width: 90%;
	flex-direction: row;
	justify-content: space-between;
	align-items: start;
	padding: 1.5rem;
	margin-top: 3rem;
	margin-bottom: 4rem;
	background-color: var(--container-color);
	border: 1px solid var(--first-color);
	border-radius: 50px;
}
.map-embed {
	border-radius: 30px;
	overflow: hidden;
}
.map__content {
	display: flex;
	flex-direction: column;
	max-width: 50%;
	height: 300px;
	margin-left: 2rem;
	padding: 0 3rem;
	justify-content: center;
	align-content: center;
}
.map-title {
	width: 100%;
	text-align: center;
	font-size: var(--h2-font-size);
	padding: 1.5rem;
	padding-bottom: 0;
	margin-bottom: 1rem;
}
.map-description {
	padding: 1.5rem;
	padding-top: 0;
	text-align: center;
	font-size: var(--h3-font-size);
	font-weight: var(--font-regular);
}
/* ===================== 14. FOOTER ===================== */
footer {
	position: relative;
	width: 100%;
	height: auto;
	padding: 3.15rem 6.25rem;
	background: var(--container-color);
	border-top: 2px solid var(--first-color);
}

.footer__container {
	display: grid;
	width: 100%;
	grid-template-columns: 2fr 1fr 1fr;
	grid-gap: 20px;
}

.footer__container h1 {
	margin-bottom: 2rem;
}

.footer__description {
	position: relative;
	margin-bottom: 25px;
}

.footer .social-icons {
	margin-top: 25px;
	font-size: var(--h3-font-size);
}

.footer .social-icons i {
	padding: 0.2rem;
}

.support-list {
	position: relative;
}

.support-list li {
	margin-bottom: 10px;
}

.support__list input {
	margin-top: 30px;
	max-width: 100px;
}

.news-btn {
	font-size: var(--smaller-font-size);
	margin: 0.5rem;
	padding: 10px;
	background-color: transparent;
	border: 1px solid var(--text-color-light);
	color: var(--first-color);
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.5s;
}

.news-btn:hover {
	transform: scale(1.1);
	background-color: var(--first-color-alt-2);
	color: var(--body-color);
	box-shadow: 5px 10px 32px hsla(7, 28%, 23%, 0.5);
}
/* copyright */
.footer__last {
	display: flex;
	position: relative;
	padding: 0.5rem 0;
	justify-content: center;
	gap: 0.5rem;
	background-color: var(--container-color);
}
.footer__last::after {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 30%;
	height: 2px;
	background: linear-gradient(to right, transparent, var(--text-color-light), transparent);
}
.footer__copy span {
	color: var(--title-color);
	font-weight: var(--font-medium);
}

/* ============================================================
   13. RESPONSIVE — MOBILE (max 600px)
============================================================ */
@media screen and (max-width: 600px) {
	/* --- Navbar --- */
	#humberger-menu {
		display: inline-block;
	}

	.nav__list {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		position: absolute;
		top: 100%;
		right: -100%;
		background-color: hsla(43, 52%, 85%, 0.6);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		border-left: 1px solid transparent;
		border-image: linear-gradient(to bottom, transparent 0%, hsla(255, 100%, 100%, 0.4) 40%, hsla(255, 100%, 100%, 0.4) 60%, transparent 100%) 1;
		width: 40%;
		height: 100vh;
		transition: 0.5s ease-out;
		opacity: 0;
		z-index: 99;
	}

	.nav__list.active {
		right: 0;
		box-shadow: 0 8px 32px hsla(7, 28%, 23%, 0.5);
		opacity: 1;
	}

	.nav-link {
		font-size: var(--normal-font-size);
		margin: 1.5rem;
		padding: 0.5rem;
	}

	.nav-link::after {
		transform-origin: 0 0;
	}

	/* --- Hero --- */
	.hero__section {
		background-position: 60% center;
	}

	.hero__content {
		max-width: 30rem;
	}

	.hero__greeting {
		font-size: var(--h1-font-size);
		font-weight: var(--font-semi-bold);
		line-height: 2rem;
	}

	.hero__description {
		font-size: var(--small-font-size);
		color: var(--first-color-alt-2);
		text-shadow: 2px 2px 8px hsla(7, 28%, 23%, 0.4);
		margin-top: 1rem;
		margin-bottom: 2rem;
	}

	.hero-btn {
		margin-top: 4rem;
		font-size: var(--normal-font-size);
	}

	/* --- About --- */
	.about__container {
		flex-direction: column;
		margin-top: 0;
		margin-bottom: 1rem;
	}

	.about__image {
		margin-left: 0;
		flex: 2;
		border: 0;
		box-shadow: none;
		border-radius: 0;
		overflow: hidden;
	}

	.about__image::after {
		content: '';
		display: block;
		position: absolute;
		width: 100%;
		height: 100%;
		background: linear-gradient(0deg, hsla(43, 58%, 90%, 1) 5%, hsla(255, 100%, 100%, 0) 30%);
		z-index: 2;
	}

	.about__content {
		padding: 2rem;
		align-items: center;
		justify-content: center;
	}

	.about-title {
		font-size: var(--h1-font-size);
	}
	.about__description {
		font-size: var(--small-font-size);
	}

	/* --- Gallery --- */
	.gallery__container {
		padding: 2rem;
	}
	.gallery__content {
		flex-direction: column;
	}
	.box {
		font-size: var(--smaller-font-size);
		font-weight: var(--font-regular);
	}

	/* --- Testimonials --- */
	.testimonials__card {
		width: 200px;
		padding-bottom: 2rem;
	}

	/* --- Contact --- */
	.flip-card {
		width: calc(100% - 2rem);
		margin: 0 1rem;
	}

	.flip-card__front,
	.flip-card__back {
		grid-template-columns: 1fr;
	}

	.flip-card__front .keterangan-waktu,
	.flip-card__back .keterangan-waktu {
		order: -1;
	}

	.jam__buka {
		font-size: var(--h2-font-size);
	}
	.hari__buka {
		font-size: var(--h3-font-size);
	}
	.keterangan-waktu p {
		font-size: var(--small-font-size);
	}
	.form-field p {
		font-size: var(--smaller-font-size);
	}

	input,
	select {
		max-width: 40%;
		font-size: var(--smaller-font-size);
	}

	textarea {
		padding: 10px 15px;
		font-size: var(--smaller-font-size);
	}

	.contact-btn {
		min-width: 90%;
	}
	/* --- Mini Map --- */
	.location__content {
		margin: 1rem 0;
	}
	.location__card {
		flex-direction: column;
		min-width: 90%;
	}
	.map__content {
		margin: 0;
		min-width: 100%;
		padding: 0 1rem;
	}
	.map-embed iframe {
		width: 100%;
	}
	.map-title {
		width: 100%;
		text-align: left;
	}
	/* --- Footer --- */
	footer {
		padding: 3rem 1rem;
		justify-content: space-between;
	}
	.footer__container {
		grid-template-columns: 1fr 2fr;
	}
	.map-description {
		text-align: left;
	}
	.footer__description {
		display: none;
	}
	.support__list h1 {
		font-size: var(--h3-font-size);
	}
	.support-list li {
		font-size: var(--smaller-font-size);
	}
	.support__list p {
		font-size: var(--smaller-font-size);
	}
	.support__list input {
		font-size: var(--smaller-font-size);
		padding: 7px;
	}
	.news-btn {
		height: 30px;
		padding: 7px;
		font-size: 0.5rem;
		border-radius: 7px;
	}
	.footer__last {
		font-size: var(--smaller-font-size);
	}
	.footer__last::after {
		width: 70%;
	}
}

/* ============================================================
   14. RESPONSIVE — TABLET (601px - 1023px)
============================================================ */
@media screen and (min-width: 601px) {
	.testimonials .section__title {
		text-align: center;
		justify-content: center;
	}
}

@media screen and (min-width: 601px) and (max-width: 1023px) {
	/* --- Hero --- */
	.hero__section {
		background-position: 60% center;
		min-height: 50vh;
	}

	.hero__content {
		max-width: 80rem;
	}

	.hero__greeting {
		font-size: 3rem;
		font-weight: var(--font-semi-bold);
		line-height: 3rem;
	}

	.hero__description {
		font-size: var(--h2-font-size);
		color: var(--first-color-alt-2);
		text-shadow: 2px 2px 8px hsla(7, 28%, 23%, 0.4);
		margin-top: 1rem;
		margin-bottom: 2rem;
	}

	.hero-btn {
		margin-top: 4rem;
		font-size: var(--h2-font-size);
	}

	/* --- About --- */
	.about__container {
		flex-direction: column;
	}

	.about__image {
		flex: 2;
		border: 0;
		box-shadow: none;
		border-radius: 0;
		overflow: hidden;
	}

	.about__image::after {
		content: '';
		display: block;
		position: absolute;
		width: 100%;
		height: 100%;
		background: linear-gradient(0deg, hsla(43, 58%, 90%, 1) 5%, hsla(255, 100%, 100%, 0) 30%);
		z-index: 2;
	}

	.about__content {
		padding: 2rem;
		align-items: center;
	}

	.about-title {
		font-size: var(--bigger-font-size);
	}
	.about__description {
		font-size: var(--h3-font-size);
	}

	/* --- Menu --- */
	.menu__content {
		margin: 2rem;
		justify-content: center;
		align-items: center;
	}

	.menu__title {
		font-size: var(--bigger-font-size);
	}
	.menu__description {
		font-size: var(--h3-font-size);
	}
	.menu__cards {
		gap: 4rem;
	}
	.menu__card img {
		width: 300px;
		height: 300px;
	}
	.menu-price {
		margin: 0.5rem;
	}
	.menu-stars {
		margin: 1rem;
	}

	.menu-btn {
		width: 200px;
		height: 50px;
		margin: 0.8rem;
		margin-bottom: 1.5rem;
		font-size: var(--h3-font-size);
		font-weight: var(--font-medium);
		letter-spacing: 0.1rem;
	}
	.contact__section {
		margin: 1rem 2rem;
	}
	.form-field input,
	select {
		min-width: 30%;
		font-size: var(--smaller-font-size);
	}

	textarea {
		padding: 10px 15px;
		font-size: var(--smaller-font-size);
	}
}

/* ============================================================
   15. RESPONSIVE — LAPTOP (min 1024px)
============================================================ */
@media screen and (min-width: 1024px) {
	/* --- Typography scale --- */
	:root {
		--biggest-font-size: 3rem;
		--bigger-font-size: 2rem;
		--h1-font-size: 2.25rem;
		--h2-font-size: 1.5rem;
		--h3-font-size: 1.25rem;
		--normal-font-size: 1rem;
		--small-font-size: 0.875rem;
		--smaller-font-size: 0.813rem;
	}

	/* --- Hero --- */
	.hero__section {
		min-height: 100vh;
	}

	/* --- About --- */
	.about-title {
		font-size: var(--h1-font-size);
	}
	.about__description {
		font-size: var(--small-font-size);
	}

	/* --- Menu --- */
	.menu__title {
		font-size: var(--h1-font-size);
	}
	.menu__description {
		font-size: var(--small-font-size);
	}
	.menu__cards {
		gap: 3rem;
	}
	.menu__card img {
		width: 300px;
		height: 300px;
	}
	.menu__name {
		font-size: var(--h2-font-size);
	}
	.menu-price {
		font-size: var(--h3-font-size);
	}
	.menu-stars {
		font-size: var(--normal-font-size);
	}

	.menu-btn {
		margin: 0.5rem;
		margin-bottom: 1.5rem;
		width: 80%;
		height: 60px;
	}

	/* --- Gallery --- */
	.gallery-title {
		font-size: var(--h1-font-size);
	}

	.gallery-description {
		margin-top: 1.5rem;
		font-size: var(--small-font-size);
	}

	/* --- Testimonials --- */
	.testimonials__container {
		row-gap: 3rem;
	}

	.testimonials__container::after,
	.testimonials__container::before {
		content: '';
		position: absolute;
		top: 0;
		width: 20%;
		height: 100%;
	}

	.testimonials__container::after {
		left: 0;
		background: linear-gradient(-90deg, rgba(54, 47, 79, 0) 0%, var(--body-color) 100%);
	}

	.testimonials__container::before {
		right: 0;
		z-index: 1;
		background: linear-gradient(90deg, rgba(54, 47, 79, 0) 0%, var(--body-color) 100%);
	}

	.testimonials__card {
		width: 370px;
		padding: 3rem 2rem;
		border-radius: 4rem;
	}

	.testimonials__number {
		font-size: var(--normal-font-size);
	}
}

/* ============================================================
   16. RESPONSIVE — 2K (min 2048px)
============================================================ */
@media screen and (min-width: 2048px) {
	body {
		zoom: 1.4;
	}
}
