/* === Font Import (Nunito + Playfair Display a könyves hatáshoz) === */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@500;700;800&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* === Stabil méretezési alap === */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* === Globális háttér egységesítés === */
body {
  background: radial-gradient(140% 120% at 50% -40%, #fff, #fbeac2 45%, #f5dfb0) !important;
  margin: 0;
  overflow-x: hidden;
}

.menu-portfolio,
.site-bg,
.main-bg,
.container,
.container-fluid {
  background: transparent !important;
}

/* ===== Menüpaletta, háttér, font ===== */
.menu-portfolio {
  --accent: #c8a96a;
  --accent-ink: #8f7745;
  --ink: #21322a;
  --text: #34404a;
  --muted: #6e7a84;
  --paper-1: #fff;
  --paper-2: #fbfaf8;

  /* erősebb árnyék a lebegő hatásért */
  --shadow-outer: 0 26px 60px rgba(0, 0, 0, 0.14);
  --shadow-page: 0 16px 36px rgba(0, 0, 0, 0.15);

  --radius-book: 18px;
  --radius-page: 12px;

  font-family:
    Nunito,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
}

/* ===== Modern Menüfejléc ===== */
.menu-header {
  background: none;
  text-align: center;
  margin-bottom: 2.5rem;
}

.menu-icon {
  font-size: 2.8rem;
  display: inline-block;
  margin-bottom: 1.2rem;
  color: #f5a623;
}

.menu-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: rgb(138, 90, 43);
  margin-bottom: 0.3rem;
  letter-spacing: 1px;
  position: relative;
}

.menu-divider {
  width: 76px;
  height: 4px;
  background: linear-gradient(90deg, #f2cb87, #f5a623, #f2cb87);
  margin: 0.85rem auto 1.1rem;
  border-radius: 2px;
  opacity: 0.22;
}

.menu-subtitle {
  font-size: 1.17rem;
  color: #847142;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.menu-intro {
  font-size: 1.07rem;
  color: #625a48;
  margin-bottom: 0.1rem;
  font-style: italic;
}

/* ----- KERET ----- */
.menu-portfolio .wrapper {
  position: relative;
  max-width: 70rem;
  margin: 0 auto;
  padding: 2.2rem 1.5rem 2.8rem;
  perspective: 2000px;
}

/* ----- KÖNYVTEST ----- */
.menu-portfolio .book {
  position: relative;
  min-height: 38rem;
  max-width: 70rem;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-book);
  box-shadow: var(--shadow-outer);
  background: radial-gradient(120% 120% at 50% -10%, #fff 0%, #f7f3ea 80%);
  overflow: hidden;
}

.menu-portfolio .book::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  transform: translateX(-2px);
  background: linear-gradient(
    180deg,
    rgba(198, 169, 106, 0.12) 0%,
    rgba(0, 0, 0, 0.2) 35%,
    rgba(0, 0, 0, 0.12) 55%,
    rgba(210, 169, 60, 0.16) 87%,
    rgba(0, 0, 0, 0.18) 100%
  );
  opacity: 0.2;
  pointer-events: none;
  z-index: 5;
}

.menu-portfolio .book::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-0.5px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.05) 100%);
  opacity: 0.2;
  pointer-events: none;
  z-index: 4;
}

/* ----- OLDALAK ----- */
.menu-portfolio .book-page,
.menu-portfolio .page-front,
.menu-portfolio .page-back {
  background:
    linear-gradient(90deg, rgba(198, 169, 106, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(198, 169, 106, 0.02) 1px, transparent 1px),
    linear-gradient(180deg, var(--paper-1), var(--paper-2));
  background-size:
    20px 20px,
    20px 20px,
    100% 100%;
  border-radius: var(--radius-page);
  box-shadow: var(--shadow-page);
  border: 2px solid #f3e4c2;
}

.menu-portfolio .book-page {
  position: absolute;
  width: 50%;
  height: 100%;
  padding: 0;
  aspect-ratio: 1 / 1.5;
}

.menu-portfolio .page-left {
  left: 0;
}

.menu-portfolio .page-right {
  right: 0;
  transform-style: preserve-3d;
  transform-origin: left;
  transition: transform 900ms cubic-bezier(0.45, 0.04, 0.24, 1);
}

.menu-portfolio .page-right.turn {
  transform: rotateY(-180deg);
}

/* Oldal front/back felület */
.menu-portfolio .page-front,
.menu-portfolio .page-back {
  position: absolute;
  inset: 0;
  padding: 1.25rem 1.7rem 4.5rem; /* hely az alsó gomboknak */
  display: flex;
  flex-direction: column;
  backface-visibility: hidden;
  z-index: 2;
  box-shadow: none;
  overflow: visible;
}

.menu-portfolio .page-front {
  transform: rotateY(0deg) translateZ(1px);
}

.menu-portfolio .page-back {
  transform: rotateY(180deg) translateZ(1px);
}

/* Lap peremek belső árnyéka */
.menu-portfolio .page-front::before,
.menu-portfolio .page-back::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-page);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.85),
    inset 0 0 0 2px rgba(208, 185, 112, 0.12);
  pointer-events: none;
}

