/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Feb 12 2026 | 14:12:04 */
/* Layout */
.fullscreen-layout {
  position: fixed;
  inset: 0;
  display: flex;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.fullscreen-layout a:hover {text-decoration:none!important;}

/* Left column: 30% */
.menu-column {
  width: 30%;
  padding: 0 0 0 150px;
  box-sizing: border-box;
	background:#D13330;
}

/* Right column: 70% */
.content-column {
  width: 70%;
  position: relative; /* So overlays are relative to this column */
  padding:0;
  box-sizing: border-box;
  overflow: hidden;
}

/* Base content in right column */
.base-content {
  width: 100%;
  height: 100%;
}

/* Menu styling */
.main-menu {
  display: flex;
  flex-direction: column;
  gap: 5px;
	height: 100vh;
    justify-content: center;
}
.main-menu span {
	font-family: "Besley", Sans-serif;
	padding:0;
	border:none;
	background:none;
	font-size: 25px;
	font-weight: 400;
}
.main-menu span:hover {
	background:none;
	color:#fff
}

.main-menu span svg {width:10px; fill:#E6E6E6;}
.main-menu span:hover svg {fill:#fff;}

.parent-link {
  background: none;
  border: 0;
  padding: 0.75rem 0.5rem;
  text-align: left;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all ease 300ms;
}

.parent-link:hover, .parent-link:focus {
  color: #fff;
	padding-left:30px;
	background:none;
}

.parent-link.active {
  color: #fff;
  padding-left:30px;
	background:none;
}

/* Child panels wrapper (covers the right column) */
.child-panels-wrapper {
  position: absolute;
  inset: 0;
  pointer-events: none; /* Allow clicks through unless a panel is visible */
}

.child-panel {
  position: absolute;
  inset: 0;
  background: green;
  padding: 2rem;
  box-sizing: border-box;
  display: none;            /* hidden by default */
  opacity: 0;
  pointer-events: auto;
  transform: translateX(0);        /* start slightly to the right */
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* When panel is active + visible, it’s in place */
.child-panel.active-visible {
  opacity: 1;
  transform: translateX(0) !important;
}

.child-panel.active {
  display: block;
}

/* Child links */
.child-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.child-panel li + li {
  margin-top: 0.5rem;
}

.child-panel a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 1rem;
}

.child-panel a:hover {
  text-decoration: underline;
}
.child-panel {
  position: absolute;
  inset: 0;
  background: green;
  padding: 2rem;
  box-sizing: border-box;
  display: none;
  opacity: 0;
  pointer-events: auto;
}

/* Close button in top-right of panel */
.child-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  cursor: pointer;
  font-size: 0.9rem;
}

.child-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width:1200px) {
	.menu-column {padding-left:80px;}
}
@media (max-width:1024px) {
	.menu-column {padding:20px 40px;}
}
@media (max-width:880px) {
	.menu-column {padding:20px;}
	.parent-link.active {padding-left:15px;}
	.main-menu span {font-size:20px;}
}
