* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f3f5f1;
  color: #1f3029;
  font-family: Arial, sans-serif;
}

.login-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  width: 100%;
  max-width: 430px;
  background: white;
  padding: 36px;
  border: 1px solid #dde3df;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.brand {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 28px;
}

h1,
h2 {
  font-family: Georgia, serif;
  font-weight: 400;
}

h1 {
  margin: 0 0 30px;
  font-size: 46px;
}

h2 {
  margin: 8px 0 12px;
  font-size: 34px;
}

label {
  display: block;
  margin: 17px 0 8px;
  font-size: 14px;
  font-weight: 700;
}

input {
  width: 100%;
  padding: 14px;
  border: 1px solid #cbd3ce;
  border-radius: 7px;
  background: white;
  font-size: 16px;
}

input:focus {
  outline: 2px solid #29483c;
  outline-offset: 1px;
}

button {
  width: 100%;
  margin-top: 22px;
  padding: 15px;
  border: 0;
  border-radius: 7px;
  background: #29483c;
  color: white;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

button:hover {
  opacity: 0.92;
}

button:disabled {
  opacity: 0.55;
  cursor: wait;
}

#message {
  min-height: 20px;
  margin: 16px 0 0;
  font-size: 14px;
}

.eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hidden {
  display: none;
}.dashboard-actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.secondary {
  background: #e7ece8;
  color: #1f3029;
}

.dashboard-panel {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #dde3df;
}

.dashboard-panel h3 {
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 16px;
}
/* ---------- Gather customer homepage ---------- */

.home-body {
  margin: 0;
  min-height: 100vh;
  background: #f4f5f1;
  color: #20352d;
}

.home-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  border-bottom: 1px solid #dce1dd;
  background: #fafbf8;
}

.home-brand {
  font-size: 22px;
  font-weight: 700;
}

.venue-name {
  margin-left: 12px;
  font-size: 14px;
  font-weight: 400;
  color: #66736d;
}

.header-login {
  color: #20352d;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.home-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 110px 48px 100px;
}

.hero {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.hero .eyebrow {
  margin-bottom: 24px;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(58px, 7vw, 96px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero-description {
  max-width: 570px;
  margin: 36px auto 30px;
  color: #5c6963;
  font-size: 17px;
  line-height: 1.6;
}

.plan-event-button {
  display: inline-block;
  padding: 17px 34px;
  border-radius: 7px;
  background: #29483c;
  color: white;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
}

.hero-note {
  margin-top: 17px;
  color: #68756f;
  font-size: 14px;
}

.planner-placeholder {
  max-width: 760px;
  margin: 160px auto 0;
  padding: 60px;
  border-top: 1px solid #d8ded9;
  text-align: center;
}

.planner-placeholder h2 {
  font-family: Georgia, serif;
  font-size: 46px;
  font-weight: 400;
}/* =========================================
   GATHER CUSTOMER EVENT PLANNER
   ========================================= */

body:has(#submit-event-btn) {
  margin: 0;
  min-height: 100vh;
  background: #edf3e8;
  color: #263329;
  font-family: Arial, Helvetica, sans-serif;
}

/* Main planner area */
body:has(#submit-event-btn) .login-page {
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 80px;
}

/* Main title */
body:has(#submit-event-btn) .login-page > h1 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -1px;
  color: #263329;
}

body:has(#submit-event-btn) .login-page > p:first-of-type {
  margin: 0 0 35px;
  font-size: 16px;
  color: #667064;
}

/* The big green form box */
body:has(#submit-event-btn) .login-card {
  display: flex;
  flex-direction: column;
  gap: 10px;

  padding: 34px;

  background: #73866e;
  border-radius: 24px;

  box-shadow:
    0 16px 40px rgba(39, 55, 41, 0.10);
}

/* Labels */
body:has(#submit-event-btn) .login-card label {
  margin-top: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  color: white;
}

/* White rounded text boxes */
body:has(#submit-event-btn) .login-card input {
  box-sizing: border-box;
  width: 100%;
  height: 54px;

  padding: 0 17px;

  background: white;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 13px;

  color: #263329;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;

  outline: none;

  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

body:has(#submit-event-btn) .login-card input::placeholder {
  color: #9aa39a;
}

body:has(#submit-event-btn) .login-card input:focus {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.22);
}

/* Submit button */
body:has(#submit-event-btn) #submit-event-btn {
  width: 100%;
  margin-top: 20px;
  padding: 16px 20px;

  background: #263c2d;
  border: none;
  border-radius: 13px;

  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;

  cursor: pointer;

  transition:
    transform 0.15s ease,
    opacity 0.15s ease;
}

body:has(#submit-event-btn) #submit-event-btn:hover {
  transform: translateY(-1px);
}

body:has(#submit-event-btn) #submit-event-btn:disabled {
  opacity: 0.65;
  cursor: default;
}

/* Submission message */
body:has(#submit-event-btn) #planner-message {
  min-height: 20px;
  margin: 5px 0 0;
  color: white;
  text-align: center;
  font-size: 14px;
}

/* Back to Gather */
body:has(#submit-event-btn) .login-page > p:last-of-type {
  margin-top: 25px;
}

body:has(#submit-event-btn) .login-page > p:last-of-type a {
  color: #4e6350;
  text-decoration: none;
  font-size: 15px;
}

body:has(#submit-event-btn) .login-page > p:last-of-type a:hover {
  text-decoration: underline;
}

/* Phones */
@media (max-width: 600px) {
  body:has(#submit-event-btn) .login-page {
    width: min(100% - 28px, 720px);
    padding-top: 40px;
  }

  body:has(#submit-event-btn) .login-page > h1 {
    font-size: 39px;
  }

  body:has(#submit-event-btn) .login-card {
    padding: 24px;
    border-radius: 20px;
  }
}
.room-canvas {
  position: relative;
  width: 100%;
  height: 520px;
  margin: 25px 0;
  background: #f8f8f4;
  border: 2px solid #d7dfd2;
  border-radius: 18px;
  overflow: hidden;
}

.layout-toolbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.layout-item {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  touch-action: none;
  cursor: grab;
}

.round-table {
  width: 70px;
  height: 70px;
  background: #879b80;
  border-radius: 50%;
  color: white;
  font-size: 30px;
}

.banquet-table {
  width: 110px;
  height: 55px;
  background: #879b80;
  border-radius: 12px;
  color: white;
  font-size: 30px;
}

.chair {
  width: 28px;
  height: 28px;
  background: white;
  border: 2px solid #879b80;
  border-radius: 8px;
  color: #879b80;
  font-size: 12px;
}