/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(218, 94%, 45%);
  --first-color-alt: hsl(218, 100%, 40%);
  --second-color: hsl(200, 85%, 64%);
  --title-color: hsl(218, 48%, 22%);
  --text-color: hsl(218, 8%, 36%);
  --text-color-light: hsl(218, 8%, 54%);
  --white-color: hsl(218, 100%, 98%);
  --white-color-light: hsl(218, 48%, 80%);
  --dark-color: hsl(218, 68%, 18%);
  --gray-color: hsl(0, 0%, 92%);
  --body-color: hsl(0, 0%, 100%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --biggest-font-size: 2.25rem;
  --bigger-font-size: 1.75rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --biggest-font-size: 3.5rem;
    --bigger-font-size: 3rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  transition: background-color .4s;
}

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

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

/*=============== THEME ===============*/
/*========== Variables Dark theme ==========*/

/*========== 
	Color changes in some parts of 
	the website, in dark theme
==========*/

body.dark-theme {
  --body-color: #020617;
  --title-color: #e5e7eb;
  --text-color: #e5e7eb;
  --text-color-light: #9ca3af;
  --white-color: #020617;
  --white-color-light: #1e293b;
  --gray-color: #0f172a;
  --dark-color: #020617;
}

body.dark-theme .header {
  background-color: rgba(15, 23, 42, 0.96);
}

body.dark-theme .nav__menu {
  background-color: #020617;
}

body.dark-theme .nav__toggle {
  background-color: #020617;
  border-color: #1f2933;
}

body.dark-theme .button--ghost {
  border-color: rgba(148, 163, 184, 0.45);
  color: #e5e7eb;
}

body.dark-theme .footer {
  background-color: #020617;
}

body.dark-theme .contact__form,
body.dark-theme .prices__card {
  background-color: #020617;
}

body.dark-theme .toast {
  background-color: #020617;
}

body.dark-theme .scrollup {
  background-color: #e5e7eb;
  color: #020617;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

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

.section {
  padding-block: 5rem 1rem;
}

.section__title {
  text-align: center;
  font-size: var(--bigger-font-size);
  margin-bottom: 1rem;
}

.section__title span {
  font-weight: var(--font-regular);
}

.main {
  overflow: hidden;
}

/*=============== HEADER & NAV ===============*/


/* Navigation for mobile devices */


/* Show menu */


/* Add shadow header */


/* Active link */


/*=============== BUTTON ===============*/


/*=============== HOME ===============*/


/*=============== DELIVERY ===============*/


/*=============== ABOUT ===============*/


/*=============== PRICES ===============*/


/* Swiper class */


/*=============== GALLERY ===============*/


/*=============== CONTACT ===============*/


/*=============== FOOTER ===============*/


/*=============== SCROLL BAR ===============*/


/*=============== SCROLL UP ===============*/


/* Show Scroll Up */


/*=============== BREAKPOINTS ===============*/
/* For small devices */


/* For medium devices */


/* For large devices */


/* For 2K resolutions (2048 x 1152, 2048 x 1536) */

/*=============== LAYOUT & NAVIGATION ===============*/
.body-lock {
  overflow: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--body-color);
  z-index: var(--z-fixed);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.scroll-header {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
}

.nav {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 1.5rem;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  font-size: var(--h3-font-size);
}

.nav__logo i {
  font-size: 1.5rem;
  color: var(--first-color);
}

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

.nav__search-wrapper {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background-color: var(--gray-color);
}

.nav__search-input {
  border: none;
  outline: none;
  background: transparent;
  font-size: var(--small-font-size);
  width: 160px;
}

.nav__search-input::placeholder {
  color: var(--text-color-light);
}

.button--icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
}

.nav__menu {
  position: fixed;
  inset-inline: 0;
  top: -100vh;
  background-color: var(--body-color);
  padding: 4.5rem 1.5rem 2rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.24);
  transition: top 0.35s ease;
}

.nav__menu.show-menu {
  top: 0;
}

.nav__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nav__link {
  color: var(--text-color);
  font-weight: var(--font-medium);
}

.nav__link:hover,
.nav__link.active-link {
  color: var(--first-color);
}

.nav__close {
  position: absolute;
  top: 1.1rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
}

.nav__actions {
  display: flex;
  align-items: center;
  column-gap: 0.75rem;
}

