.@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&display=swap');
html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f7f5f2;
    color: #282828;
    font-family: "Libre Baskerville", serif;
    font-size: 18px;
    line-height: 1.6;
    min-height: 100vh;
}

html::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 40px; 
    height: 100vh;
    background: linear-gradient(
        to bottom,
        #ff6ec7 0%,   
        #ff6ec7 10%,  
        #ffd300 33%,  
        #00aaff 66%,  
        #ff6ec7 100%  
    );
    z-index: -2; 
}
html::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 100vh;
    background: linear-gradient(
        to left,
        rgba(247, 245, 242, 1.00) 0%,
        rgba(247, 245, 242, 0.80) 25%,
        rgba(247, 245, 242, 0.60) 50%,
        rgba(247, 245, 242, 0.40) 75%,
        rgba(247, 245, 242, 0.00) 100%  
    );
    pointer-events: none;
    z-index: -1;
}
.vertical-bar {
    position: fixed;
    top: 0;
    left: 40px;
    width: 6px;
    height: 100vh;
    background: #282828;
    z-index: 5; 
}
.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px; 
}
.content-wrapper {
    width: 100%;
}
.banner-container {
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 30px auto;
}
h1, h2, h3 {
    font-family: "Libre Baskerville", serif;
    font-weight: bold;
    margin-top: 0;
    color: #282828;
}

p {
    margin-bottom: 1.2em;
}
.logo-divider {
    position: absolute;
    left: 0;   /* Anchors the start of the line flat against the left edge of its container */
    right: 0;  /* Forces the line to stretch all the way to the right edge of the screen */
    width: auto; /* Overrides the restrictive 100% block constraint */
    height: 6px; 
    background: #282828;
    margin-top: 20px;
z-index: 6;
}
.echo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 110px; 
    margin-bottom: 10px;
}
.echo-logo {
    position: relative;
    display: inline-block;
    width: 250px; 
}
.echo {
    position: absolute;
    font-family: 'Libre Baskerville', serif;
    font-weight: bold;
    font-size: 72px;
    letter-spacing: 1.5px;
    line-height: 1;
}
.echo.yellow { left: -4px; color: #ffd300; opacity: 0.35; }
.echo.pink   { left: 4px;  color: #ff6ec7; opacity: 0.35; }
.echo.blue   { top: 4px;   color: #00aaff; opacity: 0.35; }
.echo.main   { color: #282828; position: relative; z-index: 2; }

.echo-tagline {
    text-align: center;
    font-weight: bold;
    color: #282828;
    margin-top: 10px;
}
header, .footer-bar {
    width: 100%;
    height: 6px;
    background: #282828;
    position: fixed;
    left: 0;
    z-index: 10;
}
header { top: 0; }
.footer-bar { bottom: 0; }
.footer {
    text-align: center;
    font-size: 0.85rem;
    color: #282828;
    margin-top: 60px;
    padding: 20px 0;
}
.content-wrapper {
    width: 100%;
    box-sizing: border-box;
    padding-left: 20px; 
    padding-right: 40px;
    padding-top: 30px;
    text-align: left;    
}
.content-wrapper h3 {
    text-align: left;
    margin-bottom: 10px;
}
.content-wrapper p {
    text-align: left;
    margin-bottom: 1.2em;
}
