/* GT Projects — static rebuild of gtprojects.com.au (ex-Weebly)
   Matched to live site: Montserrat (headings/nav) + PT Sans (body)
   accent #F04D00 · dark #0d0d0d · body #3f3f3f (light pages) / #d5d5d5 (dark) */

:root {
  --accent: #f04d00;
  --dark: #0d0d0d;
  --panel-dark: #111;
  --text-light: #d5d5d5;
  --text-dark: #333;
  --text-body: #3f3f3f;
}

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

body {
  font-family: "PT Sans", Arial, sans-serif;
  font-size: 15px;
  line-height: 30px;
  color: var(--text-body);
  background: #fff;
}

/* ---------- Split layout ---------- */
.split { display: flex; min-height: 100vh; }

.panel-left {
  width: 49.5%;
  position: fixed;
  inset: 0 auto 0 0;
  background: radial-gradient(ellipse at 30% 35%, #1c1c1c 0%, #0a0a0a 70%), #0a0a0a;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.panel-right {
  width: 50.5%;
  margin-left: 49.5%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ---------- Header: hamburger + logo (as on live site) ---------- */
.site-header {
  padding: 30px 36px 0;
  display: flex;
  align-items: center;
  gap: 18px;
}

.hamburger {
  width: 30px;
  height: 30px;
  background: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 16px;
  height: 2px;
  background: #222;
}

.logo {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 0.5px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}

/* ---------- Slide-out nav pane (replicates Weebly navpane) ---------- */
.navpane {
  position: fixed;
  inset: 0 auto 0 0;
  width: 49.5%;
  background: #1e1e1e;
  z-index: 100;
  display: none;
  flex-direction: column;
}

.navpane.open { display: flex; }

.navpane .close-btn {
  position: absolute;
  top: 34px;
  left: 36px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
  color: #222;
}

.navpane ul {
  list-style: none;
  margin: auto;
  text-align: center;
}

.navpane li { margin: 14px 0; }

.navpane a {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  color: #8a8a8a;
}

.navpane a:hover, .navpane a.active { color: #fff; }

.page-dim {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 90;
  display: none;
}

.page-dim.show { display: block; }

@media (max-width: 900px) {
  .navpane { width: 100%; }
}

/* ---------- Poem (recreated as text, was a background image on Weebly) ---------- */
.poem-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.poem {
  font-family: "Bitter", Georgia, serif;
  color: #eee;
  font-size: 18px;
  line-height: 1.55;
  max-width: 460px;
}

.poem .first-line { font-size: 24px; margin-bottom: 8px; }

.poem .indent { padding-left: 56px; }

.poem strong { color: var(--accent); font-weight: 700; }

.poem .signature {
  font-family: "Caveat", cursive;
  font-size: 26px;
  color: #999;
  text-align: right;
  margin-top: 4px;
}

/* ---------- Right panel content ---------- */
.content { flex: 1; padding: 66px 60px 60px; }

.content.dark { background: var(--panel-dark); color: var(--text-light); }

h1.page-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.08;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 44px;
}

h2.section-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 27px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.content.dark h2.section-title { color: var(--text-light); }

.content p { margin-bottom: 20px; }

.content a { color: var(--accent); text-decoration: none; font-weight: 700; }
.content a:hover { text-decoration: underline; }

.lead {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-dark);
  margin-bottom: 28px;
}

ul.experience { margin: 0 0 22px 22px; }
ul.experience li { margin-bottom: 12px; }

/* Home intro block */
.intro-flex { display: flex; gap: 30px; align-items: flex-start; margin-bottom: 34px; }
.intro-flex img { width: 159px; height: auto; flex-shrink: 0; }
.intro-flex .tagline {
  font-family: "PT Sans", Arial, sans-serif;
  font-size: 27px;
  line-height: 1.35;
  color: var(--text-light);
  font-weight: 400;
  margin: 0;
}
.intro-flex .tagline .dots { font-size: 15px; }

.divider { border: none; border-top: 1px solid #2a2a2a; margin: 44px 0; }

.btn-row { margin-top: 30px; }

.btn {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff !important;
  background: var(--accent);
  padding: 12px 26px;
  text-decoration: none !important;
  margin-right: 14px;
}

.btn:hover { background: #d34400; }

/* ---------- Enquiry form ---------- */
.required-note { font-style: italic; font-size: 13px; margin-bottom: 24px; }
.required-note .star, label .star { color: var(--accent); }

.form-row { margin-bottom: 22px; }
.form-row label {
  display: block;
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.name-fields { display: flex; gap: 16px; }
.name-fields > div { flex: 1; }

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  border: 1px solid #ccc;
  background: #fff;
  color: var(--text-dark);
  font: inherit;
  padding: 9px 10px;
}

input[type="text"], input[type="email"] { height: 42px; }
textarea { min-height: 150px; resize: vertical; }
input:focus, textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.name-fields small { display: block; color: #777; font-size: 12px; line-height: 22px; }
.contact-block { margin-top: 42px; }

/* ---------- Footer ---------- */
.site-footer {
  padding: 22px 60px;
  border-top: 1px solid #e6e6e6;
  color: #777;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.content.dark + .site-footer {
  background: var(--panel-dark);
  border-top-color: #2a2a2a;
  color: #888;
}

body.nav-open { overflow: hidden; }

@media (max-width: 900px) {
  .split { display: block; }
  .panel-left {
    position: relative;
    width: 100%;
    min-height: 360px;
  }
  .panel-right { width: 100%; margin-left: 0; min-height: auto; }
  .site-header { padding: 24px 24px 0; }
  .poem-wrap { padding: 40px 24px 48px; }
  .poem { font-size: 16px; }
  .poem .first-line { font-size: 21px; }
  .poem .indent { padding-left: 32px; }
  .content { padding: 48px 32px; }
  .site-footer { padding: 22px 32px; }
  h1.page-title { font-size: 40px; margin-bottom: 36px; }
}

@media (max-width: 560px) {
  body { line-height: 27px; }
  .panel-left { min-height: 315px; }
  .poem { font-size: 14px; }
  .poem .first-line { font-size: 18px; }
  .poem .indent { padding-left: 18px; }
  .poem .signature { font-size: 23px; }
  .content { padding: 40px 24px; }
  .site-footer { padding: 20px 24px; }
  h1.page-title { font-size: 34px; }
  h2.section-title { font-size: 23px; }
  .intro-flex { flex-direction: column; gap: 24px; }
  .intro-flex .tagline { font-size: 23px; }
  .name-fields { flex-direction: column; gap: 8px; }
  .btn { margin: 0 10px 10px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; }
}