/* FEJLÉC TIPÓ */
.menu-portfolio .title {
  text-align: center;
  font-weight: 800;
  font-size: 2.08rem;
  letter-spacing: 0.03em;
  color: var(--accent-ink);
  margin-top: 0.5em;
  margin-bottom: 1.12em;
}

/* ===== GRID ===== */
.menu-portfolio .menu-items-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem 1.15rem;
  flex: 1 1 auto;
  min-height: 0;
  padding-bottom: 3.5rem;
}

/* Tétel */
.menu-portfolio .menu-item {
  padding: 0.52rem 0 0.65rem;
  border-bottom: 1px dashed rgba(178, 169, 106, 0.07);
  margin: 0 0 1.14rem;
}

.menu-portfolio .menu-item:last-child {
  border-bottom: none;
}

/* Vezetőpontozás */
.menu-portfolio .mi-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  column-gap: 0.8rem;
  position: relative;
}

.menu-portfolio .mi-head::before {
  content: '';
  grid-column: 1 / -1;
  height: 1px;
  background-image: radial-gradient(circle, currentcolor 1px, transparent 1.5px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  opacity: 0.32;
  align-self: center;
  margin: 0 0.35rem;
  order: 0;
}

.menu-portfolio .mi-name {
  font-weight: 800;
  font-size: 1.09rem;
  color: var(--text);
  margin: 0;
  background: var(--paper-1);
  z-index: 1;
  padding-right: 0.5rem;
}

.menu-portfolio .mi-price {
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  color: var(--accent-ink);
  background: #fff6e5;
  border-radius: 7px;
  white-space: nowrap;
  padding-left: 0.6rem;
  padding-right: 0.4rem;
  font-size: 1.02rem;
  box-shadow: 0 1px 9px rgba(198, 169, 106, 0.09);
}

/* Leírás + tagek */
.menu-portfolio .mi-desc {
  color: var(--muted);
  margin-top: 0.29rem;
  font-size: 0.95rem;
  line-height: 1.5;
  display: block;
  white-space: pre-line;
  overflow: visible;
}

.menu-portfolio .mi-tags {
  margin: 0.26rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.24rem 0.43rem;
}

.menu-portfolio .mi-tags li {
  font-size: 0.81rem;
  color: #a18451;
  background: #fcf6e1;
  border: 1px solid #e8d4ad;
  border-radius: 999px;
  padding: 0.12rem 0.67rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
  box-shadow: 0 0.5px 5px rgba(198, 162, 99, 0.09);
}

/* Allergének */
.menu-portfolio .mi-tags.allergens li.allergen {
  background: #dc3545;
  color: #fff;
  border: none;
  font-size: 0.86em;
  padding: 0.11rem 0.66rem;
  margin-right: 0.22rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ----------------------------------------------------------
   GENERIKUS NAVIGÁCIÓS LOGIKA
   ---------------------------------------------------------- */
.menu-portfolio .nextprev-btn {
  position: absolute;
  bottom: 0.1rem;
  width: 2.42rem;
  height: 2.42rem;
  font-size: 1.57rem;
  color: var(--accent-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.21s cubic-bezier(0.48, 0.13, 0.35, 1);
  cursor: pointer;
  z-index: 20;
  background: rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  backdrop-filter: blur(6px);
  border: 1.3px solid #ead9b7;
}

.menu-portfolio .nextprev-btn:hover {
  color: var(--accent);
  background: #fff6e5;
  transform: scale(1.08);
}

/* --- GOMB POZÍCIÓK DESKTOPON --- */
.menu-portfolio .page-front .nextprev-btn,
.menu-portfolio .page-right .page-front .btn-next {
  right: 1rem !important;
  left: auto !important;
}

.menu-portfolio .page-back .nextprev-btn,
.menu-portfolio .page-right.turn .page-back .btn-back {
  left: 1rem !important;
  right: auto !important;
}

.menu-portfolio .page-left .nextprev-btn {
  left: 1rem !important;
  right: auto !important;
}

/* ----- Oldalszámok – MINDIG KÖZÉPEN ----- */
.menu-portfolio .number-page {
  font-size: 1.04rem;
  color: var(--accent-ink);
  background: #fae7bc;
  border-radius: 7px;
  padding: 0.13rem 0.7rem;
  font-weight: 700;
  box-shadow: 0 1px 7px rgba(226, 180, 115, 0.09);
  position: absolute;
  bottom: 0.1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

/* ----- PÖTTY NAVIGÁCIÓ ----- */
.menu-portfolio .book-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 0.33rem;
}

.menu-portfolio .book-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #e6d2a9;
  transition:
    background 0.2s,
    transform 0.2s,
    border-color 0.2s;
  cursor: pointer;
}

.menu-portfolio .book-dots .dot.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.15);
}

