/* === Home (Landing) Styles for QuoteFlow === */
body {
    background: #141418;
    color: #fff;
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* === Hero / Landing Section === */
.hero-section {
    width: 100vw;
    text-align: center;
    background: #101014;
    padding: 72px 16px 36px 16px;
    margin: 0;
}

.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0 0 18px 0;
    color: #fff;
    line-height: 1.13;
}

.hero-section p {
    color: #ececec;
    font-size: 1.16rem;
    line-height: 1.5;
    max-width: 760px;
    margin: 0 auto 16px auto;
}

.sub-cta {
    font-weight: 600;
    color: #e69500;
    background: #231b12;
    padding: 10px 22px;
    border-radius: 8px;
    margin: 18px auto 36px auto;
    display: inline-block;
    font-size: 1.04rem;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 16px #e6950035;
}

.page-footer {
    width: 100vw;
    text-align: center;
    font-size: 1.08rem;
    color: #222;
    background: #fff8e7;
    padding: 34px 10px 32px 10px;
    margin-top: 0;
    font-weight: 500;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 2px 24px #0001;
}

.page-footer .star {
    color: #e69500;
    font-size: 1.17em;
    vertical-align: -1px;
    margin-right: 3px;
}
.page-footer a {
    color: #e69500;
    text-decoration: underline;
    font-weight: 600;
}
.page-footer a:hover {
    color: #c28500;
}

@media (max-width: 650px) {
    .hero-section {
        padding: 38px 6px 16px 6px;
    }
    .hero-section h1 {
        font-size: 2.0rem;
        letter-spacing: 1px;
    }
    .sub-cta {
        font-size: 0.98rem;
        padding: 8px 13px;
    }
}

#chat-container {
    margin-top: 32px;      /* Add more if needed */
    padding-top: 5px;     /* Optional: more breathing room */
}

@media (max-width: 700px) {
    #chat-container {
        margin-top: 18px;
        padding-top: 14px;
    }
}

/* home.css — only load on the homepage or index page */

/* Give top padding so chat is never cut off by the header or browser bar */
#chat-container {
    padding-top: 80px;     /* Adjust this value as needed! */
    align-items: flex-start; /* Keeps the chat up, but below your header. */
}

/* If you want more space, increase the px. If less, decrease it. */

/* On smaller screens, reduce padding a bit for mobile usability */
@media (max-width: 700px) {
    #chat-container {
        padding-top: 38px;
    }
}


#chat-container {
    margin-top: 38px;     /* Adjust this value as needed, try 24-60px for fine-tuning */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;     /* This helps the chat stay in the viewport, but not be centered vertically */
}

/* Responsive for mobile */
@media (max-width: 700px) {
    #chat-container {
        margin-top: 14px;
        min-height: 54vh;
    }
}

#chat-container {
    margin-top: 0;
}