@charset "utf-8";
/* =============================
   BASE BACKGROUND (PARCHMENT)
============================= */

body {
    margin: 0;
    padding: 60px 20px;
    background: radial-gradient(circle at center, #fdfaf2 0%, #efe5d2 100%);
    font-family: 'Cormorant Garamond', serif;
    color: #2c241a;
}

/* =============================
   OUTER MANUSCRIPT CONTAINER
============================= */

.manuscript {
    display: flex;
    justify-content: center;
}

/* =============================
   GOLD FRAME
============================= */

.frame {
    max-width: 820px;
    padding: 70px 100px;
    background: #fffdf7;
    position: relative;
    border: 6px solid transparent;
    border-radius: 12px;

    /* Golden border effect */
    background-image:
        linear-gradient(#fffdf7, #fffdf7),
        linear-gradient(135deg, #caa84b, #f3e6b3, #b88a2a);

    background-origin: border-box;
    background-clip: padding-box, border-box;

    box-shadow:
        0 0 25px rgba(201, 170, 75, 0.25),
        inset 0 0 20px rgba(0,0,0,0.05);
}

/* =============================
   TITLE
============================= */

.book-title {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 10px;
    color: #8a6a1f;
}

/* Decorative Divider */

.divider {
    width: 140px;
    height: 2px;
    margin: 25px auto 50px;
    background: linear-gradient(to right, transparent, #caa84b, transparent);
}

/* =============================
   PASSAGE TEXT
============================= */

.passage p {
    font-size: 1.75rem;
    line-height: 1.9;
    text-align: justify;
    font-weight: 500;
}

/* =============================
   ILLUMINATED DROP CAP
============================= */

.passage p:first-of-type::first-letter  {
    float: left;
    font-family: 'Cinzel', serif;
    font-size: 4.8rem;
    line-height: 1;
    padding: 10px 12px;
    margin-right: 12px;
    margin-top: 5px;

    background: linear-gradient(135deg, #d9b65c, #f6e8b1);
    color: #6d4f12;
    border: 2px solid #caa84b;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(202,168,75,0.4);
}

/* =============================
   AUTHOR
============================= */

.author {
    margin-top: 60px;
    text-align: right;
    font-style: italic;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: #6a5a3b;
}


/* For off-set Poetry*/
.manuscript {
  font-family: Georgia, serif;
  
}
.manuscript .left {
  margin-left: 0;
}
.manuscript .right {
  margin-left: 8ch; /* ≈ 8 spaces */
}
.manuscript .right6 {
  margin-left: 6ch; /* ≈ 6 spaces */
}


/* =============================
   RESPONSIVE
============================= */

@media (max-width: 768px) {

    .frame {
        padding: 40px 25px;
    }

    .passage p {
        font-size: 1.35rem;
    }

    .book-title {
        font-size: 2rem;
    }

    .passage p:first-of-type::first-letter {
        font-size: 3.8rem;
    }
}
