:root {
  --bg:#101B2D;
  --paper:#3F4A59;
  --ink:#C4CCD6;
  --muted:#AEB7C3;
  --mauve-100:#1A263A;
  --mauve-200:#24344A;
  --mauve-300:#2E4056;
  --mint:#3F4A59;
  --mint-ink:#C4CCD6;
  --gold-1:#A3B3C6;
  --gold-2:#C4CCD6;
  --card:#3F4A59;
  --shadow:0 6px 24px rgba(0,0,0,.25);
  --radius:18px;
}

/* --- BASE --- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color: var(--ink);
    background:
    radial-gradient(circle at 15% 20%, rgba(222,201,238,0.25), transparent 60%),
    radial-gradient(circle at 85% 60%, rgba(180,230,215,0.35), transparent 70%),
    linear-gradient(180deg,#f5f3ff 0%, #fefaf7 60%, #ffffff 100%);
}
.container { width:min(1150px,92vw); margin:0 auto; }

/* --- HEADER --- */
.header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(180%) blur(8px);
  background: linear-gradient(180deg,rgba(255,255,255,.82),rgba(255,255,255,.66));
  border-bottom: 1px solid #eee;
}
.header-inner {
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand {
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
}

/* Logo image in header */
.logo {
  width:22px;
  height:22px;
  border-radius:6px;
  display:block;
  object-fit:contain;
  box-shadow:0 0 0 1px rgba(0,0,0,.06) inset;
}

/* Optional: separate styling for the text next to the logo */
.brand-text {
  letter-spacing:0.02em;
}

.nav { display:flex; gap:18px; align-items:center; }
.nav a{
  text-decoration:none;
  color:#C4CCD6; /* Silver text */
  font-weight:600;
  padding:10px 8px;
  border-radius:10px;
  transition:color .2s, background .2s;
}

/* Hover and Active now share the same premium silver tone */
.nav a:hover,
.nav a.active{
  color:#0F172A;
  background:linear-gradient(180deg,#E7ECF2 0%, #C4CCD6 100%);
}

.burger {
  display:none; width:40px; height:40px; border-radius:12px;
  border:1px solid #eee; background:#fff;
}
.burger span {
  display:block; width:22px; height:2px; background:#444;
  margin:5px auto; border-radius:2px;
}
@media(max-width:860px){
  .burger{display:block}
  .nav{
    display:none; position:fixed; inset:64px 0 auto 0;
    background:rgba(255,255,255,.96); border-top:1px solid #eee;
    padding:14px 20px; flex-direction:column;
  }
  .nav.show{display:flex}
}

/* --- SECTIONS & CARDS --- */
.section { padding:22px 0; }
.card {
  background:var(--card); border-radius:var(--radius);
  box-shadow:var(--shadow); padding:22px;
}
.grid-2 {
  display:grid;
  gap:16px;
  grid-template-columns:1fr 1fr;
}
.card-row {
  display: grid;
  gap: 24px;
}

/* Desktop: make them two columns */
@media (min-width: 900px) {
  .card-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: flex-start;
  }
}

/* NEW: centre text in the hero’s text column */
.hero-main-text {
  text-align: center;
}

.hero-main-text .badge {
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
}

.hero-main-text .cta-row {
  justify-content: center;
}

h1 {
  font-size:clamp(28px,4.2vw,54px);
  line-height:1.02;
  margin:.2em 0 .3em;
}
p { color:var(--muted); }
.badge {
  display:inline-flex; gap:8px; align-items:center;
  background:#EAE6F2; color:#5D5373;
  padding:8px 12px; border-radius:999px;
  font-weight:700; font-size:14px;
}

/* --- CTA Buttons --- */
.cta-row { display:flex; gap:12px; flex-wrap:wrap; margin-top:18px; }
.btn {
  appearance:none; border:0; border-radius:14px;
  padding:14px 18px; font-weight:700;
  cursor:pointer; text-decoration:none;
  display:inline-flex; align-items:center; gap:10px;
  box-shadow:0 4px 14px rgba(0,0,0,.08);
  transition:all 0.25s ease;
}
.btn-primary {
  color:#533F16;
  background-image:linear-gradient(180deg,var(--gold-2),var(--gold-1));
}
.btn-primary {
  background: linear-gradient(180deg, #E7ECF2 0%, #C4CCD6 100%);
  color: #0F172A;
  border: none;
  padding: 10px 16px;
  font-size: 0.9rem;
  letter-spacing: 0.2px;
  box-shadow: 0 4px 14px rgba(196,204,214,0.25);
  transition: all 0.25s ease;
}

.btn-primary:hover {
  background: linear-gradient(180deg, #F3F6FA 0%, #D2D9E2 100%);
  box-shadow: 0 6px 22px rgba(196,204,214,0.35);
  transform: translateY(-2px);
}

.btn-ghost {
  background: #ffffff;
  color: #7c5cff;
  border: 1px solid rgba(124,92,255,0.3);
  padding: 10px 16px;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.btn-ghost:hover {
  background: rgba(124,92,255,0.08);
  color: #5d3dff;
  border-color: rgba(124,92,255,0.4);
  transform: translateY(-1px);
}

/* --- HERO IMAGES --- */
.hero-media {
  display:grid; grid-template-columns:2fr 1fr;
  gap:2rem; align-items:center; margin-top:2rem;
}
.hero-main img {
  width:100%; height:auto; border-radius:1rem;
  object-fit:cover; box-shadow:0 4px 20px rgba(0,0,0,0.1);
}
.hero-thumbs { display:flex; flex-direction:column; gap:1rem; }
.hero-thumbs img {
  width:100%; max-width:220px; border-radius:0.75rem;
  object-fit:cover; box-shadow:0 2px 8px rgba(0,0,0,0.1);
  cursor:pointer; transition:transform 0.3s ease;
}
.hero-thumbs img:hover { transform:scale(1.05); }

/* --- MOBILE HERO --- */
@media(max-width:768px){
  .hero-media { grid-template-columns:1fr; }
  .hero-thumbs { flex-direction:row; justify-content:center; }
  .hero-thumbs img { max-width:30%; }
}

/* --- GALLERY GRID --- */
.gallery-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-top:24px;
}
.gallery-grid .figure {
  position:relative; overflow:hidden;
  border-radius:12px; background:#fafafa;
  box-shadow:0 2px 6px rgba(0,0,0,0.08);
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-grid .figure:hover {
  transform:translateY(-4px);
  box-shadow:0 4px 12px rgba(0,0,0,0.15);
}
.gallery-grid img {
  width:100%; height:auto; display:block;
  border-radius:12px; cursor:pointer;
}
.gallery-grid .cap {
  text-align:center; font-size:0.9rem;
  color:#6f7785; padding:8px 0 12px;
}

/* --- FOOTER --- */
.footer {
  padding:32px 0; color:#6b7280;
}
.footer .container {
  display:flex; justify-content:space-between; align-items:center;
  gap:16px; flex-wrap:wrap;
}

/* --- NEW LIGHTBOX (VividPro) --- */
.pc-lightbox {
  position:fixed; inset:0;
  display:none; align-items:center; justify-content:center;
  background:rgba(0,0,0,0.85);
  z-index:1000; padding:2rem;
}
.pc-lightbox.is-open { display:flex; }
.pc-lightbox__img {
  max-width:90vw; max-height:90vh;
  object-fit:contain;
  box-shadow:0 10px 40px rgba(0,0,0,0.6);
  border-radius:8px; z-index:1000;
}
.pc-lightbox__btn {
  position:absolute; top:50%;
  transform:translateY(-50%);
  border:0; background:rgba(255,255,255,0.12);
  color:#fff; font-size:2rem; line-height:1;
  width:2.75rem; height:2.75rem;
  border-radius:999px; cursor:pointer;
  z-index:1001;
}
.pc-lightbox__btn:hover,
.pc-lightbox__btn:focus {
  background:rgba(255,255,255,0.2);
  outline:2px solid rgba(255,255,255,0.35);
  outline-offset:2px;
}
.pc-lightbox__close {
  top:1.25rem; right:1.25rem;
  transform:none; font-size:2rem;
}
.pc-lightbox__prev { left:1rem; }
.pc-lightbox__next { right:1rem; }
.pc-lightbox.is-open { cursor:zoom-out; }
.pc-lightbox.is-open .pc-lightbox__img,
.pc-lightbox.is-open .pc-lightbox__btn { cursor:default; }
@media (max-width: 768px) {

  /* Add colour at the top of the mobile homepage */
  .hero {
    background: linear-gradient(180deg, #EFE6FC 0%, #E7F4F0 100%);
    padding-top: 40px;
    border-radius: 0 0 20px 20px;
  }

}
.card-img {
  width: 100%;
  max-width: 520px;   /* you can try 480px or 440px if you want smaller */
  height: auto;
  display: block;
  border-radius: var(--radius);
  margin: 0 auto 16px;  /* centres the image in the card */
}
/* Smaller illustration size on desktop, but keep mobile as-is */
@media (min-width: 900px) {
  .card-img--tiny {
    max-width: 220px;   /* try 220; if still too big, go down to ~180 */
  }
}
/* --- CONTACT PAGE THEME --- */

.contact-page .card {
  /* Make contact card match the main site cards */
  background: #2d3848;
  color: #E5EDF7;
}

/* Form fields inside the contact page card */
.contact-page input[type="text"],
.contact-page input[type="email"],
.contact-page input[type="tel"],
.contact-page textarea,
.contact-page select {
  background: #222b39;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #E5EDF7;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.18) inset;
}

/* Placeholder text colour */
.contact-page input::placeholder,
.contact-page textarea::placeholder {
  color: #9CA7BF;
}

/* When the user clicks into a field */
.contact-page input:focus,
.contact-page textarea:focus,
.contact-page select:focus {
  outline: none;
  border-color: #8BE7C4;
  box-shadow: 0 0 0 1px #8BE7C4 inset, 0 0 0 4px rgba(139, 231, 196, 0.25);
}

/* Optional: soften the submit button slightly on this page only */
.contact-page .btn-primary {
  background: linear-gradient(135deg, #fdfdff, #e4f0ff);
  color: #293548;
}






