/* ============================
   The Project — Premium Dark Luxury (Clean + Stable)
   File: css/styles.css
   No frameworks • No JS required
   ============================ */

:root {
  /* Colors */
  --bg: #0b0d10;
  --panel: #11151b;
  --panel-alt: #0f1319;
  --text: #ededed;
  --muted: #a7afbc;
  --accent: #c7a46b;
  --accent-2: #9f8352;

  /* UI */
  --border: rgba(167, 175, 188, 0.14);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 10px 26px rgba(0, 0, 0, 0.28);
  --radius: 18px;
  --radius-lg: 26px;

  /* Layout */
  --max: 1100px;
}

/* ========== Base ========== */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  /* solid background => no weird bands */
  color: var(--text);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

/* ========== Container ========== */
.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* ========== Typography ========== */
h1,
h2 {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.2px;
  margin: 0;
}

h3 {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin: 0;
}

p {
  margin: 0;
  color: var(--muted);
}

/* ========== Buttons ========== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(199, 164, 107, 0.40);
}

.button--primary {
  border-color: rgba(199, 164, 107, 0.50);
  background: linear-gradient(135deg, rgba(199, 164, 107, 0.22), rgba(199, 164, 107, 0.08));
}

.button--outline {
  background: transparent;
}

/* ========== Header / Navigation ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 13, 16, 0.92);
  backdrop-filter: blur(10px);
  /* removed borders to avoid lines */
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: grid;
  gap: 2px;
}

.brand__name {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.7px;
  color: var(--text);
}

