/* ===============================
   GENERAL & FONTS
   =============================== */
body {
    margin: 0;
    font-family: 'Ubuntu Sans', sans-serif;
    background-color: #F5F1EC;
    color: #333;
    line-height: 1.7;
}

/* ===============================
   NAVBAR (Consistent with your theme)
   =============================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #E0D9D1;
}

/* ADDED: Container for logo image and text for proper alignment */
.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ADDED: Style for the logo image */
.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.profile-icon img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* ===============================
   MAIN CONTENT CONTAINER
   =============================== */
.container {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 2rem;
}

/* ===============================
   ASCII DANCING ANIMATION
   =============================== */
#ascii-animation {
    white-space: pre;
    text-align: center;
    font-family: monospace; /* Use a standard monospace for best ASCII results */
    font-size: 24px;
    color: #888;
    height: 80px; /* Fixed height to prevent layout shift */
    margin-bottom: 2rem;
}

/* ===============================
   CONTENT STYLING
   =============================== */
.title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 2rem;
}

.content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #E0D9D1;
    padding-bottom: 0.5rem;
}

.content p, .content li {
    font-size: 1rem;
    color: #555;
}

.content ul {
    list-style-position: inside;
    padding-left: 0;
}

.content strong {
    color: #1a1a1a;
}

/* ===============================
   BACK BUTTON
   =============================== */
.back-button {
    display: block;
    width: fit-content;
    margin: 3rem auto 0;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 40px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background-color: #333;
}