/* ----- Profile oldal ----- */
.menu-portfolio .profile-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius-page);
  background: linear-gradient(180deg, #fffbe8 60%, #fbfaf8 100%);
}

.menu-portfolio .profile-page h1 {
  font-size: 2.5rem;
  margin-bottom: 1.11rem;
  color: var(--accent-ink);
}

.menu-portfolio .profile-page p {
  font-size: 1.2rem;
  color: #a08e66;
  max-width: 80%;
  line-height: 1.5;
}

/* ===== LOCKED ÁLLAPOT ===== */
.book--locked {
  pointer-events: none;
  filter: grayscale(0.2) blur(1px);
  position: relative;
}

.book__lockBadge {
  display: none;
  position: absolute;
  inset: 0;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  opacity: 0.9;
}

.book--locked .book__lockBadge {
  display: flex;
}

.menu-portfolio.is-locked .cover,
.menu-portfolio.is-locked .book {
  filter: blur(14px) brightness(0.85) saturate(0.9);
  pointer-events: none !important;
  user-select: none !important;
}

.book-lock-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.28));
  z-index: 999;
}

.book-lock-overlay .blo-card {
  max-width: 720px;
  width: 100%;
  text-align: center;
  padding: 28px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
}

.book-lock-overlay .blo-card h3 {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: #2b2b2b;
}

.book-lock-overlay .blo-card p {
  margin: 0;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: #444;
}

@keyframes book-shake {
  10%, 90% { transform: translateX(-1px); }
  20%, 80% { transform: translateX(2px); }
  30%, 50%, 70% { transform: translateX(-4px); }
  40%, 60% { transform: translateX(4px); }
}

.menu-portfolio .book.shake {
  animation: book-shake 0.4s both;
}

/* =========================================================
   KÖSZÖNŐ / ZÁRÓ OLDAL STÍLUSA (ÚJ KIEGÉSZÍTÉS)
   ======================================================= */
.menu-portfolio .thank-you-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 2rem;
  border: 1px solid rgba(198, 169, 106, 0.3);
  margin: 1rem;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,246,229,0.2) 100%);
  box-shadow: inset 0 0 20px rgba(198, 169, 106, 0.1);
}

.menu-portfolio .thank-you-container h3 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-ink);
  margin-bottom: 1rem;
  line-height: 1.3;
  font-style: italic;
}

.menu-portfolio .thank-you-container p {
  font-family: Nunito, sans-serif;
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.menu-portfolio .thank-you-container::after {
  content: "❦";
  font-size: 1.5rem;
  color: var(--accent);
  opacity: 0.6;
  margin-bottom: 1.5rem;
  display: block;
}

.menu-portfolio .btn-custom-restart {
  font-family: Nunito, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-ink);
  background: transparent;
  border: 2px solid var(--accent);
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(198, 169, 106, 0.15);
  margin-top: auto;
  margin-bottom: 1rem;
}

