:root{
  --bg-color:#ffffff;
  --text1:#111827;
  --text:#d9dbde;
  /*--muted:rgba(17,24,39,0.65);*/
  --muted:rgba(255,255,255,0.65);
  --accent:#d9a24a;
  --card-bg: rgba(20,42,48,.5);
  --win-border: rgba(0,0,0,0.06);
  --maxw:1200px;
  --win-size:220px;
}

/* Reset + base */
*{box-sizing:border-box}

html,body{height:100%;margin:0;font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,Helvetica,Arial;font-size:16px;background-color: rgba(255, 255, 255, 0);color:var(--text);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}

a{color:inherit}

/* Header / Nav - these settings are for the top banner including the links to subscreens
   the banner bar is 100 pixels high and stays constant on the screen. Important - justify-content tag left, right, space-evenly etc*/

.site-header{
  position:fixed;
  top:0;left:0;right:0;
  height:100px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 10px;
  z-index:120;
  background:linear-gradient(180deg, rgba(0,88,88,0.8), rgba(0,88,88,0.3));
  border-bottom:5px solid rgba(255,255,255,0.9);
}

.logo{font-weight:700;color:var(--text)}
.main-nav{display:flex;align-items:center;gap:10px}
.main-nav a{color:var(--text1);text-decoration:none;padding:8px 10px;border-radius:8px;font-weight:600;opacity:.95}
.main-nav a:hover{background:rgba(15,23,42,0.03)}
.main-nav a.active{box-shadow:inset 0 -3px 0 0 var(--accent);padding-bottom:5px}


.section {
  /* section-specific styles */
  width: 400px;
}



.break-here::after {
  content: "\A";
  white-space: pre; /* Required for the \A to render as a break */
}

/* Line accros the page */
.hr-line {
  width: 100%;
  border-top: 5px solid #FCFCFC; /* thickness and color /
  margin: 1px 0;             / vertical spacing /
  padding: 0;                 / ensure no extra height /
  box-sizing: border-box;     / include borders in width calculation */
}

/* Fixed background layers (under everything) */
.bg-layer{
  position:fixed;
  inset:0;
  z-index:-30;
  background-size:cover;
  text-align:left;
  background-position: center top;
  background-repeat:no-repeat;
  transition:opacity 700ms cubic-bezier(.2,.9,.2,1),transform 800ms linear;
  will-change:opacity,transform;
  transform-origin:center center;
  opacity:0;
}
.bg-layer.visible{opacity:1}


/* Hero section (top) - this governs the overlay photograph that scrolls with the screen */
.hero{
  position:relative;
  height:100vh;
  min-height:460px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:left;
  z-index:1;
  color:var(--text);
  background-attachment: scroll;
  background-size:cover;
  background-position: center top;
  background-repeat:no-repeat;
}


.container {
  display: flex;
  align-items: center;       /* vertical center /
  justify-content: flex-start; / align left /
  height: 100vh;            / or any height you need /
  padding-left: 16px;       / optional left spacing */
}

.hero-inner{
	position:relative;
	z-index:2;
	max-width:1100px;
	padding:12px;
	right: 400px; 
	top: 50px;}

.hero-virtual{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Main viewport and panels - This sets up the scrolling boxes*/

.viewport{position:relative;min-height:100vh;padding-top:1px;overflow-x:hidden;scroll-behavior:smooth}
.panel{min-height:30vh;display:flex;align-items:center;justify-content:center;padding:30px 30px}
.panel-inner{
  max-width:var(--maxw);
  width:100%;
  text-align:left;
  background:var(--card-bg);
  padding:1px;
  border-radius:12px;
  backdrop-filter:blur(6px);
  box-shadow:0 10px 30px rgba(15,23,42,1);
}
.panel h1,.panel h2{margin:0 0 12px;color:var(--text)}
.panel p{margin:0 0 16px;color:var(--muted);line-height:1.5}

/* Round photo windows */
.windows{display:flex;gap:18px;justify-content:center;flex-wrap:wrap;margin-top:5px}
.round-window{
  width:var(--win-size);
  height:var(--win-size);
  border-radius:25%; /*(this affects the shape of the window, from round to rectangle)*/
  overflow:hidden;
  border:6px solid var(--win-border);
  box-shadow:0 8px 30px rgba(2,6,23,0.04);
  background:linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0.9));
  display:flex;
  align-items:center;
  justify-content:center;
}
.round-window img{width:100%;height:100%;object-fit:cover;display:block;transform:scale(1.02);transition:transform .6s ease}
.round-window:hover img{transform:scale(1.08)}
.round-window.small{width:120px;height:120px;border-width:4px}

.main-nav{display:flex;align-items:center;gap:8px}
.main-nav a{color:var(--text);padding:8px 10px;border-radius:8px;font-weight:600;background:transparent}
.main-nav a:hover{background:rgba(255,255,255,0.04)}
.nav-toggle{display:none;background:transparent;color:var(--text);border:1px solid rgba(255,255,255,0.06);padding:8px 10px;border-radius:8px;cursor:pointer}

/* CTA */
.cta{display:inline-block;margin-top:12px;padding:10px 18px;background:var(--accent);color:#041014;border-radius:8px;text-decoration:none;font-weight:800;box-shadow:0 6px 18px rgba(217,162,74,0.12)}

/* Content page */
.content-page{padding:120px 18px}
.page-inner{max-width:900px;margin:0 auto;background:var(--card-bg);padding:36px;border-radius:12px;box-shadow:0 8px 24px rgba(15,23,42,0.04)}
.photo-grid{display:flex;gap:16px;margin-top:16px;justify-content:center}

/* Footer */
.site-footer{padding:28px;text-align:center;color:#fff(--muted);font-size:13px;border-top:1px solid rgba(15,23,42,0.03);background:transparent}

/* Small screens */
@media (max-width:880px){
  :root{--win-size:120px}
  .panel-inner{padding:24px}
  .logo{font-size:14px}
  .main-nav a{padding:6px 8px}
  .viewport{padding-top:76px}
}