.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--gray-color);
  background-color: var(--body-color);
  cursor: pointer;
  font-size: 1.35rem;
  color: var(--title-color);
}

.nav__theme-toggle {
  border-radius: 999px;
  border: 1px solid var(--gray-color);
  background-color: var(--body-color);
  color: var(--title-color);
  font-size: 1.25rem;
}

.nav__theme-toggle i {
  transition: transform 0.25s ease;
}

.nav__theme-toggle:hover i {
  transform: translateY(-1px) rotate(-15deg);
}

.nav__btn {
  display: none;
}

/*=============== BUTTON ===============*/
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(135deg, var(--first-color), var(--second-color));
  color: #fff;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: var(--font-medium);
  font-size: var(--small-font-size);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.32);
}

.button--ghost {
  background: transparent;
  border: 1px solid var(--white-color-light);
  color: var(--title-color);
  box-shadow: none;
}

.button--small {
  padding: 0.55rem 1.1rem;
  font-size: var(--small-font-size);
}

.button__dark {
  background: var(--dark-color);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
}

/*=============== HOME ===============*/
.home {
  padding-block: calc(var(--header-height) + 3.5rem) 3.5rem;
}

.home__container {
  align-items: center;
}

.home__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.home__eyebrow {
  font-size: var(--small-font-size);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--first-color);
}

.home__title {
  font-size: var(--biggest-font-size);
  line-height: 1.05;
}

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

.home__description {
  color: var(--text-color-light);
  max-width: 32rem;
}

.home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.home__meta {
  display: grid;
  gap: 1.25rem;
}

