/* Module: Live Preview Styles
   Purpose: Serve the Phase 1 shell directly from hotelpati.com until reverse proxy is configured. */

:root {
  --primary-green: #4ba02c;
  --accent-yellow: #ffe921;
  --accent-orange: #ff6600;
  --neutral-brown: #b58860;
  --deep-teal: #426d6a;
  --white: #ffffff;
  --black: #1a1a1a;
  --paper: #fbfff8;
  --line: #d9e7cf;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  color: var(--black);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  min-height: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 233, 33, 0.26), transparent 28rem),
    linear-gradient(135deg, var(--paper), #eef8e9 55%, #fff7ed);
}

a {
  color: inherit;
}

.shell {
  min-height: 100vh;
  padding: 24px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--black);
  border-radius: 14px;
  background: var(--accent-yellow);
  box-shadow: 0 6px 0 rgba(26, 26, 26, 0.1);
}

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

.links a,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 36px;
  align-items: center;
  width: min(1120px, 100%);
  min-height: calc(100vh - 120px);
  margin: 0 auto;
  padding: 40px 0 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--deep-teal);
  font-size: 14px;
  font-weight: 800;
}

h1 {
  max-width: 760px;
  margin: 24px 0 18px;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
}

.copy {
  max-width: 650px;
  margin: 0;
  color: #385654;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button.primary {
  border-color: var(--primary-green);
  background: var(--primary-green);
  color: var(--white);
  box-shadow: 0 8px 0 rgba(26, 26, 26, 0.1);
}

.panel {
  border: 2px solid rgba(66, 109, 106, 0.24);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 0 rgba(26, 26, 26, 0.07);
  overflow: hidden;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.status {
  color: var(--primary-green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.list {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  background: rgba(75, 160, 44, 0.12);
  color: var(--primary-green);
  font-weight: 900;
}

.item strong {
  display: block;
}

.item span {
  display: block;
  margin-top: 3px;
  color: #64706d;
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 760px) {
  .shell {
    padding: 18px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

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

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}