.menu-portfolio .btn-custom-restart:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(198, 169, 106, 0.3);
}

.menu-portfolio .btn-custom-restart:active {
  transform: translateY(0);
}

/* =========================================================
   PDF-MÓD KIEGÉSZÍTÉSEK
   ======================================================= */
.menu-portfolio.has-pdf .menu-items-grid {
  display: none;
}

.menu-portfolio.has-pdf .page-front,
.menu-portfolio.has-pdf .page-back {
  padding: 0;
}

.menu-portfolio.has-pdf .menu-book-page-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-page);
  display: block;
}

.menu-portfolio.has-pdf .number-page {
  bottom: -0.1rem;
  left: 50%;
  transform: translateX(-50%);
}

.menu-portfolio.has-pdf .nextprev-btn {
  bottom: 0.1rem;
}

.menu-portfolio.has-pdf .page-back.blank-page {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b59a64;
  font-size: 1rem;
  font-weight: 600;
  background: radial-gradient(circle at top, #fffaf0, #fbf4e4);
}

.menu-portfolio.has-pdf .page-back.blank-page::before {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.9),
    inset 0 0 0 2px rgba(208, 185, 112, 0.08);
}

/* ===== MEDIA QUERIES ===== */

/* ----- TABLET (iPad) – 1 oszlop + kisebb padding ----- */
@media (max-width: 1024px) {
  .menu-portfolio .wrapper {
    padding: 1.9rem 1.25rem 2.4rem;
  }

  .menu-portfolio .menu-items-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding-bottom: 3.2rem;
  }

  .menu-portfolio .title {
    font-size: 1.9rem;
    margin-bottom: 0.96rem;
  }

  .menu-portfolio .mi-name {
    font-size: 1.03rem;
  }

  .menu-portfolio .mi-desc {
    font-size: 0.92rem;
  }
}

/* ----- MOBIL NÉZET ----- */
@media (max-width: 768px) {
  .menu-header {
    margin-bottom: 2.1rem;
  }

  .menu-title {
    font-size: 2rem;
  }

  .menu-subtitle {
    font-size: 1.08rem;
  }

  .menu-intro {
    font-size: 1.01rem;
  }

  .menu-portfolio .wrapper {
    max-width: 100%;
    padding: 1.6rem 0.9rem 2rem;
  }

  .menu-portfolio .book {
    min-height: 28rem;
    width: 100%;
    aspect-ratio: auto;
    overflow: hidden;
  }

  .menu-portfolio .book-page {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
  }

  /* bal oldal és gerinc elrejtése mobilon */
  .menu-portfolio .page-left {
    display: none;
  }

  .menu-portfolio .book::before,
  .menu-portfolio .book::after {
    display: none;
  }

  .menu-portfolio .page-front,
  .menu-portfolio .page-back {
    padding: 0.85rem 0.9rem 3.4rem;
  }

  .menu-portfolio .menu-items-grid {
    grid-template-columns: 1fr;
    gap: 0.74rem;
    padding-bottom: 3.2rem;
  }

  .menu-portfolio .title {
    font-size: 1.36rem;
    margin: 0.24rem 0 0.61rem;
  }

  .menu-portfolio .mi-name {
    font-size: 1.01rem;
  }

  .menu-portfolio .mi-desc {
    font-size: 0.9rem;
  }

  .menu-portfolio .number-page {
    font-size: 0.87rem;
    bottom: 0.1rem;
  }

  .menu-portfolio .nextprev-btn {
    width: 1.73rem;
    height: 1.73rem;
    font-size: 1.15rem;
    bottom: 0.1rem;
  }

  .menu-portfolio .nextprev-btn.btn-next {
    right: 0.51rem !important;
    left: auto !important;
  }

  .menu-portfolio .nextprev-btn.btn-back {
    left: 0.51rem !important;
    right: auto !important;
  }

  .menu-portfolio .profile-page {
    padding: 1.7rem;
  }

  .menu-portfolio .profile-page h1 {
    font-size: 2.2rem;
  }

  .menu-portfolio .profile-page p {
    font-size: 1.08rem;
  }

  .book-lock-overlay {
    padding: 20px;
  }

  .book-lock-overlay .blo-card {
    padding: 24px 20px;
  }

  .menu-portfolio.has-pdf .book {
    min-height: 24rem;
  }

  /* Thank You Page Mobil */
  .menu-portfolio .thank-you-container {
    margin: 0.5rem;
    padding: 1.5rem;
    border-width: 1px;
  }

  .menu-portfolio .thank-you-container h3 {
    font-size: 1.5rem;
  }

  .menu-portfolio .thank-you-container p {
    font-size: 1rem;
  }

  .menu-portfolio .btn-custom-restart {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }
}