.home__profile {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.home__name {
  font-weight: var(--font-semi-bold);
}

.home__profession {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.home__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.home__stat span {
  display: block;
  font-weight: var(--font-semi-bold);
  color: var(--first-color);
}

.home__image-wrapper {
  position: relative;
}

.home__image-card {
  background: radial-gradient(circle at 10% 0%, var(--second-color) 0, transparent 60%),
    radial-gradient(circle at 90% 100%, var(--first-color-alt) 0, transparent 60%),
    var(--body-color);
  padding: 1.6rem;
  border-radius: 2rem;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

.home__img {
  max-width: 260px;
  margin-inline: auto;
}

.home__badge {
  position: absolute;
  inset-inline-end: 0.75rem;
  bottom: 0.75rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background-color: rgba(15, 23, 42, 0.88);
  color: #fff;
  font-size: var(--small-font-size);
}

.home__rhythm-3d {
  position: absolute;
  inset-inline-start: -0.25rem;
  bottom: -3.2rem;
  perspective: 900px;
}

.home__rhythm-3d-text {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: linear-gradient(120deg, #e0f2fe, #bfdbfe, #60a5fa, #1d4ed8);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 6px 18px rgba(37, 99, 235, 0.58);
  transform-origin: center;
  transform-style: preserve-3d;
  animation: rhythmFloat 5.5s ease-in-out infinite alternate;
}

@keyframes rhythmFloat {
  0% {
    transform: rotateY(-18deg) rotateX(12deg) translateY(0);
  }
  50% {
    transform: rotateY(12deg) rotateX(-6deg) translateY(-6px);
  }
  100% {
    transform: rotateY(-10deg) rotateX(8deg) translateY(-2px);
  }
}

/*=============== DELIVERY ===============*/
.delivery__container {
  row-gap: 3rem;
  align-items: center;
}

.delivery__description {
  max-width: 32rem;
  margin-bottom: 1.75rem;
  color: var(--text-color-light);
}

.delivery__grid {
  display: grid;
  gap: 1rem;
}

.delivery__card {
  padding: 1.1rem 1.1rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: #f9fafb;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.delivery__card:hover {
  transform: translateY(-4px);
  border-color: var(--first-color);
  box-shadow: 0 14px 35px rgba(148, 163, 184, 0.38);
}

.delivery__subtitle {
  margin-bottom: 0.35rem;
}

.delivery__text {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.delivery__image-wrapper {
  position: relative;
  max-width: 360px;
  justify-self: center;
}

.delivery__img {
  border-radius: 1.8rem;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
}

.delivery__request-card {
  position: absolute;
  inset-inline-end: -0.4rem;
  bottom: 1.2rem;
  padding: 1rem 1.1rem;
  border-radius: 1.35rem;
  background-color: #0f172a;
  color: #e5e7eb;
  max-width: 210px;
}

.delivery__title {
  font-size: var(--h3-font-size);
  margin-bottom: 0.35rem;
}

.delivery__patients span {
  color: var(--second-color);
  font-weight: var(--font-semi-bold);
}

/*=============== ABOUT ===============*/
.about__container {
  row-gap: 3rem;
  align-items: center;
}

.about__image-wrapper {
  max-width: 360px;
  justify-self: center;
}

.about__img {
  border-radius: 1.8rem;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

.about__description {
  margin-bottom: 1.75rem;
  color: var(--text-color-light);
}

.about__details {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 1.75rem;
}

.about__number span {
  font-size: var(--bigger-font-size);
  color: var(--first-color);
}

.about__number p {
  margin-top: 0.15rem;
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.about__button {
  margin-top: 0.25rem;
}

/*=============== PRICES ===============*/
.prices__container {
  text-align: center;
}

.prices__description {
  max-width: 32rem;
  margin: 0 auto 2.5rem;
  color: var(--text-color-light);
}

.prices__swiper {
  padding-block: 0.5rem 2.5rem;
}

.prices__card {
  background-color: #f9fafb;
  border-radius: 1.5rem;
  padding: 1.6rem 1.5rem 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  text-align: left;
  max-width: 320px;
}

.prices__card--match {
  border-color: var(--first-color);
  box-shadow: 0 20px 55px rgba(37, 99, 235, 0.2);
}

.is-hidden {
  display: none !important;
}

.prices__title {
  margin-bottom: 0.25rem;
}

.prices__details {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  margin-bottom: 0.9rem;
}

.prices__number {
  font-size: var(--bigger-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: 0.6rem;
}

.prices__list {
  display: grid;
  gap: 0.45rem;
  font-size: var(--small-font-size);
  margin-bottom: 1.2rem;
  color: var(--text-color-light);
}

.prices__button {
  width: 100%;
}

.swiper-pagination-bullet {
  background-color: var(--white-color-light);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: var(--first-color);
}

/*=============== GALLERY ===============*/
.gallery__grid {
  display: grid;
  gap: 1.2rem;
}

.gallery__item img {
  border-radius: 1.4rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery__item {
  cursor: zoom-in;
}

.gallery__item:hover img {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.26);
}

/*=============== CONTACT ===============*/
.contact__container {
  row-gap: 3rem;
}

.contact__description {
  margin-bottom: 1.4rem;
  color: var(--text-color-light);
}

.contact__info {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.contact__subtitle {
  margin-bottom: 0.1rem;
}

.contact__address {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.contact__social {
  display: flex;
  gap: 0.75rem;
}

.contact__social-link {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-color);
  color: var(--title-color);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.contact__social-link:hover {
  background-color: var(--first-color);
  color: #fff;
  border-color: transparent;
}

.contact__form {
  padding: 1.6rem 1.4rem;
  border-radius: 1.5rem;
  background-color: #f9fafb;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
}

.contact__form-title {
  margin-bottom: 1rem;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.85rem;
}

.contact__field label {
  font-size: var(--small-font-size);
}

.contact__field input,
.contact__field select,
.contact__field textarea {
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.8);
  padding: 0.6rem 0.8rem;
  font-family: inherit;
  font-size: var(--small-font-size);
  outline: none;
  background-color: #fefefe;
}

.contact__field input:focus,
.contact__field select:focus,
.contact__field textarea:focus {
  border-color: var(--first-color);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.2);
}

.contact__error {
  min-height: 0.9rem;
  font-size: 0.7rem;
  color: #ef4444;
}

.contact__hint {
  margin-top: 0.6rem;
  font-size: 0.7rem;
  color: var(--text-color-light);
}

.contact__submit {
  width: 100%;
}

/*=============== FOOTER ===============*/
.footer {
  background-color: var(--dark-color);
  color: #e5e7eb;
  padding-block: 2.5rem 2rem;
  margin-top: 3rem;
}

.footer__container {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #e5e7eb;
  font-weight: var(--font-semi-bold);
}

.footer__logo i {
  color: var(--second-color);
}

.footer__tagline {
  font-size: var(--small-font-size);
  color: #9ca3af;
  margin-top: 0.35rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer__links a {
  color: #d1d5db;
  font-size: var(--small-font-size);
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social-link {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(15, 23, 42, 0.8);
  color: #e5e7eb;
}

.footer__bottom {
  margin-top: 1.75rem;
  text-align: center;
  font-size: 0.75rem;
  color: #9ca3af;
}

.footer__credit span {
  color: var(--second-color);
  font-weight: var(--font-semi-bold);
}

/*=============== TOAST ===============*/
.toast {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  min-width: 220px;
  max-width: 320px;
  padding: 0.85rem 1rem;
  border-radius: 0.9rem;
  background-color: #0f172a;
  color: #e5e7eb;
  font-size: var(--small-font-size);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.55);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: var(--z-tooltip);
}

.toast--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.toast--success {
  background-color: #16a34a;
}

.toast--error {
  background-color: #b91c1c;
}

.toast--info {
  background-color: #0f172a;
}

/*=============== MODAL ===============*/
.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  z-index: calc(var(--z-fixed) + 1);
  transition: opacity 0.2s ease;
}

.modal--visible {
  opacity: 1;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
}

.modal__content {
  position: relative;
  background-color: #f9fafb;
  width: min(100% - 2rem, 520px);
  padding: 1.75rem 1.6rem 1.5rem;
  border-radius: 1.6rem;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.45);
  z-index: 1;
}

.modal__title {
  margin-bottom: 0.25rem;
}

.modal__subtitle {
  margin-bottom: 1.1rem;
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.modal__field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.85rem;
}

.modal__field label {
  font-size: var(--small-font-size);
}

.modal__field input,
.modal__field select {
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.8);
  padding: 0.6rem 0.8rem;
  font-family: inherit;
  font-size: var(--small-font-size);
  outline: none;
  background-color: #fefefe;
}

.modal__field input:focus,
.modal__field select:focus {
  border-color: var(--first-color);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.2);
}

.modal__submit {
  width: 100%;
  margin-top: 0.35rem;
}

.modal__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: none;
  background-color: #e5e7eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/*=============== LIGHTBOX ===============*/
.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  z-index: calc(var(--z-fixed) + 1);
  transition: opacity 0.25s ease;
}

.lightbox--visible {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
}

.lightbox__content {
  position: relative;
  max-width: min(100% - 2.5rem, 720px);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.7);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s ease;
  z-index: 1;
}

.lightbox--visible .lightbox__content {
  transform: translateY(0) scale(1);
}

.lightbox__img {
  display: block;
  width: 100%;
  height: auto;
}

.lightbox__caption {
  padding: 0.9rem 1.2rem 1rem;
  background: rgba(15, 23, 42, 0.96);
  color: #e5e7eb;
  font-size: var(--small-font-size);
}

.lightbox__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
  cursor: pointer;
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1.35rem;
  bottom: -4rem;
  display: inline-flex;
  padding: 0.6rem;
  border-radius: 999px;
  background-color: var(--dark-color);
  color: #f9fafb;
  font-size: 1.2rem;
  z-index: var(--z-tooltip);
  transition: bottom 0.25s ease, transform 0.25s ease;
}

.scrollup:hover {
  transform: translateY(-2px);
}

.show-scroll {
  bottom: 2rem;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: 0.5rem;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(148, 163, 184, 0.8);
  border-radius: 999px;
}

/*=============== RESPONSIVE BREAKPOINTS ===============*/
@media screen and (min-width: 640px) {
  .container {
    margin-inline: 2rem;
  }

  .home__img {
    max-width: 300px;
  }

  .delivery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (min-width: 768px) {
  .header {
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
  }

  .nav__menu {
    position: static;
    padding: 0;
    box-shadow: none;
    top: 0;
    background-color: transparent;
  }

  .nav__list {
    flex-direction: row;
    gap: 1.1rem;
  }

  .nav__toggle,
  .nav__close {
    display: none;
  }

  .nav__btn {
    display: inline-flex;
  }

  .nav__search-wrapper {
    display: inline-flex;
  }

  .home__container,
  .delivery__container,
  .about__container,
  .contact__container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }

  .home__container {
    column-gap: 3.5rem;
  }

  .home__img {
    max-width: 360px;
  }

  .delivery__image-wrapper,
  .about__image-wrapper {
    max-width: 420px;
  }

  .gallery__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media screen and (min-width: 2048px) {
  body {
    zoom: 1.1;
  }
}
