/* Platinum Events NZ — static site
   Faithful match of the original Beaver Builder design:
   no header bar, full-bleed slideshow hero with the wordmark overlay,
   black sections below, white pill buttons, three photo+text panels, footer. */

:root {
  --bg: #000000;
  --bg-soft: #0a0a0a;
  --ink: #ffffff;
  --muted: #b8b8b8;
  --line: rgba(255,255,255,.18);
  --maxw: 1140px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; background: #000; }
body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  color: #fff;
  margin: 0 0 .6em;
  line-height: 1.2;
}
h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.6rem);
  letter-spacing: 2px;
  text-transform: uppercase;
}
h3 {
  font-size: .95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}
p { margin: 0 0 1em; color: var(--ink); }
a { color: #fff; text-decoration: none; }
a:hover, a:focus { color: #fff; text-decoration: underline; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Hero: full-bleed with overlay + image ---------- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background-color: #000;
  background-image:
    linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.6)),
    url('../images/hero-1-rugby.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: background-image 1.4s ease;
}
.hero.s1 { background-image: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.6)), url('../images/hero-1-rugby.jpg'); }
.hero.s2 { background-image: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.6)), url('../images/hero-2-concert.jpg'); }
.hero.s3 { background-image: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.6)), url('../images/hero-3-show.jpg'); }
.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}
.hero-logo {
  max-width: 900px;
  width: 90%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,.5));
}

/* ---------- Intro section ---------- */
.intro {
  background: #000;
  padding: 64px 0;
  text-align: center;
}
.intro p {
  max-width: 820px;
  margin: 0 auto 14px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink);
}
.intro .btn { margin-top: 22px; }

/* ---------- Buttons (white outline pill) ---------- */
.btn {
  display: inline-block;
  background: transparent;
  color: #fff !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 30px;
  border-radius: 24px;
  border: 1px solid #fff;
  transition: background .15s ease, color .15s ease;
}
.btn:hover, .btn:focus {
  background: #fff;
  color: #000 !important;
  text-decoration: none;
}

/* ---------- Sections (photo + text rows) ---------- */
.section {
  padding: 56px 0;
  border-top: 1px solid var(--line);
  background: #000;
}
.row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
}
.photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
}
.copy h2 { margin-bottom: 18px; }
.copy p {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 24px;
}
.copy .btn { margin-top: 4px; }

/* ---------- Contact page (uses simple full-bleed black hero, no slideshow) ---------- */
.contact-wrap {
  padding: 120px 0;
  background: #000;
  min-height: 100vh;
  text-align: center;
}
.contact-wrap h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}
.contact-wrap .tagline {
  color: var(--muted);
  margin-bottom: 48px;
  font-size: 14px;
  letter-spacing: .5px;
}
.contact-card {
  max-width: 520px;
  margin: 0 auto;
  border: 1px solid var(--line);
  padding: 48px 32px;
  border-radius: 4px;
  background: #050505;
}
.contact-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 28px;
}
.contact-item {
  margin: 16px 0;
  font-size: 1rem;
}
.contact-item .label {
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}
.contact-item a {
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
}
.contact-item a:hover { text-decoration: underline; }
.contact-back {
  margin-top: 40px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #000;
  color: #fff;
  padding: 56px 0 0;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-col h3 {
  color: #fff;
  font-size: .95rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.footer-col p, .footer-col a {
  color: #d8d8d8;
  font-size: .85rem;
  line-height: 1.7;
}
.footer-col a { text-decoration: none; }
.footer-col a:hover { text-decoration: underline; color: #fff; }
.footer-logo {
  max-width: 240px;
  width: 100%;
  height: auto;
  display: block;
}
.footer-bar {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding: 18px 0;
  text-align: center;
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: .5px;
}
.footer-bar a { color: var(--muted); }
.footer-bar a:hover { color: #fff; text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .hero { min-height: 520px; height: 90vh; }
  .hero-logo { max-width: 92%; }
  .row { grid-template-columns: 1fr; gap: 24px; }
  .photo { max-width: 480px; margin: 0 auto; }
  .copy { text-align: center; }
  .copy p { margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-logo { margin: 0 auto; }
  .section { padding: 40px 0; }
  .contact-wrap { padding: 80px 0; }
  .contact-card { padding: 36px 22px; }
}

/* Respect reduced-motion users */
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
}
