/* ---------- GLOBAL ---------- */
body {
    background-color: rgb(255, 255, 255);
    padding: 0;
    margin: auto;
    max-width: 100%;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    color: #faeee3;
}

/* Paragraphs */
p {
    font-size: 21px;
    padding: 10px 50px;
    text-align: justify;
    text-indent: 20px;
    line-height: 1.6;
}

p:first-letter {
    font-size: 125%;
    font-weight: bold;
    color: rgb(229, 240, 252);
}

/* HEADINGS */
h1, h2, h3, h4 {
    margin: 20px 0 10px 0;
}

h1 span, h2 span {
    color: rgb(238, 143, 0);
    font-weight: bold;
}

h3 span {
    color: rgb(238, 143, 0);
}

/* MENU BAR */
.menu_bar {
    background-color: rgb(0, 0, 0);
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

.logo {
    color: rgb(255, 255, 255);
    font-size: 32px;
    padding-left: 60px;
}

/* DIV / SECTION STYLING */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto; /* centers horizontally */
    padding: 0 10px; /* small horizontal padding */
    text-align: center;
}

/* Keep sections full-width if desired */
section {
    background: rgb(41, 41, 41);
    padding: 20px;
    margin: 20px auto;
    border-radius: 8px;
    overflow: hidden; /* contain floats */
    width: 100%; /* full width within wrapper */
}

div img, section img {
    border-radius: 10px;
}

/* FLOAT IMAGE TO RIGHT */
.float-right {
    float: right;
    width: 40%;
    max-height: 500px;
    object-fit: cover;
    margin: 0 0 15px 15px;
}

section::after {
    content: "";
    display: table;
    clear: both;
}

/* AI LIST SECTION */
ol {
    text-align: left;
    margin: 20px 40px;
    padding-left: 25px;
    font-size: 20px;
    line-height: 1.6;
}

ol li {
    margin-bottom: 15px;
}

ol li strong {
    color: rgb(238, 143, 0);
    font-weight: bold;
}

/* WEIGHT CHART TABLE */
#weight-charts {
    font-family: 'Courier New', Courier, monospace;
    border-collapse: collapse;
    width: 100%;
    margin-top: 30px;
}

#weight-charts td, #weight-charts th {
    border: 1px solid #e98707;
    padding: 4px;
}

#weight-charts tr:nth-child(even) {
    background-color: #383737;
}

#weight-charts tr:hover {
    background-color: black;
    color: #d6d5d5;
}

#weight-charts th {
    padding: 10px 4px;
    text-align: left;
    background-color: #0f0f0f;
    color: white;
}

caption {
    font-family: 'Times New Roman', Times, serif;
    padding: 15px 0;
    font-size: 1.2rem;
}

/* ARROWS */
.arrow {
    border: solid rgb(9, 255, 0);
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
}

.down { transform: rotate(45deg); -webkit-transform: rotate(45deg); }
.up { transform: rotate(-135deg); -webkit-transform: rotate(-135deg); }

/* FOOTER */
footer {
    padding: 10px;
    background: black;
    color: white;
}

/* ----------------- RESPONSIVE ----------------- */
@media only screen and (max-width: 960px) {
    section {
        width: 80%;
        padding: 15px;
    }
    p {
        padding: 10px 25px;
        font-size: 19px;
    }
    .float-right {
        float: none;
        width: 80%;
        max-height: 400px;
        margin: 10px auto;
        display: block;
    }
    ol {
        margin: 15px 25px;
        font-size: 18px;
    }
}

@media only screen and (max-width: 600px) {
    section {
        width: 90%;
        padding: 10px;
    }
    p {
        padding: 10px 15px;
        font-size: 18px;
    }
    ol {
        margin: 10px 15px;
        font-size: 17px;
    }
}
