@charset "utf-8";
/* CSS Document */
/* ARTSVault Master Stylesheet */
:root {
    --accent-blue: #8fa9b7;
    --yellow: #e5c23c;
	--green: #9dbf94;
	--parchment: #ede7de;  /* NEW — soft beige */
    --bg: #ffffff;
    --tab-width: 3rem;
    --font-body: 'Segoe UI', 'Futura PT', 'Century Gothic', sans-serif;
    --font-fallback: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --text-color: #4A4A4A;
}

body {
    background: linear-gradient(
        to bottom,
        #ede7de 0%,
        var(--bg) 100%
    );
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
    color: var(--text-color);
    font-family: var(--font-body), var(--font-fallback);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* -------------------------------
   LOGO + HEADER
------------------------------- */

.logobar {
    padding: 0.75rem 2rem 0.25rem 3rem;
}

.header-line {
    height: 4px;
    background-color: var(--accent-blue);
    width: 94%;
    margin: 0 auto 1rem auto;
}

.logo-tagline {
    text-align: center;
    font-style: italic;
    font-weight: 300;
    font-size: 1.5rem;
    color: var(--accent-blue);
    letter-spacing: 0.10em;
    opacity: 0.85;
    margin: 0.2rem 0 1rem 0;
}

/* ----------------------------------------------------
   CANVAS WRAPPER: parchment + soft overlay
---------------------------------------------------- */

.canvas-wrapper {
    display: flex;            /* ← forces side-by-side layout */
    flex-direction: row;      /* ← left → main → right */
    align-items: stretch;     /* ← all columns same height */
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

/* ----------------------------------------------------
   LEFT + RIGHT TABS
---------------------------------------------------- */

.left-border,
.right-border {
    width: 60px;
    min-height: 120px;  /* keeps them nicely visible */
	margin-top: 2rem; /* adjust to taste */
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;    /* important for stacking */
    cursor: pointer;
	box-shadow: 0 0 12px rgba(0,0,0,0.25);
}

/* Left tab colors (yellow + green) */
.left-border {
    background-color: var(--yellowTab, #e4be33);
}

.left-border.image-tab {
    background-color: var(--greenTab, #9dbf8e);
}
/* Right tab colors (blue, etc.) */
.right-border {
    background-color: var(--blueTab, #9bb3c7);
}

/* Holds all left-side tabs (Home, Images, etc.) */
.left-tabs {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;   /* ensures full height column */
    z-index: 5;
}

/* Holds all right-side tabs (Contact, etc.) */
.right-tabs {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 5;
}

.border-label {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
	margin-top: 2rem; /* adjust to taste */
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.95rem;
    font-weight: 600;
    color: #222; 
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
    user-select: none;
    transition: background-color 0.25s ease,
                color 0.25s ease,
                box-shadow 0.25s ease;
}             	 	

/* Yellow (Home) tab */
.home-label {
	background-color: var(--yellow);
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	border-radius: 4px 0 0 4px;
}
.home-label:hover {
    background-color: #d4ab1f; /* richer gold */
    color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.25);
}

.home-label .border-label {
	color: #fefefe;
    text-shadow: 0 1px 3px rgba(0,0,0,0.30);
}

/* Blue (Contact) tab */
.contact-label {
	background-color: var(--accent-blue);
	width: 100%;
    height: 100%;
	margin-top: 2rem; /* adjust to taste */
    display: flex;
    align-items: center;
    justify-content: flex-end;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: .95rem;
    font-weight: bold;
    color: #222;
    user-select: none;
    border-radius: 4px 0 0 4px;
}

.contact-label:hover {
    background-color: #6b8fa5; /* deeper blue */
    color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.25);
}

/* Green (Images) tab */
.image-label {
    background-color: var(--green);
    width: 100%;
    height: 100%;
	margin-top: 2rem; /* adjust to taste */
    display: flex;
    align-items: center;
    justify-content: flex-end;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: .95rem;
    font-weight: bold;
    color: #222;
    user-select: none;
    border-radius: 4px 0 0 4px;
}

.image-label:hover {
    background-color: #7fae72; /* richer green */
    color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.25);
}

.left-border.image-tab {
    box-shadow: -4px 0 6px rgba(0, 0, 0, 0.18);
}

.right-border.image-tab {
    box-shadow: 4px 0 6px rgba(0, 0, 0, 0.18);
}

/* Main content container */
.main-content {
    flex-grow: 1;
    background-color: transparent;
    color: #333;
    font-weight: 400;
    position: relative;
    z-index: 2;   /* <-- ABOVE overlay */
    padding: 2rem;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    height: auto;
}

/* ----------------------------------------------------
   INDEX PAGE
---------------------------------------------------- */

.hero-block {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #2b5e78;
}

.hero-block h1 {
  font-size: 1.6em;
  font-weight: 600;
  margin-bottom: 0.4em;
}

.hero-block p {
  font-size: 1em;
  line-height: 1.4;
  max-width: 65ch;
  margin: 0 auto;
  color: black;
}

.hero-block p strong {
  display: block;
  font-size: 1.2em;
  margin-bottom: 0.3em;
  color: black;
}

.pitch-container {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  flex-wrap: wrap;
}

.pitch-box {
  background-color: transparent !important;
  border-radius: 12px;
  padding: 2em;
  margin: 1em;
  flex: 1;
  box-shadow: none;
}

.pitch-box h2 {
  font-size: 1.25rem;
  margin-top: 0;
  color: #2b5e78;
}

.pitch-box ul {
  list-style: none;
  padding-left: 1.2rem;
}

.pitch-box li::before {
  content: "✅ ";
  margin-left: -1.2rem;
  padding-right: 0.4rem;
  color: green;
}

.graph-placeholder {
  height: 180px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px dashed #aaa;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
  color: #666;
  margin-top: 1rem;
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 120px;
  gap: 6px;
  padding: 1em 0;
}

.bar {
  flex: 1;
  background: #3c82a0;
  position: relative;
  border-radius: 3px 3px 0 0;
  transition: height 0.3s;
}

.bar span {
  position: absolute;
  bottom: -1.5em;
  width: 100%;
  text-align: center;
  font-size: 0.7em;
  color: #333;
}

/* ----------------------------------------------------
   CONTACT PAGE
---------------------------------------------------- */

.pitch-columns {
	display: flex;
	gap: 2rem;
	justify-content: space-between;
	width: 100%;
}

.pitch-box {
	flex: 1;
	background-color: transparent;
	border-radius: 0px;
	padding: 2em;
	margin: 1em;
	felx: 1;
	box-shadow: none;
}

form input[type="text"],
form input[type="email"],
form textarea {
	width: 100%;
	padding: 0.5rem;
	font-size: 1rem;
	margin-top: 0.25rem;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}

form input[type="submit"] {
	background-color: #003366;
	color: white;
	padding: 0.6rem 1.2rem;
	border: none;
	border-radius: 4px;
	margin-top: 1rem;
	cursor: pointer;
}

/* ----------------------------------------------------
   MODULE PAGE LAYOUT
---------------------------------------------------- */

.module-row {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    margin: 3rem 0;
    padding: 0 2rem;
    position: relative;
    z-index: 10;   /* <-- ABOVE overlay */
}

.module-row.reverse {
    flex-direction: row-reverse;
}

.module-text {
    width: 55%;
    line-height: 1.6;
    position: relative;
    z-index: 10;
}

.module-text h2 {
    color: var(--accent-blue);
    margin-top: 0;
}

.module-text ul {
    margin-top: 0.5rem;
    padding-left: 1.2rem;
}

.module-image {
    width: 45%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.module-image img {
    width: 75%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    opacity: 0.85;
    display: block;
    position: relative;
    z-index: 10;
}

/* Make module paragraphs slightly larger */
.module-row p {
    font-size: 1.1rem;   /* about 17.6px */
    line-height: 1.7;
}

/* Make bullet list items match */
.module-row ul li {
    font-size: 1.1rem;
    line-height: 1.7;
}

.cta-row {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.cta-box {
    display: flex;
    flex-direction: column;
    align-items: center;     /* center horizontally */
    gap: 12px;               /* space between lines */
    margin-top: 20px;
}

.cta-lead {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* ==========================
   BUTTON STYLE
   ========================== */
.button {
    display: inline-block;
    background-color: #3C6E94; /* ARTS Vault blue */
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.15s ease;
}

.button:hover {
    background-color: #335a78; /* darker hover */
    transform: translateY(-2px);
}

.button:active {
    transform: translateY(0);
}

/* CTA Button */
.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--accent-blue);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

/* Hover glow */
.button:hover {
    background-color: #4f7d94; /* slightly richer */
    box-shadow: 0 0 12px rgba(0,0,0,0.25);
    transform: translateY(-2px);
}