.brand__tagline {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__link {
  color: var(--muted);
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.nav__link:hover {
  color: var(--text);
  background: rgba(167, 175, 188, 0.10);
}

.nav__link.is-active {
  color: var(--text);
  background: rgba(199, 164, 107, 0.14);
  border-color: rgba(199, 164, 107, 0.22);
}

/* ========== Hero ========== */
.hero {
  padding: 64px 0 44px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.hero__content {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

.hero__title {
  font-size: 46px;
  line-height: 1.08;
  margin-top: 10px;
}

.hero__lead {
  margin-top: 12px;
  max-width: 62ch;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(199, 164, 107, 0.30);
  background: rgba(199, 164, 107, 0.10);
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.hero__visual {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(199, 164, 107, 0.10), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
  min-height: 360px;
}

/* Stats */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
}

.stat {
  border-radius: 16px;
  border: 1px solid rgba(167, 175, 188, 0.12);
  background: var(--panel-alt);
  padding: 14px;
}

.stat__label {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat__value {
  margin: 6px 0 0;
  font-weight: 800;
  color: var(--text);
}

/* ========== Sections ========== */
.section {
  padding: 22px 0 58px;
}

.section__header {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.section__title {
  font-size: 26px;
}

.section__subtitle {
  color: var(--muted);
}

/* ========== Cards ========== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card {
  border-radius: var(--radius);
  border: 1px solid rgba(167, 175, 188, 0.12);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.card__title {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--text);
}

.card__text {
  color: var(--muted);
  font-size: 14px;
}

/* ========== Contact ========== */
.section--muted {
  background: transparent;
  /* keeps it clean and prevents bands */
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

.contact__details {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.detail {
  margin: 0;
  color: var(--muted);
}

.detail__label {
  color: var(--text);
  font-weight: 700;
  margin-right: 8px;
}

.contact__form-wrap {
  border-radius: var(--radius);
  border: 1px solid rgba(167, 175, 188, 0.12);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.form {
  padding: 18px;
  display: grid;
  gap: 12px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: grid;
  gap: 8px;
}

.field__label {
  font-size: 13px;
  color: var(--muted);
}

.field__input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(167, 175, 188, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  outline: none;
  transition: border-color .18s ease, background .18s ease;
}

.field__input:focus {
  border-color: rgba(199, 164, 107, 0.50);
  background: rgba(255, 255, 255, 0.05);
}

.field__input::placeholder {
  color: rgba(167, 175, 188, 0.75);
}

.field__input--textarea {
  resize: vertical;
}

.form__hint {
  margin: 0;
  font-size: 12px;
  color: rgba(167, 175, 188, 0.80);
}

/* ========== Footer ========== */
.site-footer {
  padding: 26px 0 40px;
  background: var(--bg);
  /* removed borders to avoid lines */
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.footer__text {
  margin: 0;
  color: var(--text);
  font-size: 13px;
}

.footer__text--muted {
  color: var(--muted);
}

/* ========== Menu Helpers (menu.html) ========== */
.page-title {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  line-height: 1.1;
  margin: 0;
}

.toolbar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(167, 175, 188, 0.12);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.searchbar {
  display: flex;
  gap: 10px;
  flex: 1;
  min-width: 260px;
}

.searchbar__input {
  width: 100%;
}

.pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pills__button {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(167, 175, 188, 0.14);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}

.pills__button:hover {
  color: var(--text);
  border-color: rgba(199, 164, 107, 0.40);
}

.pills__button.is-active {
  color: var(--text);
  border-color: rgba(199, 164, 107, 0.45);
  background: rgba(199, 164, 107, 0.12);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.menu-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(167, 175, 188, 0.12);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.menu-item__thumb {
  width: 92px;
  height: 92px;
  border-radius: 16px;
  border: 1px solid rgba(167, 175, 188, 0.12);
  background: linear-gradient(135deg, rgba(199, 164, 107, 0.16), rgba(255, 255, 255, 0.02));
  flex: 0 0 auto;
}

.menu-item__body {
  flex: 1;
}

.menu-item__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.menu-item__name {
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--text);
}

.menu-item__price {
  color: var(--accent);
  font-weight: 800;
}

.menu-item__desc {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--muted);
}

.menu-item__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(199, 164, 107, 0.25);
  background: rgba(199, 164, 107, 0.10);
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Simple "Add to cart" form spacing */
.menu-item__actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

/* ========== Responsive ========== */
@media (max-width: 920px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: 40px;
  }
}

@media (max-width: 560px) {
  .header__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .nav {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 8px;
  }

  .nav__link {
    padding: 8px 10px;
    font-size: 13px;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: 34px;
  }

  .toolbar {
    padding: 12px;
  }

  .searchbar {
    min-width: 100%;
  }

  .menu-item {
    flex-direction: column;
  }

  .menu-item__thumb {
    width: 100%;
    height: 148px;
  }

  .footer__inner {
    justify-content: flex-start;
  }
}

/* Small admin button tweak */
.admin-button {
  padding: 7px 12px;
}

/* Split layout for reservering page */
.split {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
}

/* Panels (subtle containers) */
.panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  padding: 18px;
}

.panel--soft {
  background: rgba(255, 255, 255, 0.03);
}

.panel__title {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin: 0 0 10px;
}

.panel__text {
  margin: 0 0 14px;
  opacity: 0.9;
}

/* Notes */
.note {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 12px 14px;
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.note__title {
  margin: 0 0 6px;
  font-weight: 700;
}

.note__text {
  margin: 0;
  opacity: 0.9;
}

/* Form actions row */
.form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

/* Gallery */
.gallery__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 18px;
}

.chip {
  border-radius: 999px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.chip.is-active {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.22);
}

.gallery {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 900px) {
  .gallery {
    grid-template-columns: repeat(12, 1fr);
  }

  .gallery__item {
    grid-column: span 4;
  }

  .gallery__item--wide {
    grid-column: span 8;
  }

  .gallery__item--tall {
    grid-column: span 4;
    grid-row: span 2;
  }
}

.gallery__item {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
}

.gallery__media {
  height: 220px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.02));
}

.gallery__item--tall .gallery__media {
  height: 460px;
}

.gallery__caption {
  padding: 12px 14px;
  opacity: 0.9;
  font-size: 14px;
}

.gallery__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

/* Admin auth layout */
.auth {
  max-width: 560px;
  margin: 0 auto;
}

.auth__header {
  margin-bottom: 14px;
}

.auth__footer {
  margin-top: 18px;
  text-align: center;
  opacity: 0.85;
}

/* ===== Gallery (clean premium grid) ===== */
.gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 900px) {
  .gallery {
    grid-template-columns: repeat(12, 1fr);
  }

  .gallery__item {
    grid-column: span 4;
  }

  .gallery__item--wide {
    grid-column: span 8;
  }

  .gallery__item--tall {
    grid-column: span 4;
  }
}

/* Card */
.gallery__item {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);

  /* default ratio */
  aspect-ratio: 4 / 3;
}

/* Variants */
.gallery__item--wide {
  aspect-ratio: 16 / 9;
}

.gallery__item--tall {
  aspect-ratio: 3 / 4;
}

/* Image fill */
.gallery__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 600ms ease, filter 600ms ease;
}

/* Premium hover */
.gallery__item:hover img {
  transform: scale(1.06);
  filter: brightness(1.03);
}

.cart {
  display: grid;
  gap: 12px;
}

.cart__row {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(167, 175, 188, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.cart__thumb {
  width: 84px;
  height: 84px;
  border-radius: 16px;
  border: 1px solid rgba(167, 175, 188, 0.12);
  background: linear-gradient(135deg, rgba(199, 164, 107, 0.16), rgba(255, 255, 255, 0.02));
}

.cart__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.cart__name {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin: 0;
}

.cart__meta {
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
}

.cart__price {
  font-weight: 900;
  color: var(--accent);
  white-space: nowrap;
  margin-top: 2px;
}

.cart__bottom {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.cart__qty {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(167, 175, 188, 0.14);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.cart__qty-btn {
  border: 0;
  background: transparent;
  color: var(--text);
  width: 40px;
  height: 38px;
  cursor: pointer;
  font-weight: 900;
  transition: background .18s ease;
}

.cart__qty-btn:hover {
  background: rgba(167, 175, 188, 0.10);
}

.cart__qty-input {
  width: 44px;
  height: 38px;
  border: 0;
  outline: none;
  text-align: center;
  background: transparent;
  color: var(--text);
  font-weight: 800;
}

.cart__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cart__link {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(167, 175, 188, 0.14);
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.cart__link:hover {
  color: var(--text);
  background: rgba(167, 175, 188, 0.10);
  border-color: rgba(199, 164, 107, 0.35);
}

.cart__footer {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
}

.summary {
  margin-top: 14px;
  border-radius: 18px;
  border: 1px solid rgba(167, 175, 188, 0.12);
  background: rgba(255, 255, 255, 0.02);
  padding: 14px;
  display: grid;
  gap: 10px;
}

.summary__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.summary__row--total {
  padding-top: 10px;
  border-top: 1px solid rgba(167, 175, 188, 0.12);
  color: var(--text);
  font-weight: 900;
}

.summary__label {
  letter-spacing: .02em;
}

.summary__value {
  color: var(--text);
  font-weight: 800;
}

@media (max-width: 560px) {
  .cart__row {
    grid-template-columns: 1fr;
  }

  .cart__thumb {
    width: 100%;
    height: 160px;
  }

  .cart__price {
    margin-top: 0;
  }
}

/* ============================
   Admin Overview (overview.php)
   ============================ */

/* Header boven elke admin panel (titel + acties) */
.admin-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.admin-head__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Admin table-like list */
.admin-table {
  display: grid;
  gap: 10px;
}

/* Row grid: 4 kolommen */
.admin-table__row {
  display: grid;
  grid-template-columns: 130px 1fr 1.2fr 160px;
  gap: 12px;
  align-items: center;

  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.02);

  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

/* Hover */
.admin-table__row:hover {
  background: rgba(167, 175, 188, 0.10);
  border-color: rgba(199, 164, 107, 0.22);
  transform: translateY(-1px);
}

/* Header row */
.admin-table__row--head {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(167, 175, 188, 0.14);
  transform: none;
}

.admin-table__row--head:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(167, 175, 188, 0.14);
  transform: none;
}

/* Header text styling */
.admin-table__row--head>div {
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(167, 175, 188, 0.95);
  font-weight: 800;
}

/* Cell text styling */
.admin-table__row>div {
  color: var(--text);
  font-size: 14px;
}

.admin-table__row>div:nth-child(3) {
  color: var(--muted);
  /* onderwerp iets zachter */
}

/* Make last column align right for status */
.admin-table__row>div:last-child {
  display: flex;
  justify-content: flex-end;
}

/* Status tags (re-using your .tag class, but making it admin-friendly here) */
.admin-table .tag {
  padding: 7px 12px;
  font-size: 12px;
  letter-spacing: 0.06em;
  border-radius: 999px;
  border: 1px solid rgba(199, 164, 107, 0.25);
  background: rgba(199, 164, 107, 0.10);
  color: var(--text);
  text-transform: uppercase;
  white-space: nowrap;
}

/* Optional: variants by adding extra classes later:
   <span class="tag tag--muted">Gelezen</span>
   <span class="tag tag--progress">In behandeling</span>
   <span class="tag tag--done">Klaar</span>
*/
.admin-table .tag.tag--muted {
  border-color: rgba(167, 175, 188, 0.18);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
}

.admin-table .tag.tag--progress {
  border-color: rgba(167, 175, 188, 0.26);
  background: rgba(167, 175, 188, 0.10);
  color: var(--text);
}

.admin-table .tag.tag--done {
  border-color: rgba(120, 210, 160, 0.35);
  background: rgba(120, 210, 160, 0.12);
  color: var(--text);
}

/* Responsive: compacter op small screens */
@media (max-width: 560px) {
  .admin-head {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-head__actions {
    justify-content: flex-start;
  }

  .admin-table__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .admin-table__row>div:last-child {
    justify-content: flex-start;
  }

  .admin-table__row--head {
    display: none;
    /* header verbergen op mobiel voor rust */
  }
}

/* Extra: beter contrast voor panel text binnen admin */
.admin-overview .panel__text {
  color: var(--muted);
}

.bottom-button {
  height: 2.25rem;               
  width: 12rem;                   
  background-color: rgba(168, 143, 123, 0.5); 
  border-radius: 0.75rem;          
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 1.5rem;                 
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;            
  z-index: 50;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bottom-button:hover {
  background-color: rgba(168, 143, 123, 0.8);
  transform: translateX(-50%) scale(1.05);
}