/* Extra kicsi mobil */
@media (max-width: 480px) {
  .menu-header {
    margin-bottom: 1.8rem;
  }

  .menu-icon {
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }

  .menu-title {
    font-size: 1.8rem;
  }

  .menu-divider {
    width: 60px;
    height: 3px;
    margin: 0.7rem auto 0.9rem;
  }

  .menu-subtitle {
    font-size: 1.02rem;
  }

  .menu-intro {
    font-size: 0.97rem;
  }

  .menu-portfolio .wrapper {
    padding: 1.4rem 0.7rem 1.8rem;
  }

  .menu-portfolio .book {
    min-height: 22rem;
  }

  .menu-portfolio .page-front,
  .menu-portfolio .page-back {
    padding: 0.78rem 0.78rem 3.1rem;
  }

  .menu-portfolio .title {
    font-size: 1.26rem;
    margin-bottom: 0.5rem;
  }

  .menu-portfolio .mi-name {
    font-size: 0.97rem;
  }

  .menu-portfolio .mi-desc {
    font-size: 0.86rem;
  }

  .menu-portfolio .mi-tags li {
    font-size: 0.78rem;
    padding: 0.11rem 0.6rem;
  }

  .menu-portfolio .number-page {
    font-size: 0.8rem;
  }

  .menu-portfolio .nextprev-btn {
    width: 1.55rem;
    height: 1.55rem;
    font-size: 1.03rem;
  }

  .menu-portfolio .profile-page {
    padding: 1.4rem;
  }

  .menu-portfolio .profile-page h1 {
    font-size: 2rem;
  }

  .menu-portfolio .profile-page p {
    font-size: 1.02rem;
  }

  .book-lock-overlay {
    padding: 18px;
  }

  .book-lock-overlay .blo-card {
    padding: 22px 18px;
  }
}

/* ----- SÖTÉT MÓD (Teljes könyv) ----- */
@media (prefers-color-scheme: dark) {
  .book-lock-overlay .blo-card {
    background: rgba(26, 26, 26, 0.92);
    color: #eee;
  }

  .book-lock-overlay .blo-card h3 {
    color: #fff;
  }

  .book-lock-overlay .blo-card p {
    color: #ddd;
  }

  .menu-portfolio {
    --paper-1: #292823;
    --paper-2: #35322c;
    --ink: #e0e0ce;
    --text: #cbc5ac;
    --muted: #a79b7d;
    --shadow-outer: 0 30px 70px rgba(0, 0, 0, 0.4);
    --shadow-page: 0 18px 40px rgba(0, 0, 0, 0.28);
  }

  .menu-portfolio .book {
    background: radial-gradient(120% 120% at 50% -10%, #35322c 0%, #292823 80%);
  }

  .menu-portfolio .page-front,
  .menu-portfolio .page-back {
    background: linear-gradient(180deg, var(--paper-1), var(--paper-2));
    background-size: 100% 100%;
    border: 2px solid #362d19;
  }

  .menu-portfolio .profile-page {
    background: linear-gradient(180deg, #332f22 50%, #292823 100%);
  }

  .menu-portfolio .nextprev-btn {
    background: rgba(56, 47, 33, 0.83);
    color: #ecdcb0;
    border-color: #bfa76f;
  }
  
  .menu-portfolio.has-pdf .menu-book-page-img {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
  }

  /* Thank You Page Dark Mode */
  .menu-portfolio .thank-you-container {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
  }
  
  .menu-portfolio .thank-you-container h3 {
    color: #e0d5b9;
  }
  
  .menu-portfolio .thank-you-container p {
    color: #a79b7d;
  }
  
  .menu-portfolio .btn-custom-restart {
    color: #e0d5b9;
    border-color: #8f7745;
  }
  
  .menu-portfolio .btn-custom-restart:hover {
    background: #8f7745;
    color: #fff;
  }
}
