
/* ================= PCW NOTARY GLOBAL STYLES ================= */
/* ================================
   CUSTOM FONTS (2-FONT SYSTEM)
================================ */

/* Arima Madurai Bold (body + UI font) */
@font-face {
  font-family: "ArimaMadurai";
  src: url("../fonts/arima-madurai.bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

/* Angelina Script (headings + script accents) */
@font-face {
  font-family: "Angelina";
  src: url("../fonts/Free Version Angelina.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}


:root {
  --deep-plum: #431d33;
  --soft-sand: #c9b3a8;
  --white: #ffffff;
  --radius-lg: 1.25rem;
}

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

body {
  font-family: "ArimaMadurai", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: var(--soft-sand);
  background-image: url("../img/pattern.png");
  background-repeat: repeat;
  color: var(--deep-plum);
  min-height: 100vh;
}


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

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: "Angelina", cursive;
  font-weight: normal;
}

/* Accent script text */
.script {
  font-family: "Angelina", cursive;
}

/* ============= LAYOUT ============= */

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: rgba(201, 179, 168, 0.9); /* overlay for readability */
}

.site-header {
  background: var(--deep-plum);
  color: var(--white);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

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

.brand-mark {
  font-family: "AdoretLoves", "Angelina", cursive;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
}

.brand-sub {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.nav-links {
  display: flex;
  gap: 1rem;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  transition: background 0.2s;
}

.nav-links a:hover,
.nav-links a:focus {
  background: rgba(255, 255, 255, 0.16);
}

.site-main {
  flex: 1;
  padding: 2rem 1.5rem 3rem;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.site-footer {
  background: var(--deep-plum);
  color: var(--white);
  text-align: center;
  font-size: 0.8rem;
  padding: 1rem;
}

/* Cards & layout helpers */

.card {
  background: rgba(67, 29, 51, 0.92);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.6rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}

.card + .card {
  margin-top: 1.6rem;
}

.card-header {
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.card-subtitle {
  font-size: 0.9rem;
  opacity: 0.9;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.75rem;
}

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

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .site-main {
    padding: 1.5rem 1rem 2.5rem;
  }
}

/* Medium card size for stacked left-column cards */
.card-medium {
  max-width: 450px;        /* adjust to your exact preferred size */
  width: 100%;
  margin: 0 auto;          /* centers the cards inside the left column */
}


/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  background: var(--white);
  color: var(--deep-plum);
  transition: transform 0.1s ease, box-shadow 0.1s ease, opacity 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 7px 16px rgba(0, 0, 0, 0.25);
  opacity: 0.95;
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* Forms */

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

label {
  font-size: 0.9rem;
  font-weight: 500;
}

input,
select,
textarea {
  border-radius: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 0.55rem 0.7rem;
  font-size: 0.95rem;
  background: rgba(201, 179, 168, 0.2);
  color: var(--white);
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--white);
}

textarea {
  min-height: 4rem;
  resize: vertical;
}

/* Tables */

.table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-size: 0.95rem;
}

.table thead {
  background: rgba(201, 179, 168, 0.26);
}

.table th,
.table td {
  padding: 0.6rem 0.75rem;
}

.table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.04);
}

.table-actions {
  text-align: right;
}

/* Calendar */

.calendar-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.calendar-title {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.calendar-nav button {
  background: transparent;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
  padding: 0.25rem 0.6rem;
  cursor: pointer;
  font-size: 0.8rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
  font-size: 0.82rem;
}

.calendar-day-name {
  text-align: center;
  font-weight: 600;
  opacity: 0.9;
}

.calendar-cell {
  aspect-ratio: 1 / 1;
  border-radius: 0.5rem;
  text-align: center;
  padding-top: 0.3rem;
  cursor: pointer;
  background: rgba(201, 179, 168, 0.15);
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s, opacity 0.15s;
}

.calendar-cell span {
  display: block;
}

/* ð¹ BLANK CELLS (from previous/next month) â fully blacked-out look */
.calendar-cell.empty {
  position: relative;
  cursor: default;
  pointer-events: none; /* not clickable */
}

/* Transparent black overlay on the blank cells */
.calendar-cell.empty::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* transparent black overlay */
  border-radius: 0.5rem;          /* match the cell shape */
  z-index: 1;
}

/* ð¹ Real past days in the current month */
.calendar-cell.disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Services list */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.service-chip {
  background: rgba(201, 179, 168, 0.2);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.9rem;
}

/* Author page */

.author-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.author-photo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.author-photo {
  max-width: 480px;          /* make the image larger (change to 520 / 560 if you want even bigger) */
  margin: 0;                 /* no extra margin around the image wrapper */
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.55);
}

