/* --- IMPORT GOOGLE FONT --- */
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

/* --- GLOBAL STYLES & LAYOUT --- */
body {
    background-color: #262636;
    font-family: 'Barlow', sans-serif; /* Changed from Montserrat to Barlow */
    color: #ffffff;
    margin: 0;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- THE CENTERING COLUMN MECHANISM --- */
h1, h2, h3, h4, h5, h6, p, p1, p2, ul, ol, hr, .row, .page-row, .two-column-page, .container-wide {
    width: 100%;
    max-width: 800px;
    text-align: left;
    box-sizing: border-box;
}

/* Centers all standard markdown images horizontally */
img {
    display: block;
    margin: 30px auto;
    max-width: 100%;
    height: auto;
}

/* --- BACKGROUNDS & VIDEOS --- */
#oceanVideo, #oceanScreenshot {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}

hr.solid_line {
    border: none;
    border-top: 3px solid #fff;
    margin: 20px auto;
}

/* --- TYPOGRAPHY --- */
h1 {
    font-size: 40px;
    color: #ffffff;
    margin-top: 20px;
    font-weight: 700;
}

p1 {
    font-size: 18px;
    color: #ffffff;
    font-weight: 400;
}

p {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 400;
}

p2 {
    font-size: 20px;
    color: #ffffff;
    font-weight: 400;
}

li {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 5px;
    font-weight: 400;
}

a {
    font-size: 20px;
    color: #128ecc;
    text-decoration: none;
    font-weight: 600;
}

    a:hover {
        color: #00ffff;
    }

/* --- CLEANED EXTRA CLASSES --- */
.title {
    text-align: center;
    color: #ffffff;
}

.img-center {
    text-align: center;
}

.bg {
    height: 100%;
    background-color: #262636;
}

.black-background {
    background-color: black;
}

/* --- CUSTOM COLUMN LAYOUTS --- */
.two-column-page, .container-wide {
    background-color: #0A0A0A;
    padding: 20px;
}

.left-column {
    float: left;
    width: 25%;
    padding-right: 15px;
    background-color: #0A4A40;
    box-sizing: border-box;
}

.right-column {
    float: left;
    width: 75%;
    padding: 1%;
    background-color: #0A0A1A;
    box-sizing: border-box;
}

.column {
    float: left;
    width: 50.0%;
    box-sizing: border-box;
}

.column-screenshots {
    float: left;
    width: 33.33%;
    box-sizing: border-box;
}

.page-row:after, .row:after {
    content: "";
    display: table;
    clear: both;
}

/* --- RESPONSIVE MOBILE OVERRIDE --- */
@media screen and (max-width: 768px) {
    .column, .left-column, .right-column, .column-screenshots {
        width: 100% !important;
        float: none;
    }
}
