:root {
  --wp-bg: #0f0f12;
  --wp-gradient-top: #6f6f6f;
  --wp-gradient-bottom: #65768d;
  --wp-text-main: #bdb7b0;
  --wp-text-muted: rgb(173 168 170 / 82%);
  --wp-accent-1: #c9c0b7;
  --wp-accent-2: #382b20;
  --wp-shimmer-speed: 6s;
  --wp-bounce-speed: 1.6s;
  --wp-icon-size: 96px;
  --wp-title-size: 2rem;
  --wp-tagline-size: 1.1rem;

  /* icon set - using your assets folder */
  --wp-icon-16:  url("../assets/icons/transparent-16.png");
  --wp-icon-32:  url("../assets/icons/transparent-32.png");
  --wp-icon-64:  url("../assets/icons/transparent-64.png");
  --wp-icon-128: url("../assets/icons/transparent-128.png");
  --wp-icon-256: url("../assets/icons/transparent-256.png");
  --wp-icon-512: url("../assets/icons/transparent-512.png");

  /* banner uses 256px version */
  --wp-icon-url: var(--wp-icon-256);
}

html, body {
  margin: 0;
  padding: 0;
  background: radial-gradient(120% 140% at 100% 0%, #1b1b23 22%, var(--wp-bg) 62%), var(--wp-bg);
  color: var(--wp-text-main);
  font: 14px/1.45 "Montserrat", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", sans-serif;
}

.wp-banner {
  border-bottom: none;
  background:
   linear-gradient(281deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02)), 
   linear-gradient(180deg, #0b0606, #818181);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
}

.wp-title-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 24px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.wp-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.wp-icon {
  width: var(--wp-icon-size);
  height: var(--wp-icon-size);
  background: var(--wp-icon-url) center/contain no-repeat;
  animation: wp-bounce var(--wp-bounce-speed) ease infinite;
}

.wp-title h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: var(--wp-title-size);
  background: linear-gradient(90deg, var(--wp-accent-1), var(--wp-accent-2), var(--wp-accent-1));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  animation: wp-shimmer var(--wp-shimmer-speed) linear infinite;
}

.wp-title h1::first-letter {
  display: inline-block;
  animation: wp-bounce var(--wp-bounce-speed) ease infinite;
}

.wp-title small {
  display: block;
  font-size: var(--wp-tagline-size);
  color: var(--wp-text-muted);
}

@keyframes wp-shimmer {
  0% { background-position: 0 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0 50%; }
}

@keyframes wp-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15%); }
}
/* ========== Homepage box layout beneath banner ========== */

.wp-main {
  max-width: 1200px;
  margin: 24px auto 64px;
  padding: 0 16px 24px;
  box-sizing: border-box;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.wp-panel {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 55%),
    radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.75), #050509 70%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.02);
  padding: 1.25rem 1.5rem;
  color: var(--wp-text-main);
}

.wp-panel h2 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--wp-accent-1);
}

.wp-panel p,
.wp-panel li {
  font-size: 0.95rem;
  color: var(--wp-text-muted);
}

.wp-panel ul {
  margin: 0;
  padding-left: 1.1rem;
}

/* Footer styling under boxes */
.wp-footer {
  text-align: center;
  font-size: 0.85rem;
  padding: 1.5rem 0 2rem;
  color: var(--wp-text-muted);
}

/* Mobile: stack boxes instead of three columns */
@media (max-width: 900px) {
  .wp-main {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* ===== Floating Chat Button ===== */

.wp-chat-btn {
  position: fixed;
  bottom: 24px;
  right: 275px;
  background: linear-gradient(
    90deg,
    var(--wp-accent-1),
    var(--wp-accent-2),
    var(--wp-accent-1)
  );
  background-size: 200% 100%;
  animation: wp-shimmer var(--wp-shimmer-speed) linear infinite;
  padding: 12px 18px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 200;
  font-size: 1.2rem;
  color: #bdb7b0;
  font-family: "Playfair Display", serif;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.08);

  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.wp-chat-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}
/* Chat button shimmer */
#wp-chat-button {
  position: fixed;
  bottom: 40px;
  right: 40px;
  padding: 12px 20px;
  background: linear-gradient(
    90deg,
    var(--wp-accent-1),
    var(--wp-accent-2),
    var(--wp-accent-1)
  );
  background-size: 200% 100%;
  animation: wp-shimmer var(--wp-shimmer-speed) linear infinite;

  color: var(--wp-text-main);
  border: none;
  border-radius: 12px;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  transition: 0.2s ease;
}

#wp-chat-button:hover {
  transform: scale(1.05);
}

/* your existing shimmer keyframes work perfectly */
@keyframes wp-shimmer {
  0% { background-position: 0 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0 50%; }
}
/* Modal overlay */
.wp-chat-modal {
  display: none;  /* shown via JS */
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

/* Chat box */
.wp-chat-box {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 350px;
  top:100px;
  max-width: 45vw;
  height: 600px;
  max-height: 85vh;
  background: var(--wp-bg);
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--wp-accent-1);

}

/* Close button */
.wp-chat-close {
  position: absolute;
  top: 4px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--wp-text-main);
  cursor: pointer;
  line-height: 1;
}

/* Minimize button */
.wp-chat-minimize {
  position: absolute;
  top: 4px;
  right: 46px;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: var(--wp-text-main);
  cursor: pointer;
  line-height: 1;
}

/* Minimized bubble */
.wp-chat-bubble {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1100;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--wp-accent-2);
  display: none;              /* hidden until minimized */
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: linear-gradient(
    90deg,
    var(--wp-accent-1),
    var(--wp-accent-2),
    var(--wp-accent-1)
  );
  background-size: 200% 100%;
  animation: wp-shimmer var(--wp-shimmer-speed) linear infinite;
  color: var(--wp-bg);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.55);
}

/* Make sure shimmer exists - you already have this for the title */
@keyframes wp-shimmer {
  0% { background-position: 0 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0 50%; }
}