.author-photo img {
  width: 100%;
  display: block;
}

.author-photo img {
  width: 100%;
  display: block;
}

@media (max-width: 900px) {
  .author-layout {
    grid-template-columns: 1fr;
  }
}

/* Badges */

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(201, 179, 168, 0.3);
}

/* Cart */

.cart-summary {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cart-empty {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-top: 0.6rem;
}

.text-muted {
  opacity: 0.8;
  font-size: 0.9rem;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }


/* ============================
   3D SPINNING COIN ANIMATION (LARGER VERSION)
   ============================ */

.coin-container {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1400px;
  margin-bottom: 2rem;
}

.coin {
  position: relative;
  width: 280px;   /* Bigger coin */
  height: 280px;  /* Bigger coin */
  transform-style: preserve-3d;
  animation: coinSpin 3s linear infinite;
}

.coin-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.coin-face img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Front side */
.coin-front {
  transform: rotateY(0deg);
}

/* Back side */
.coin-back {
  transform: rotateY(180deg);
}

/* Spin animation */
@keyframes coinSpin {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}


/* Mobile: spin logo smoothly (no thin-line effect) */
@media (max-width: 768px) {
  .coin { 
    animation: coinSpin 10s linear infinite !important;
    transform-style: preserve-3d;
    width: 200px !important;
    height: 200px !important;
  }
}

/* Replace brand with icon navigation inside header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--deep-plum);
  padding: 1rem 2rem;
  color: var(--white);
}

.topbar-left.iconbar {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.topbar-left.iconbar a svg {
  color: var(--white);
  opacity: 0.85;
  transition: opacity .2s ease;
}

.topbar-left.iconbar a:hover svg {
  opacity: 1;
}


/* Restore previous exact header height */
.site-header {
  min-height: 110px; /* Exact original header height */
  padding-top: 1rem; 
  padding-bottom: 1rem;
}

/* Keep icons left aligned (same as old brand alignment) */
.topbar-left.iconbar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.75rem;
}

.topbar-left.iconbar svg {
  width: 22px;
  height: 22px;
}

/* ============================================
   3D BOUNCE + GLOW *SQUARE* NAV BUTTONS
============================================ */

.nav-links {
  display: flex;
  gap: 1rem;
  font-size: 0.95rem;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;

  /* SQUARE BUTTON SHAPE */
  padding: 0.75rem 1.2rem;
  border-radius: 12px;  /* â CHANGE THIS VALUE: 0 = perfect square, 8â12 = soft corners */

  background: linear-gradient(145deg, #ffffff, #c9b3a8);
  color: #431d33;
  font-weight: 600;
  text-decoration: none;

  /* 3D DEPTH */
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.45);

  /* ANIMATION SMOOTHING */
  transition:
    transform 0.18s cubic-bezier(.34,1.56,.64,1),
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

/* HOVER â lift + glow */
.nav-links a:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 12px rgba(255, 255, 255, 0.4),
    0 5px 0 rgba(0, 0, 0, 0.45);
  filter: brightness(1.1);
}

/* ACTIVE â press down */
.nav-links a:active {
  transform: translateY(2px);
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.45);
  filter: brightness(0.95);
}

@media (max-width: 600px) {
  .nav-links a {
    padding: 1rem;
    font-size: 1rem;
  }
}


/* ============================================
   GLOBAL 3D BUTTONS (MATCH NAVIGATION STYLE)
============================================ */

.btn,
.btn-secondary,
button,
input[type="button"],
input[type="submit"],
.stripe-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.75rem 1.2rem;

  /* MATCH NAV BUTTON CURVE */
  border-radius: 12px;

  background: linear-gradient(145deg, #ffffff, #c9b3a8);
  color: #431d33;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;

  /* 3D DEPTH */
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.45);

  /* Smooth animation */
  transition:
    transform 0.18s cubic-bezier(.34,1.56,.64,1),
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

/* Hover â lift & glow */
.btn:hover,
.btn-secondary:hover,
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
.stripe-button:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 12px rgba(255, 255, 255, 0.4),
    0 5px 0 rgba(0, 0, 0, 0.45);
  filter: brightness(1.1);
}

/* Active (tap/click) â press down */
.btn:active,
.btn-secondary:active,
button:active,
input[type="button"]:active,
input[type="submit"]:active,
.stripe-button:active {
  transform: translateY(2px);
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.45);
  filter: brightness(0.95);
}

/* Make text & image share the same padding naturally */
.author-layout {
  padding: 2rem; /* same padding for both columns */
}

/* Image column styles */
.author-photo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Size and shape of the image */
.author-photo-container img {
  width: 100%;
  max-width: 600px; /* adjust larger if you want */
  height: auto;
  display: block;
  border-radius: 2rem;
}

/* ============================
   CALENDAR DAY COLOR STYLING
   ============================ */

/* Default AVAILABLE day */
.calendar-cell {
  background-color: #c9b3a8 !important;
  color: #431d33 !important;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover effect */
.calendar-cell:hover:not(.disabled):not(.selected) {
  transform: translateY(-3px);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.45);
  filter: brightness(1.1);
}

/* DISABLED days (past dates) */
..calendar-cell.disabled,
.calendar-cell.unavailable,
.calendar-cell.blocked,
.calendar-cell.past,
.calendar-cell[disabled] {
  background-color: #735064 !important;
  color: #d9cbd3 !important;
  opacity: 0.4 !important;
  box-shadow: none !important;
  transform: none !important;
}

.calendar-cell.disabled {
  background-color: #735064 !important;
  pointer-events: none !important;
}


/* SELECTED day */
.calendar-cell.selected {
  background-color: #431d33 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.5);
  transform: translateY(0);
}

/* DISABLED / BLACKED-OUT days */
.calendar-cell.empty,
.calendar-cell.disabled,
.calendar-cell.unavailable,
.calendar-cell.blocked,
.calendar-cell.past,
.calendar-cell[disabled] {
  background-color: #735064 !important;          /* deep muted plum */
  color: #d9cbd3 !important;
  opacity: 0.4 !important;
  box-shadow: none !important;
  transform: none !important;
}


/* FINAL FORCE FIX â remove space between spinning logo and text */

/* Target only the LEFT column (logo + text) */
.grid-2 .card:first-child {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Shrink the coin container footprint */
.grid-2 .card:first-child .coin-container {
    margin: 0 !important;
    padding: 0 !important;
    height: auto !important;
}

/* Reduce height of the coin animation wrapper */
.grid-2 .card:first-child .coin {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Remove header spacing above title */
.grid-2 .card:first-child .card-header {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Pull the header upward closer to the coin */
.grid-2 .card:first-child .card-header h1,
.grid-2 .card:first-child .card-header p {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* =======================================
   ON-BRAND SLIDE-UP TOAST NOTIFICATION
======================================= */

.booking-toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 340px;
  padding: 1rem 1.2rem;

  background: linear-gradient(145deg, #ffffff, #c9b3a8);
  color: #431d33;
  border-radius: 14px;
  font-family: "ArimaMadurai", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;

  box-shadow: 0 6px 0 rgba(0,0,0,0.45),
              0 8px 20px rgba(0,0,0,0.35);

  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  z-index: 99999;

  transition: opacity .25s ease-out,
              transform .25s ease-out;
}

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

.booking-toast .highlight {
  color: #431d33;
  font-weight: 800;
}

/* Mobile */
@media (max-width: 768px) {
  .booking-toast {
    left: 50%;
    right: auto;
    transform: translate(-50%, 20px);
  }
  .booking-toast.visible {
    transform: translate(-50%, 0);
  }
}

 /* === Booking toast (matches PCW theme) === */
.booking-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(120%);
  background: #431d33;         /* deep plum */
  color: #fbe9df;              /* light blush text */
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  font-size: 0.95rem;
  line-height: 1.4;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.booking-toast-text strong {
  color: #ffd7b8;              /* soft highlight */
}

.booking-toast.is-visible {
  transform: translateX(-50%) translateY(0%);
  opacity: 1;
}

/* ============================
   BOOKING MODAL (POPUP)
   ============================ */

.booking-modal-overlay {
  position: fixed;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  background: rgba(0, 0, 0, 0.55);  /* dark overlay */
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease-out;

  z-index: 9999;
}

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

.booking-modal-card {
  background: #431d33;           /* deep plum */
  color: #fbe9df;                /* light text */
  max-width: 460px;
  width: 90%;
  padding: 1.75rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  text-align: center;
  font-family: "ArimaMadurai", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.booking-modal-title {
  font-family: "Angelina", cursive;
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.booking-modal-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

.booking-modal-highlight {
  color: #ffd7b8;
  font-weight: 700;
}

.booking-modal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

/* Link-style buttons inside the modal */
.booking-modal-actions .btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;

  background: linear-gradient(145deg, #ffffff, #c9b3a8);
  color: #431d33;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.45);

  transition:
    transform 0.18s cubic-bezier(.34,1.56,.64,1),
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

.booking-modal-actions .btn-link:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 12px rgba(255, 255, 255, 0.4),
    0 5px 0 rgba(0, 0, 0, 0.45);
  filter: brightness(1.05);
}

.booking-modal-actions .btn-link:active {
  transform: translateY(2px);
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.45);
  filter: brightness(0.95);
}

/* Mobile tweaks */
@media (max-width: 480px) {
  .booking-modal-card {
    padding: 1.4rem 1.1rem;
  }
}

/* Position toast above booking modal */
.booking-toast {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: auto;          /* remove bottom positioning */
  top: 9%;              /* move it ABOVE the modal */
  z-index: 99999;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #ffffff; /* matches your light text */
  opacity: 0.85;
}

.calendar-weekdays span {
  padding: 0.25rem 0;
  font-size: 0.9rem;
}

/* BADGES / CREDENTIALS card */
.card.trust-card {
  grid-column: 1 / -1;

  /* spacing from other sections */
  margin-top: 4px;        /* gap ABOVE badges card */
  margin-bottom: 8px;    /* gap BELOW badges card */

  /* controls how "long" / tall the purple box is */
  padding-top: 40px;      /* increase for more height */
  padding-bottom: 40px;   /* increase for more height */
}


/* --- Mobile Navigation Toggle (clean gold hamburger) --- */
.nav-toggle {
  display: none;            /* hidden on desktop */
  background: none;
  border: none;
  padding: 0;
  font-size: 2rem;
  color: var(--soft-sand);
  cursor: pointer;
  line-height: 1;
  margin-left: auto;
}

/* --- Mobile Dropdown Navigation --- */

@media (max-width: 950px) {

  /* show hamburger */
  .nav-toggle {
    display: block;
    position: absolute;
    right: 1rem;
    top: 1.2rem;
  }

  /* hide contact button to save top-bar space */
  .contact-area {
    display: none;
  }

  /* hide menu by default */
  .nav-links {
    display: none;
    position: absolute;
    top: 110px;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: var(--deep-plum);
    padding: 1rem;
    gap: 0.75rem;
    box-shadow: 0 8px 16px rgba(0,0,0,0.6);
    z-index: 9998;
  }

  /* show menu when toggled */
  .nav-links.nav-open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    display: block;
    padding: 0.8rem 1rem;
    border-radius: 8px;
  }

  /* mobile layout for hero sections */
  .hero-row {
    grid-template-columns: 1fr !important;
  }
}

/* =============== MOBILE LAYOUT TWEAKS =============== */

/* Tablet + phone */
@media (max-width: 768px) {

  /* Header: stack items and reduce side padding */
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1rem;
    gap: 0.75rem;
  }

  /* Nav: allow it to wrap nicely instead of squishing */
  .nav-links {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .nav-links a {
    font-size: 0.9rem;
    padding: 0.5rem 0.9rem;
  }

  /* Main content: slightly tighter padding on small screens */
  .site-main {
    padding: 1.5rem 1rem 2.25rem;
  }
}

/* Small phones */
@media (max-width: 480px) {
  /* Let nav buttons be a little bigger & easier to tap */
  .nav-links a {
    width: 100%;
    text-align: center;
  }

  /* Make big elements (like the coin) smaller so they fit */
  .coin {
    width: 200px;
    height: 200px;
  }

  /* Slightly smaller heading size if needed */
  .card-title {
    font-size: 1.4rem;
  }
}
.center-left {
  display: inline-block;   /* allows the list to be centered as a block */
  text-align: left;        /* keeps the text inside left-aligned */
  margin-left: auto;       /* centers the UL */
  margin-right: auto;
}

.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.time-slots button {
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  background: #fff;
  color: #431d33;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* =========================
   Booking  time slot layout
   ========================= */

.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.time-slot {
  all: unset;                          /* wipe inherited button styles */
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border-radius: 12px;
  background: #ffffff;
  color: #431d33;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;

  box-shadow: 0 3px 0 rgba(0,0,0,0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.time-slot:hover:not(.disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 0 rgba(0,0,0,0.4);
  background: #f7f2ef;
}

.time-slot.selected {
  background: #431d33;
  color: #ffffff;
  box-shadow: 0 4px 0 rgba(0,0,0,0.5);
}

.time-slot.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
}

/* Booking confirmation modal overlay */
.booking-modal {
  position: fixed;
  inset: 0;
  display: none;                /* hidden by default */
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);  /* dark overlay */
  z-index: 1000;
}

.booking-modal-content {
  background: #4b2335;          /* your plum card color */
  color: #fff;
  padding: 2.5rem 3rem;
  border-radius: 1.75rem;
  max-width: 520px;
  width: 90%;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.booking-modal-title {
  font-family: "Angelina", "Pacifico", cursive;
  font-size: 2.3rem;
  margin-bottom: 1rem;
}

.booking-modal-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.booking-modal-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.booking-modal-buttons .modal-btn {
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1.4rem;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 4px 0 rgba(0,0,0,0.35);
  background: #f4e0d5;
  color: #3c1b2a;
}

.booking-modal-buttons .modal-btn.modal-confirm {
  background: #ffffff;
}



/* Stack the two left cards vertically */
.left-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* space between coin card and services card */
}

/* Make "medium" cards just use the full column width (no shrinking) */
.card-medium {
  width: 100%;
  max-width: none;
}

/* Optional: pull the two main columns a bit closer together */
.grid-2 {
  display: grid;
  grid-template-columns: 1.3fr 1fr; /* your original ratio */
  gap: 1.2rem; /* smaller than before so they sit closer */
}


/* Tighter bottom spacing so the footer sits closer to the last card */
.site-main {
  padding-bottom: 1.25rem;   /* was 3rem */
}

@media (max-width: 600px) {
  .site-main {
    padding-bottom: 0.75rem; /* was 2.5rem on mobile */
}
}

/* Make the bottom card a bit shorter & remove the gap above footer */
.card.trust-card {
  margin-bottom: 0;
  padding-top: 28px;
  padding-bottom: 28px;  /* tweak up/down to taste */
}



/* ? Mobile: stack the 2-column layout into 1 column */
@media (max-width: 768px) {
  .grid-2 {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
  }

  .left-stack {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
  }

  .card,
  .card-medium {
    width: 100% !important;
    max-width: 100% !important;
  }

 
